Skip to content

Commit

Permalink
chore: bump rust bindings for 1.3.39 release (#3887)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmayclin authored Mar 16, 2023
1 parent d35e966 commit 63870f4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bindings/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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].

2 changes: 1 addition & 1 deletion bindings/rust/s2n-tls-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/s2n-tls-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/s2n-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand Down

0 comments on commit 63870f4

Please sign in to comment.