Commit e93e0e2f authored by Clara Engler's avatar Clara Engler
Browse files

Bump MSRV to 1.91

This commit bumps the MSRV to 1.91 which was released on 2025-10-30.

The Cargo.toml files were updated as follows:
```sh
git ls-files | \
    grep ".*Cargo\.toml$" | \
    xargs sed -i '' 's/^rust-version = "1\.89"$/rust-version = "1\.91"/g'
```

The following files were updated manually:
```
	modified:   .gitlab-ci.yml
	modified:   README.md
	modified:   flake.nix
	modified:   maint/docker-android/Dockerfile
```
parent fbf2a27d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -556,7 +556,7 @@ coverage:
minimal-versions:
  stage: test
  # Using "amd64/" single-arch variant to work around https://gitlab.torproject.org/tpo/tpa/team/-/issues/41621.
  image: docker.io/amd64/rust:1.89
  image: docker.io/amd64/rust:1.91
  needs: []
  script:
    - rustup install nightly
+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@ for more details.

## Minimum supported Rust Version

Our current Minimum Supported Rust Version (MSRV) is 1.89.
Our current Minimum Supported Rust Version (MSRV) is 1.91.

We may increase this MSRV as new Rust versions become available from the
upstream Rust project. We allow upgrades of our MSRV to Rust X.Y.Z if Rust X.Y.0
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
name = "arti-bench"
version = "0.17.0"
edition = "2024"
rust-version = "1.89"
rust-version = "1.91"
authors = ["The Tor Project, Inc.", "eta <eta@torproject.org>"]
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ name = "arti-client"
version = "0.43.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2024"
rust-version = "1.89"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Library for connecting to the Tor network as an anonymous client"
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ name = "arti-config"
version = "0.42.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2024"
rust-version = "1.89"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Removed crate.  (Tools for configuration management in Arti)"
Loading