# HG changeset patch # User Raphaël Gomès # Date 2024-07-23 12:25:23 # Node ID 541292a02e09f37fb2963a7ad42ffb6a012e4528 # Parent 3876d4c6c79ec5c71e8c51b876cc157e93a5eaac rust: change minimum supported version everywhere applicable This will help users and downstream packaging. diff --git a/contrib/nix/flake.nix b/contrib/nix/flake.nix --- a/contrib/nix/flake.nix +++ b/contrib/nix/flake.nix @@ -53,7 +53,7 @@ # but uses formatter features from nightly. # TODO: make cargo use the formatter from nightly automatically # (not supported by rustup/cargo yet? workaround?) - # rustPlatform = pkgs.rust-bin.stable."1.61.0".default; + # rustPlatform = pkgs.rust-bin.stable."1.79.0".default; # rustPlatformFormatter = pkgs.rust-bin.nightly."2023-04-20".default; # The CI uses an old version of the Black code formatter, diff --git a/rust/README.rst b/rust/README.rst --- a/rust/README.rst +++ b/rust/README.rst @@ -83,7 +83,7 @@ Minimum Supported Rust Version ------------------------------ The minimum supported rust version (MSRV) is specified in the `Clippy`_ -configuration file at ``rust/clippy.toml``. It is set to be ``1.61.0`` as of +configuration file at ``rust/clippy.toml``. It is set to be ``1.79.0`` as of this writing, but keep in mind that the authoritative value is the one from the configuration file. diff --git a/rust/clippy.toml b/rust/clippy.toml --- a/rust/clippy.toml +++ b/rust/clippy.toml @@ -1,1 +1,1 @@ -msrv = "1.61.0" +msrv = "1.79.0"