pacak
pacak
So I did a thing and tried to replace clap's build API with bpaf's one. Summary changes: - Changed to use `PathBuf` instead of going though `String`. You can check...
I'm running `cargo udeps` as this: ``` % cargo udeps --workspace --all-targets --backend save-analysis --show-unused-transitive ``` and getting a whole bunch of false positives, most of which are coming from...
I have a big workspace where one of the crate imports a number of crates that depend on `imgui-sys`, something like this ```toml implot = { version = "0.6.0", git...
`-Z unpretty=hir`
I did it 50+ times by hand already...
- https://docs.rs/syntect/latest/syntect/
`--print asm=/path/to/asm.s` now works. This should simplify artifact locator!
I think this info can be useful to display ``` .cv_inline_site_id 1213 within 1209 inlined_at 18 78 0 .cv_inline_site_id 1214 within 1213 inlined_at 54 325 0 .cv_inline_site_id 1215 within 1214...
Currently we are setting `codegen-units = 1` but it seems in some scenarios this changes the generated code: https://github.com/rust-lang/rust/issues/116359 This should also help with some cases of LTO - https://github.com/pacak/cargo-show-asm/issues/186...
output `objdump -d` produces seems to be easy to parse and it should contain the ultimate answer about what ends up being in the created binary. There's `rust-objdump` which offers...