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/extended/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.3.14"
version = "0.3.15"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
Expand Down
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.3.14"
version = "0.3.15"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/extended/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.3.14"
version = "0.3.15"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
Expand All @@ -16,7 +16,7 @@ errno = { version = "0.3" }
# A minimum libc version of 0.2.121 is required by aws-lc-sys 0.14.0.
libc = { version = "0.2.121" }
pin-project-lite = { version = "0.2" }
s2n-tls = { version = "=0.3.14", path = "../s2n-tls" }
s2n-tls = { version = "=0.3.15", path = "../s2n-tls" }
tokio = { version = "1", features = ["net", "time"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/extended/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.3.14"
version = "0.3.15"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
Expand All @@ -22,7 +22,7 @@ unstable-testing = []
errno = { version = "0.3" }
# A minimum libc version of 0.2.121 is required by aws-lc-sys 0.14.0.
libc = "0.2.121"
s2n-tls-sys = { version = "=0.3.14", path = "../s2n-tls-sys", features = ["internal"] }
s2n-tls-sys = { version = "=0.3.15", path = "../s2n-tls-sys", features = ["internal"] }
pin-project-lite = "0.2"
hex = "0.4"

Expand Down
6 changes: 3 additions & 3 deletions bindings/rust/standard/s2n-tls-hyper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "s2n-tls-hyper"
description = "A compatbility crate allowing s2n-tls to be used with the hyper HTTP library"
version = "0.0.6"
version = "0.0.7"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.74.0"
Expand All @@ -12,8 +12,8 @@ license = "Apache-2.0"
default = []

[dependencies]
s2n-tls = { version = "=0.3.14", path = "../../extended/s2n-tls" }
s2n-tls-tokio = { version = "=0.3.14", path = "../../extended/s2n-tls-tokio" }
s2n-tls = { version = "=0.3.15", path = "../../extended/s2n-tls" }
s2n-tls-tokio = { version = "=0.3.15", path = "../../extended/s2n-tls-tokio" }
# A minimum hyper version of 1.3 is required by hyper-util 0.1.4:
# https://github.com/hyperium/hyper-util/blob/3f6a92ecd019b8d534d2945564d3ab8a92ff1f41/Cargo.toml#L34
hyper = { version = "1.3" }
Expand Down
Loading