Skip to content

Commit ae9aba3

Browse files
authored
bindings(rust): bump extended crates MSRV to 1.72.0 (#5534)
1 parent 12aa96b commit ae9aba3

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

bindings/rust/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ There are two rust bindings workspaces that have different MSRV policies. Crates
2929

3030
### Extended
3131

32-
Crates in the `extended` workspace currently support an "extended" MSRV of [1.63.0](https://releases.rs/docs/1.63.0/). This is a temporary state. Customers must not rely on `s2n-tls` crates maintaining this level of stability. We expect to revert back to the mentioned standard policy shortly.
32+
Crates in the `extended` workspace currently support an "extended" MSRV of [1.72.0](https://releases.rs/docs/1.72.0/). This is a temporary state. Customers must not rely on `s2n-tls` crates maintaining this level of stability. We expect to revert back to the mentioned standard policy shortly.
3333

3434
### Standard
3535

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# This should match rust-toolchain
2-
msrv = "1.63.0"
2+
msrv = "1.72.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.63.0"
2+
channel = "1.72.0"

bindings/rust/extended/s2n-tls-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A C99 implementation of the TLS/SSL protocols"
44
version = "0.3.27"
55
authors = ["AWS s2n"]
66
edition = "2021"
7-
rust-version = "1.63.0"
7+
rust-version = "1.72.0"
88
links = "s2n-tls"
99
repository = "https://github.com/aws/s2n-tls"
1010
license = "Apache-2.0"

bindings/rust/extended/s2n-tls-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ fn build_vendored() {
116116
.flatten()
117117
.filter(|file| {
118118
let file = file.path();
119-
file.extension().map_or(false, |ext| ext == "c")
119+
file.extension().is_some_and(|ext| ext == "c")
120120
})
121121
.map(|file| {
122122
file.path()

bindings/rust/extended/s2n-tls-sys/templates/Cargo.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A C99 implementation of the TLS/SSL protocols"
44
version = "0.3.27"
55
authors = ["AWS s2n"]
66
edition = "2021"
7-
rust-version = "1.63.0"
7+
rust-version = "1.72.0"
88
links = "s2n-tls"
99
repository = "https://github.com/aws/s2n-tls"
1010
license = "Apache-2.0"

bindings/rust/extended/s2n-tls-tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "An implementation of TLS streams for Tokio built on top of s2n-tl
44
version = "0.3.27"
55
authors = ["AWS s2n"]
66
edition = "2021"
7-
rust-version = "1.63.0"
7+
rust-version = "1.72.0"
88
repository = "https://github.com/aws/s2n-tls"
99
license = "Apache-2.0"
1010

bindings/rust/extended/s2n-tls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A C99 implementation of the TLS/SSL protocols"
44
version = "0.3.27"
55
authors = ["AWS s2n"]
66
edition = "2021"
7-
rust-version = "1.63.0"
7+
rust-version = "1.72.0"
88
repository = "https://github.com/aws/s2n-tls"
99
license = "Apache-2.0"
1010

codebuild/spec/buildspec_timing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
# This assumes you have a Rust toolchain installed
99
CARGO: "cargo +nightly"
1010
OPENSSL_DIR: "/usr/local/openssl-3.0"
11-
RUST_TOOLCHAIN: "1.63.0-x86_64-unknown-linux-gnu"
11+
RUST_TOOLCHAIN: "1.72.0-x86_64-unknown-linux-gnu"
1212
phases:
1313
install:
1414
commands:

0 commit comments

Comments
 (0)