From 80769b7197ad94b8679cf3cc36efbd20a1b892c1 Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Thu, 24 Mar 2022 15:08:34 -0400 Subject: [PATCH] Set the minimum Rust version to 1.59 (#4940) nushell uses the strip option in two of its profiles in Cargo.toml. This option is new in Rust 1.59[0], so this commit adjusts Cargo.toml to mark 1.59 as the minimum supported Rust version[1]. [0] https://blog.rust-lang.org/2022/02/24/Rust-1.59.0.html [1] https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field Signed-off-by: Randy Barlow --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index b4327358e..ed32f4a10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ license = "MIT" name = "nu" readme = "README.md" repository = "https://github.com/nushell/nushell" +rust-version = "1.59" version = "0.60.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html