We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e92a443 commit 4a9066aCopy full SHA for 4a9066a
ARCHITECTURE.md
@@ -106,7 +106,10 @@ assert_that(
106
Alternatively to build and run a custom version of cargo simply run `cargo build`
107
and execute `target/debug/cargo`. Note that `+nightly`/`+stable` (and variants),
108
being [rustup](https://rustup.rs/) features, won't work when executing the locally
109
-built cargo binary directly.
+built cargo binary directly, you have to instead build with `cargo +nightly build`
110
+and run with `rustup run` (e.g `rustup run nightly
111
+<path-to-cargo>/target/debug/cargo <args>..`) (or set the `RUSTC` env var to point
112
+to nightly rustc).
113
114
Because the test suite has `#![deny(warnings)]` at times you might find it
115
convenient to override this with `RUSTFLAGS`, for example
0 commit comments