Skip to content

Commit

Permalink
Merge pull request #45 from tmccombs/rustls-update
Browse files Browse the repository at this point in the history
Allow using tokio-rustls 0.26
  • Loading branch information
tmccombs authored Jul 6, 2024
2 parents aa9ccaa + 8414b9a commit bdd9432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tls-listener"
description = "wrap incoming Stream of connections in TLS"
version = "0.10.0"
version = "0.10.1"
authors = ["Thayne McCombs <astrothayne@gmail.com>"]
repository = "https://github.com/tmccombs/tls-listener"
edition = "2018"
Expand All @@ -22,7 +22,7 @@ pin-project-lite = "0.2.13"
thiserror = "1.0.30"
tokio = { version = "1.0", features = ["time"] }
tokio-native-tls = { version = "0.3.0", optional = true }
tokio-rustls = { version = "0.26.0", optional = true }
tokio-rustls = { version = ">=0.25.0,<0.27", optional = true }
tokio-openssl = { version = "0.6.3", optional = true }
openssl_impl = { package = "openssl", version = "0.10.32", optional = true }

Expand Down

0 comments on commit bdd9432

Please sign in to comment.