Skip to content

Commit

Permalink
build(deps): update s2n-tls requirement from =0.0.35 to =0.0.36
Browse files Browse the repository at this point in the history
Updates the requirements on [s2n-tls](https://github.com/aws/s2n-tls) to permit the latest version.
- [Release notes](https://github.com/aws/s2n-tls/releases)
- [Commits](https://github.com/aws/s2n-tls/commits)

---
updated-dependencies:
- dependency-name: s2n-tls
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and camshaft committed Aug 24, 2023
1 parent 7016e9c commit 9e914ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion examples/post-quantum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ publish = false

[dependencies]
s2n-quic = { version = "1", path = "../../quic/s2n-quic" }
# enable the post-quantum feature in s2n-tls
s2n-tls = { version = "*", features = ["pq"] }
tokio = { version = "1", features = ["full"] }
# Build the vendored version to make it easy to test.
#
Expand All @@ -15,7 +17,7 @@ tokio = { version = "1", features = ["full"] }
#
# NOTE: The version of the `openssl-sys` crate is not the same as OpenSSL itself.
# Versions 1.0.1 - 3.0.0 are automatically discovered.
openssl-sys = { version = "<= 0.9.68", features = ["vendored"] }
openssl-sys = { version = "0.9", features = ["vendored"] }

[workspace]
members = ["."]
5 changes: 1 addition & 4 deletions quic/s2n-quic-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ libc = "0.2"
s2n-codec = { version = "=0.6.2", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.26.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.26.0", path = "../s2n-quic-crypto", default-features = false }
s2n-tls = { version = "=0.0.35", features = ["quic"] }

[target.'cfg(all(s2n_quic_unstable, s2n_quic_enable_pq_tls))'.dependencies]
s2n-tls = { version = "=0.0.35", features = ["quic", "pq"] }
s2n-tls = { version = "=0.0.36", features = ["quic"] }

[dev-dependencies]
checkers = "0.6"
Expand Down

0 comments on commit 9e914ea

Please sign in to comment.