# HG changeset patch # User Raphaël Gomès # Date 1721737523 -7200 # Node ID 541292a02e09f37fb2963a7ad42ffb6a012e4528 # Parent 3876d4c6c79ec5c71e8c51b876cc157e93a5eaac rust: change minimum supported version everywhere applicable This will help users and downstream packaging. diff -r 3876d4c6c79e -r 541292a02e09 contrib/nix/flake.nix --- a/contrib/nix/flake.nix Thu Jul 18 12:38:26 2024 +0200 +++ b/contrib/nix/flake.nix Tue Jul 23 14:25:23 2024 +0200 @@ -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 -r 3876d4c6c79e -r 541292a02e09 rust/README.rst --- a/rust/README.rst Thu Jul 18 12:38:26 2024 +0200 +++ b/rust/README.rst Tue Jul 23 14:25:23 2024 +0200 @@ -83,7 +83,7 @@ ------------------------------ 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 -r 3876d4c6c79e -r 541292a02e09 rust/clippy.toml --- a/rust/clippy.toml Thu Jul 18 12:38:26 2024 +0200 +++ b/rust/clippy.toml Tue Jul 23 14:25:23 2024 +0200 @@ -1,1 +1,1 @@ -msrv = "1.61.0" +msrv = "1.79.0"