Skip to content

Commit 78f3d10

Browse files
authored
Upgrade tokio-rustls & webpki. (#570)
Now that we're on tokio-0.2, we can upgrade tokio-rustls. I've moved an updated webpki fork into the linkerd organization.
1 parent 1b3e899 commit 78f3d10

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2880,9 +2880,9 @@ dependencies = [
28802880

28812881
[[package]]
28822882
name = "tokio-rustls"
2883-
version = "0.13.0"
2883+
version = "0.13.1"
28842884
source = "registry+https://github.com/rust-lang/crates.io-index"
2885-
checksum = "4adb8b3e5f86b707f1b54e7c15b6de52617a823608ccda98a15d3a24222f265a"
2885+
checksum = "15cb62a0d2770787abc96e99c1cd98fcf17f94959f3af63ca85bdfb203f051b4"
28862886
dependencies = [
28872887
"futures-core",
28882888
"rustls",
@@ -3579,8 +3579,8 @@ dependencies = [
35793579

35803580
[[package]]
35813581
name = "webpki"
3582-
version = "0.21.0"
3583-
source = "git+https://github.com/seanmonstar/webpki?branch=cert-dns-names-0.21#c4d77fd78a48a5daf05fd7ce2c18d34f9a077e4a"
3582+
version = "0.21.2"
3583+
source = "git+https://github.com/linkerd/webpki?branch=cert-dns-names-0.21#bb241f5bf80a894d0899ad6719bab3d9d0660b61"
35843584
dependencies = [
35853585
"ring",
35863586
"untrusted",

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ debug = false
6363
debug = false
6464

6565
[patch.crates-io]
66-
webpki = { git = "https://github.com/seanmonstar/webpki", branch = "cert-dns-names-0.21" }
66+
webpki = { git = "https://github.com/linkerd/webpki", branch = "cert-dns-names-0.21" }
6767
# backport danburkert/prost#268 to `prost` 0.5 temporarily.
6868
prost = { git = "https://github.com/linkerd/prost", branch = "v0.5.x" }
6969
tower = { version = "0.3", git = "https://github.com/tower-rs/tower", rev = "8752a3811788e94670c62dc0acbc9613207931b1"}

linkerd/app/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ tokio-connect = { git = "https://github.com/carllerche/tokio-connect" }
4646
tokio-io = "0.1.6"
4747
tokio-current-thread = "0.1.4"
4848
tokio-rustls = "0.13"
49-
webpki = "=0.21.0"
49+
webpki = "0.21"

linkerd/app/integration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ tonic = { version = "0.2", default-features = false }
5151
tracing = "0.1.9"
5252
tracing-futures = { version = "0.2", features = ["std-future"] }
5353
tracing-subscriber = "0.2.5"
54-
webpki = "=0.21.0"
54+
webpki = "0.21.0"
5555

5656
[dev-dependencies]
5757
flate2 = { version = "1.0.1", default-features = false, features = ["rust_backend"] }

linkerd/dns/name/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2018"
66
publish = false
77

88
[dependencies]
9-
webpki = "=0.21.0"
9+
webpki = "0.21"
1010
untrusted = "0.7"

0 commit comments

Comments
 (0)