pacak
pacak
-4:x and -i here are both positional? If so - yes, "any" by itself can handle them. On Sun, Nov 27, 2022, 23:01 Luke Hsiao ***@***.***> wrote: > Thanks @pacak...
To parse `cargo run -- -4:-2 -i ${test_dir}/lorem.txt` with `-i` being argument and `-4:-2` - positional I'd do something like this: ```rust let shape = any::("SHAPE").parse(xxxx); let file = short('i').argument::("FILE");...
https://github.com/theryangeary/choose/pull/57
> It could be nice to see if we got new problems once https://github.com/rome/tools/pull/4405 merged. I'm curious as well. I've confirmed that basic examples `x86_64-unknown-linux-musl` works as expected, maybe `gcompat`...
I'm on Ubuntu so it won't work :) Any ready made docker script that I can hack or anything like that?
Well, FWIW `cargo-show-asm` I downloaded with `cargo-binstall` works in docker with alpine linux and `gcompat` installed but I imagine it was compiled for musl specific target. `cargo-show-asm` should be using...
Did you mean to close this whole issue? #290 added a derive module, but I don't see a new release yet.
> Why have you enabled the save-analysis backend? To get `--show-unused-transitive` working - according to `--help` it depends on `save-analysis`. > Does the non-save-analysis backend have false positives? No, but...
Is there a plan to implement transitive dependencies report without it?
Hmm... I'm trying to keep it clean from clippy complains and formatting. Any ideas why CI isn't catching them? As far as fixing them - `_documentation.rs` is generated and I'm...