diff options
author | Alexander Fougner <fougner89@gmail.com> | 2023-07-21 11:41:54 +0200 |
---|---|---|
committer | Alexander Fougner <fougner89@gmail.com> | 2023-08-04 20:13:38 +0200 |
commit | caeeba5152cb0727b5a86222e615f6b777100a37 (patch) | |
tree | 963e2819f3d9ff15c0c12314b5e8035ed4add60a /rust-src | |
parent | a3087defd8e17ca2f33a3e87990a3e359429eb5f (diff) |
ci: set and verify MSRV
To prevent uncontrolled usage of new rust features, directly or from
dependencies, set a minimum supported Rust version and verify it builds.
Signed-off-by: Alexander Fougner <fougner89@gmail.com>
Diffstat (limited to 'rust-src')
-rw-r--r-- | rust-src/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust-src/Cargo.toml b/rust-src/Cargo.toml index 92a3853f..444f0cf9 100644 --- a/rust-src/Cargo.toml +++ b/rust-src/Cargo.toml @@ -3,6 +3,7 @@ name = "bcachefs-rust" version = "0.3.1" authors = ["Yuxuan Shui <yshuiv7@gmail.com>", "Kayla Firestack <dev@kaylafire.me>"] edition = "2018" +rust-version = "1.65" [lib] crate-type = ["staticlib"] |