Add Toolchain file to enforce minimum rustc version

closes #61
This commit is contained in:
Francisco Gindre 2024-12-12 17:51:23 -03:00 committed by Jack Grigg
parent 3d5317746e
commit 332139ab5c
2 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@
name = "zec-sqlite-cli"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
rust-version = "1.81"
license = "MIT OR Apache-2.0"
publish = false

3
rust-toolchain.toml Normal file
View File

@ -0,0 +1,3 @@
[toolchain]
channel = "stable"
components = [ "clippy", "rustfmt" ]