From 93135d07b41e04ff1365b17d7c9fbb94b6ef0694 Mon Sep 17 00:00:00 2001 From: Sam Clark <3758302+goatgoose@users.noreply.github.com> Date: Fri, 6 Jan 2023 14:46:28 -0500 Subject: [PATCH] Bump rust bindings for 1.3.32 release (#3746) --- bindings/rust/s2n-tls-sys/Cargo.toml | 2 +- bindings/rust/s2n-tls-tokio/Cargo.toml | 4 ++-- bindings/rust/s2n-tls/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bindings/rust/s2n-tls-sys/Cargo.toml b/bindings/rust/s2n-tls-sys/Cargo.toml index b6c62c31642..933762287c1 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.22" +version = "0.0.23" authors = ["AWS s2n"] edition = "2021" links = "s2n-tls" diff --git a/bindings/rust/s2n-tls-tokio/Cargo.toml b/bindings/rust/s2n-tls-tokio/Cargo.toml index 27df31494b7..b7faa27bb04 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.22" +version = "0.0.23" authors = ["AWS s2n"] edition = "2021" repository = "https://github.com/aws/s2n-tls" @@ -14,7 +14,7 @@ default = [] errno = { version = "0.2" } libc = { version = "0.2" } pin-project-lite = { version = "0.2" } -s2n-tls = { version = "=0.0.22", path = "../s2n-tls" } +s2n-tls = { version = "=0.0.23", 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 e679bf4725f..0d1982283ba 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.22" +version = "0.0.23" authors = ["AWS s2n"] edition = "2021" repository = "https://github.com/aws/s2n-tls" @@ -17,7 +17,7 @@ testing = ["bytes"] bytes = { version = "1", optional = true } errno = { version = "0.2" } libc = "0.2" -s2n-tls-sys = { version = "=0.0.22", path = "../s2n-tls-sys", features = ["internal"] } +s2n-tls-sys = { version = "=0.0.23", path = "../s2n-tls-sys", features = ["internal"] } pin-project-lite = "0.2" [dev-dependencies]