Merge pull request #100 from jakubadamw/upgrade_async-tls_and_rustls

Upgrade `rustls` to 0.19 and `async-tls` to 0.11
This commit is contained in:
Yosh 2022-07-21 14:24:29 +02:00 committed by GitHub
commit c776e32a5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ deadpool = { version = "0.7.0", optional = true }
futures = { version = "0.3.8", optional = true }
# h1_client_rustls
async-tls = { version = "0.10.0", optional = true }
rustls_crate = { version = "0.18", optional = true, package = "rustls" }
async-tls = { version = "0.11", optional = true }
rustls_crate = { version = "0.19", optional = true, package = "rustls" }
# hyper_client
hyper = { version = "0.13.6", features = ["tcp"], optional = true }