Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ There are two rust bindings workspaces that have different MSRV policies. Crates

### Extended

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.
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.

### Standard

Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/extended/.clippy.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# This should match rust-toolchain
msrv = "1.63.0"
msrv = "1.72.0"
2 changes: 1 addition & 1 deletion bindings/rust/extended/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.63.0"
channel = "1.72.0"
2 changes: 1 addition & 1 deletion bindings/rust/extended/s2n-tls-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A C99 implementation of the TLS/SSL protocols"
version = "0.3.27"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.72.0"
links = "s2n-tls"
repository = "https://github.com/aws/s2n-tls"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/extended/s2n-tls-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn build_vendored() {
.flatten()
.filter(|file| {
let file = file.path();
file.extension().map_or(false, |ext| ext == "c")
file.extension().is_some_and(|ext| ext == "c")
})
.map(|file| {
file.path()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A C99 implementation of the TLS/SSL protocols"
version = "0.3.27"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.72.0"
links = "s2n-tls"
repository = "https://github.com/aws/s2n-tls"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/extended/s2n-tls-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "An implementation of TLS streams for Tokio built on top of s2n-tl
version = "0.3.27"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.72.0"
repository = "https://github.com/aws/s2n-tls"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/extended/s2n-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A C99 implementation of the TLS/SSL protocols"
version = "0.3.27"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.72.0"
repository = "https://github.com/aws/s2n-tls"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion codebuild/spec/buildspec_timing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
# This assumes you have a Rust toolchain installed
CARGO: "cargo +nightly"
OPENSSL_DIR: "/usr/local/openssl-3.0"
RUST_TOOLCHAIN: "1.63.0-x86_64-unknown-linux-gnu"
RUST_TOOLCHAIN: "1.72.0-x86_64-unknown-linux-gnu"
phases:
install:
commands:
Expand Down
Loading