Merge pull request #26 from ctz/master

Update to rustls 0.15, webpki 0.19
This commit is contained in:
quininer 2019-01-22 09:43:35 +08:00 committed by GitHub
commit 845eec0941
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,8 @@ futures = { version = "0.1", optional = true }
tokio-io = { version = "0.1.6", optional = true } tokio-io = { version = "0.1.6", optional = true }
bytes = { version = "0.4", optional = true } bytes = { version = "0.4", optional = true }
iovec = { version = "0.1", optional = true } iovec = { version = "0.1", optional = true }
rustls = "0.14" rustls = "0.15"
webpki = "0.18.1" webpki = "0.19"
[dev-dependencies] [dev-dependencies]
tokio = "0.1.6" tokio = "0.1.6"

View File

@ -4,9 +4,9 @@ version = "0.1.0"
authors = ["quininer <quininer@live.com>"] authors = ["quininer <quininer@live.com>"]
[dependencies] [dependencies]
webpki = "0.18.1" webpki = "0.19"
tokio-rustls = { path = "../.." } tokio-rustls = { path = "../.." }
tokio = "0.1" tokio = "0.1"
clap = "2" clap = "2"
webpki-roots = "0.15" webpki-roots = "0.16"
tokio-stdin-stdout = "0.1" tokio-stdin-stdout = "0.1"