diff --git a/bindings/rust/s2n-tls-sys/Cargo.toml b/bindings/rust/s2n-tls-sys/Cargo.toml index 525589d3264..b6c62c31642 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.21" +version = "0.0.22" 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 02dbebf3551..564e383ae73 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.21" +version = "0.0.22" authors = ["AWS s2n"] edition = "2021" repository = "https://github.com/aws/s2n-tls" @@ -13,7 +13,7 @@ default = [] [dependencies] errno = { version = "0.2" } libc = { version = "0.2" } -s2n-tls = { version = "=0.0.21", path = "../s2n-tls" } +s2n-tls = { version = "=0.0.22", 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 a5ff33d40f1..e679bf4725f 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.21" +version = "0.0.22" 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.21", path = "../s2n-tls-sys", features = ["internal"] } +s2n-tls-sys = { version = "=0.0.22", path = "../s2n-tls-sys", features = ["internal"] } pin-project-lite = "0.2" [dev-dependencies]