Skip to content

Commit eeea4dc

Browse files
authored
chore: additional msrv updates (#2112)
1 parent 5f9f09c commit eeea4dc

File tree

20 files changed

+24
-23
lines changed

20 files changed

+24
-23
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
111111

112112
`s2n-quic` will maintain a rolling MSRV (minimum supported rust version) policy of at least 6 months. The current s2n-quic version is not guaranteed to build on Rust versions earlier than the MSRV.
113113

114-
The current MSRV is [1.63.0][msrv-url].
114+
The current MSRV is [1.71.0][msrv-url].
115115

116116
## Security issue notifications
117117

@@ -134,5 +134,5 @@ This project is licensed under the [Apache-2.0 License][license-url].
134134
[docs-url]: https://docs.rs/s2n-quic
135135
[dependencies-badge]: https://img.shields.io/librariesio/release/cargo/s2n-quic.svg
136136
[dependencies-url]: https://crates.io/crates/s2n-quic/dependencies
137-
[msrv-badge]: https://img.shields.io/badge/MSRV-1.63.0-green
138-
[msrv-url]: https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html
137+
[msrv-badge]: https://img.shields.io/badge/MSRV-1.71.0-green
138+
[msrv-url]: https://blog.rust-lang.org/2023/07/13/Rust-1.71.0.html

common/s2n-codec/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

examples/rustls-mtls/rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.67.0"
2+
channel = "1.71.1"
33
components = [ "rustc", "clippy", "rustfmt" ]

examples/s2n-mtls/rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.67.0"
2+
channel = "1.71.1"
33
components = [ "rustc", "clippy", "rustfmt" ]
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.66.0"
3-
components = ["rustc", "clippy", "rustfmt"]
2+
channel = "1.71.1"
3+
components = [ "rustc", "clippy", "rustfmt" ]

quic/s2n-quic-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

quic/s2n-quic-crypto/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

quic/s2n-quic-events/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "s2n-quic-events"
44
version = "0.1.0"
55
authors = ["AWS s2n"]
66
edition = "2021"
7-
rust-version = "1.63"
7+
rust-version = "1.71"
88
license = "Apache-2.0"
99
# This is a commit-time crate and should not be published
1010
publish = false

quic/s2n-quic-h3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "s2n-quic-h3"
44
version = "0.1.0"
55
authors = ["AWS s2n"]
66
edition = "2021"
7-
rust-version = "1.63"
7+
rust-version = "1.71"
88
license = "Apache-2.0"
99
# this contains an http3 implementation for testing purposes and should not be published
1010
publish = false

quic/s2n-quic-platform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

quic/s2n-quic-qns/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "s2n-quic-qns"
44
version = "0.1.0"
55
authors = ["AWS s2n"]
66
edition = "2021"
7-
rust-version = "1.63"
7+
rust-version = "1.71"
88
license = "Apache-2.0"
99
publish = false
1010

quic/s2n-quic-rustls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

quic/s2n-quic-sim/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "A simulation environment for s2n-quic"
66
repository = "https://github.com/aws/s2n-quic"
77
authors = ["AWS s2n"]
88
edition = "2021"
9-
rust-version = "1.63"
9+
rust-version = "1.71"
1010
license = "Apache-2.0"
1111
publish = false
1212

quic/s2n-quic-tls-default/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

quic/s2n-quic-tls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

quic/s2n-quic-transport/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

quic/s2n-quic/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A Rust implementation of the IETF QUIC protocol"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

tools/udp-attack/rust-toolchain

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[toolchain]
2-
channel = "1.70.0"
2+
channel = "1.71.1"
3+
components = [ "rustc", "clippy", "rustfmt" ]

tools/xdp/rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.70.0"
2+
channel = "1.71.1"
33
components = [ "rustc", "clippy", "rustfmt" ]

tools/xdp/s2n-quic-xdp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
77
edition = "2021"
8-
rust-version = "1.63"
8+
rust-version = "1.71"
99
license = "Apache-2.0"
1010
# Exclude corpus files when publishing to crates.io
1111
exclude = ["corpus.tar.gz"]

0 commit comments

Comments
 (0)