pacak
pacak
Things syn returns include `Span` somewhere in their structure, `Span` can be used to identify lines: https://docs.rs/proc-macro2/1.0.36/proc_macro2/struct.Span.html For this specific call you should be able to attach anyhow's context around...
There is now. https://crates.io/crates/cargo-show-asm / https://github.com/pacak/cargo-show-asm but it's not a fork but a reimplementation
Same problem with other dependencies. I think safe approach here would be to complain about the dependency it can't satisfy and stick to using the current one and report remaining...
Derp. `some` needs a parameter - string to produce in case of rejection. Currently parser silently drops things it can't parse. Derp.
`ConsumerAttr` fails to parse `positional` by itself as expected but for some reason this ignores the parse error and produces nothing instead. I wonder how exactly I'm misusing syn... ```rust...
The problem is not with the analysis but with applying the results to `Cargo.toml` files. You can try using `cargo hackerman hack --dry` - it will do the analysis in...
Must be a new addition. Shame on me for making a ticket without checking first. Will do and provide more details once I have them. On Wed, Jan 22, 2020,...
ghc-event-analyze: apply-refact - somewhere at the beginning, typechecks and typecheckUri seems to correspond to me adding and removing a typo. With longer typechecks probably corresponding me removing the type error....
Not much interesting in produced eventlog file. Project I'm working on is not really cabal friendly so I can't do memory profiling thing. Memory usage seems sane though.
FWIW this is more or less what `toggle_flag` in `bpaf` is: https://docs.rs/bpaf/0.5.6/bpaf/batteries/fn.toggle_flag.html If all you care is autonegate for booleans you'd do something like this ```rust fn autonegate(enabled: &'static str,...