Vitalii Kryvenko
Vitalii Kryvenko
> How would you recommend that we handle crates.io? Should we publish a dev/nightly version on there as well, or ask users to use git with something like a nightly...
Is there an option to unsubscribe from a specific release? I don't see it
I wonder why there is a `cargo fix` subcommand, but clippy uses a `cargo clippy --fix` argument. @xFrednet do you know anything about this?
That JSON benchmark from David could use a really small amount of elements in the maps, I didn't look into that very closely. I just prefer BTree when it's not...
I see there is a check for the version here, I didn't notice it https://github.com/rust-marker/marker/blob/6a5f2112d88c7ff16bdad26e914173272ca56660/marker_adapter/src/loader.rs#L150-L155 It is good but is too restrictive. We may allow version drifts. For example, if...
> Why is it too restrictive? If we do a patch hotfix then it will break the lint crates if the users don't update their Cargo.toml but they update cargo-marker....
Thanks for the reply 👍 I subscribed to releases in this repo, so if you plan to publish `0.1`, I'll see it in my notifications. Regarding the static linking approach...
> @Veetaha would this work for your use case? Yes, it would work for me. Thank you for clarifying the bundling approach. Now it makes sense to me. The behavior...
> So we always have to install two versions of Rust in CI, just to check formatting and then compile with stable? I totally agree on this one. It's really...
For anyone else who lands here: **YOU CAN USE UNSTABLE FEATURES ON STABLE TOOLCHAN**, but you have to specify them via the CLI parameters like this: ```bash cargo fmt --...