From 63870f40c00026c23c99dc9f9fe0375b6f63943f Mon Sep 17 00:00:00 2001 From: James Mayclin Date: Wed, 15 Mar 2023 18:39:04 -0700 Subject: [PATCH] chore: bump rust bindings for 1.3.39 release (#3887) --- bindings/rust/README.md | 2 +- bindings/rust/s2n-tls-sys/Cargo.toml | 2 +- bindings/rust/s2n-tls-tokio/Cargo.toml | 4 ++-- bindings/rust/s2n-tls/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bindings/rust/README.md b/bindings/rust/README.md index dadc1c12c72..f85fd22ad70 100644 --- a/bindings/rust/README.md +++ b/bindings/rust/README.md @@ -24,5 +24,5 @@ $ ./bindings/rust/generate.sh `s2n-tls` 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. -The current MSRV is [1.57.0][msrv-url]. +The current MSRV is [1.63.0][msrv-url]. diff --git a/bindings/rust/s2n-tls-sys/Cargo.toml b/bindings/rust/s2n-tls-sys/Cargo.toml index f7ae829171f..d6fb2d31824 100644 --- a/bindings/rust/s2n-tls-sys/Cargo.toml +++ b/bindings/rust/s2n-tls-sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "s2n-tls-sys" description = "A C99 implementation of the TLS/SSL protocols" -version = "0.0.26" +version = "0.0.27" authors = ["AWS s2n"] edition = "2021" rust-version = "1.63.0" diff --git a/bindings/rust/s2n-tls-tokio/Cargo.toml b/bindings/rust/s2n-tls-tokio/Cargo.toml index 80a82191260..8f523daf260 100644 --- a/bindings/rust/s2n-tls-tokio/Cargo.toml +++ b/bindings/rust/s2n-tls-tokio/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "s2n-tls-tokio" description = "An implementation of TLS streams for Tokio built on top of s2n-tls" -version = "0.0.26" +version = "0.0.27" authors = ["AWS s2n"] edition = "2021" rust-version = "1.63.0" @@ -15,7 +15,7 @@ default = [] errno = { version = "0.3" } libc = { version = "0.2" } pin-project-lite = { version = "0.2" } -s2n-tls = { version = "=0.0.26", path = "../s2n-tls" } +s2n-tls = { version = "=0.0.27", path = "../s2n-tls" } tokio = { version = "1", features = ["net", "time"] } [dev-dependencies] diff --git a/bindings/rust/s2n-tls/Cargo.toml b/bindings/rust/s2n-tls/Cargo.toml index 8e6dd8ed264..f63f0c3237b 100644 --- a/bindings/rust/s2n-tls/Cargo.toml +++ b/bindings/rust/s2n-tls/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "s2n-tls" description = "A C99 implementation of the TLS/SSL protocols" -version = "0.0.26" +version = "0.0.27" authors = ["AWS s2n"] edition = "2021" rust-version = "1.63.0" @@ -18,7 +18,7 @@ testing = ["bytes"] bytes = { version = "1", optional = true } errno = { version = "0.3" } libc = "0.2" -s2n-tls-sys = { version = "=0.0.26", path = "../s2n-tls-sys", features = ["internal"] } +s2n-tls-sys = { version = "=0.0.27", path = "../s2n-tls-sys", features = ["internal"] } pin-project-lite = "0.2" [dev-dependencies]