Crates.io | cargo-which-nightly |
lib.rs | cargo-which-nightly |
version | 0.2.2 |
source | src |
created_at | 2023-05-04 14:08:48.66439 |
updated_at | 2023-05-04 19:05:45.758635 |
description | Find the latest Rust nightly with combinations of features present. |
homepage | |
repository | https://github.com/cdown/cargo-which-nightly |
max_upload_size | |
id | 856753 |
size | 26,958 |
cargo which-nightly
tells you which nightly contains a particular set of
features.
% cargo which-nightly miri clippy
2023-05-04
You can set this nightly as the default with:
% cargo which-nightly --set-default miri clippy
Or, if you'd prefer to do it yourself:
% rustup default nightly-"$(cargo which-nightly miri rls clippy)"
The current compiled platform is assumed as the target. If you want to check
another, pass --target
:
% cargo which-nightly --target aarch64-unknown-linux-gnu miri clippy