Revert webpki version bump to keep compatability with tokio-rustls feature

This commit is contained in:
Eamon Caton
2021-05-22 10:26:56 -07:00
committed by Ryan Leckey
parent 901f858fbc
commit b391d4878e
2 changed files with 9 additions and 19 deletions

24
Cargo.lock generated
View File

@@ -177,7 +177,7 @@ checksum = "9c86f33abd5a4f3e2d6d9251a9e0c6a7e52eb1113caf893dae8429bf4a53f378"
dependencies = [
"futures-lite",
"rustls",
"webpki 0.21.4",
"webpki",
]
[[package]]
@@ -2007,7 +2007,7 @@ dependencies = [
"log",
"ring",
"sct",
"webpki 0.21.4",
"webpki",
]
[[package]]
@@ -2367,7 +2367,7 @@ dependencies = [
"tokio-stream",
"url",
"uuid",
"webpki 0.22.0",
"webpki",
"webpki-roots",
"whoami",
]
@@ -2820,7 +2820,7 @@ checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
dependencies = [
"rustls",
"tokio",
"webpki 0.21.4",
"webpki",
]
[[package]]
@@ -3078,23 +3078,13 @@ dependencies = [
"untrusted",
]
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
version = "0.22.0"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b533367e7546a31c15093b12a273004b79eb3b57b15359af710460f9aee94cf8"
checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"
dependencies = [
"webpki 0.22.0",
"webpki",
]
[[package]]

View File

@@ -153,8 +153,8 @@ tokio-stream = { version = "0.1.2", features = ["fs"], optional = true }
smallvec = "1.4.0"
url = { version = "2.1.1", default-features = false }
uuid = { version = "0.8.1", default-features = false, optional = true, features = ["std"] }
webpki = { version = "0.22.0", optional = true }
webpki-roots = { version = "0.22.0", optional = true }
webpki = { version = "0.21.0", optional = true }
webpki-roots = { version = "0.21.0", optional = true }
whoami = "1.0.1"
stringprep = "0.1.2"
bstr = { version = "0.2.14", default-features = false, features = ["std"], optional = true }