From ce8ba6a8c4658b6ed9ab189e1a9e9e2643315af7 Mon Sep 17 00:00:00 2001 From: funman300 Date: Wed, 29 Apr 2026 00:47:17 +0000 Subject: [PATCH] chore(workspace): pin rust-toolchain to stable, set MSRV 1.95 Add rust-toolchain.toml so all developers and CI use the same Rust channel (latest stable = 1.95.0 as of 2026-04-14). Set rust-version = "1.95" in workspace Cargo.toml to declare the minimum supported Rust version explicitly. Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 1 + rust-toolchain.toml | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/Cargo.toml b/Cargo.toml index d96d623..2ce97fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ resolver = "2" edition = "2024" version = "0.1.0" license = "MIT" +rust-version = "1.95" [workspace.dependencies] serde = { version = "1", features = ["derive"] } diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..292fe49 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "stable"