You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cargo verify-project returns a positive response if a crate is using unstable features on the stable toolchain, even if every other cargo command returns an error.
$ cargo read-manifest
error: failed to parse manifest at `/.../Cargo.toml`
Caused by:
the cargo feature `test-dummy-unstable` requires a nightly version of Cargo, but this is the `stable` channel
$ cargo verify-project
{"success":"true"}
Sample Cargo.toml
cargo-features = ["test-dummy-unstable"]
[package]
name = "foo"
version = "0.1.0"
authors = ["Pietro Albini <pietro@pietroalbini.org>"]
[dependencies]
The text was updated successfully, but these errors were encountered:
cargo verify-project
returns a positive response if a crate is using unstable features on the stable toolchain, even if every other cargo command returns an error.Sample Cargo.toml
The text was updated successfully, but these errors were encountered: