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 <noreply@anthropic.com>
This commit is contained in:
funman300
2026-04-29 00:47:17 +00:00
parent 66695683eb
commit ce8ba6a8c4
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -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"] }
+2
View File
@@ -0,0 +1,2 @@
[toolchain]
channel = "stable"