From 7d9faef95f1dba91258fd7bbecad0b6f5b6973dd Mon Sep 17 00:00:00 2001 From: Ilya Grigoriev Date: Sun, 9 Apr 2023 22:28:51 -0700 Subject: [PATCH] contributing.md: Fix up the MSRV, explain it a bit more --- docs/contributing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributing.md b/docs/contributing.md index 54c88f93e..697cacf59 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -80,7 +80,7 @@ recommended steps. One-time setup: rustup toolchain add nightly # If this is not your default - rustup toolchain add 1.61 + rustup toolchain add 1.64 # See note about MSRV & `rust-version` below cargo install cargo-insta cargo install cargo-watch cargo install cargo-nextest @@ -89,7 +89,7 @@ During development (adapt according to your preference): cargo watch --ignore '.jj/**' -s \ 'cargo clippy --workspace --all-targets \ - && cargo +1.61 check --workspace --all-targets' + && cargo +1.64 check --workspace --all-targets' cargo +nightly fmt # Occasionally cargo nextest run --workspace # Occasionally cargo insta test --workspace # Occasionally @@ -116,7 +116,7 @@ These are listed roughly in order of decreasing importance. toolchain and use `cargo +nightly fmt`. 3. Your code will be rejected if it cannot be compiled with the minimal - supported version of Rust. This version is listed as + supported version of Rust ("MSRV"). This version is listed as `rust-version` in [`Cargo.toml`](../Cargo.toml); it is 1.64 as of this writing.