Commit 93e4ab54 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Merge branch 'msrv_1_56' into 'main'

Increase our MSRV to 1.56.

See merge request tpo/core/arti!472
parents ed1f5abe c1ea4194
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ coverage:

minimal-versions:
  stage: test
  image: rust:1.53
  image: rust:1.56
  script:
    - rustup install nightly
    - ./maint/downgrade_dependencies
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ look at [the troubleshooting guide](doc/TROUBLESHOOTING.md).

## Minimum supported Rust Version

Our current Minimum Supported Rust Version (MSRV) is 1.53.
Our current Minimum Supported Rust Version (MSRV) is 1.56.

When increasing this MSRV, we won't require any Rust version released in the
last six months. (That is, we'll only require Rust versions released at least
+8 −7
Original line number Diff line number Diff line
[package]
name = "arti-bench"
version = "0.2.0"
edition = "2018"
edition = "2021"
rust-version = "1.56"
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"
+0 −1
Original line number Diff line number Diff line
@@ -44,7 +44,6 @@ use rand::distributions::Standard;
use rand::Rng;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::convert::TryInto;
use std::fmt;
use std::fmt::Formatter;
use std::future::Future;
+13 −12
Original line number Diff line number Diff line
@@ -2,7 +2,8 @@
name = "arti-client"
version = "0.2.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
edition = "2021"
rust-version = "1.56"
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"
Loading