https://github.com/cdown/cargo-which-nightly
Find the latest Rust nightly with combinations of features present.
https://github.com/cdown/cargo-which-nightly
cargo-plugin cargo-subcommand command-line command-line-tool rust rust-lang rustup
Last synced: about 2 months ago
JSON representation
Find the latest Rust nightly with combinations of features present.
- Host: GitHub
- URL: https://github.com/cdown/cargo-which-nightly
- Owner: cdown
- License: mit
- Created: 2023-05-04T13:31:04.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-21T00:14:27.000Z (2 months ago)
- Last Synced: 2025-03-12T12:06:24.328Z (about 2 months ago)
- Topics: cargo-plugin, cargo-subcommand, command-line, command-line-tool, rust, rust-lang, rustup
- Language: Rust
- Homepage:
- Size: 80.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cargo which-nightly | [](https://github.com/cdown/cargo-which-nightly/actions?query=branch%3Amaster)
`cargo which-nightly` tells you which nightly contains a particular set of
features.## Usage
% cargo which-nightly miri clippy
2023-05-04You 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