Skip to content

Commit 3d0c1cc

Browse files
authored
build(deps): Update trust-dns to v0.21.0-alpha.1 (#1105)
trust-dns has begun preparations for the v0.21.0 release. This change updates our git dependency to use the most recent version.
1 parent cde2816 commit 3d0c1cc

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,9 @@ dependencies = [
496496

497497
[[package]]
498498
name = "idna"
499-
version = "0.2.1"
499+
version = "0.2.3"
500500
source = "registry+https://github.com/rust-lang/crates.io-index"
501-
checksum = "de910d521f7cc3135c4de8db1cb910e0b5ed1dc6f57c381cd07e8e661ce10094"
501+
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
502502
dependencies = [
503503
"matches",
504504
"unicode-bidi",
@@ -2428,8 +2428,8 @@ dependencies = [
24282428

24292429
[[package]]
24302430
name = "trust-dns-proto"
2431-
version = "0.20.1"
2432-
source = "git+https://github.com/bluejekyll/trust-dns?branch=main#bbc9d5e9156f48102d246791e4ffa6e94962eebc"
2431+
version = "0.21.0-alpha.1"
2432+
source = "git+https://github.com/bluejekyll/trust-dns?branch=main#ed9f05b102755178f3aa23f09c368b66d5972950"
24332433
dependencies = [
24342434
"async-trait",
24352435
"cfg-if",
@@ -2452,8 +2452,8 @@ dependencies = [
24522452

24532453
[[package]]
24542454
name = "trust-dns-resolver"
2455-
version = "0.20.1"
2456-
source = "git+https://github.com/bluejekyll/trust-dns?branch=main#bbc9d5e9156f48102d246791e4ffa6e94962eebc"
2455+
version = "0.21.0-alpha.1"
2456+
source = "git+https://github.com/bluejekyll/trust-dns?branch=main#ed9f05b102755178f3aa23f09c368b66d5972950"
24572457
dependencies = [
24582458
"cfg-if",
24592459
"futures-util",

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,4 @@ debug = false
6969
debug = false
7070

7171
[patch.crates-io]
72-
trust-dns-proto = { git = "https://github.com/bluejekyll/trust-dns", branch = "main" }
73-
trust-dns-resolver = { git = "https://github.com/bluejekyll/trust-dns", branch = "main" }
7472
webpki = { git = "https://github.com/linkerd/webpki", branch = "cert-dns-names-0.21" }

linkerd/dns/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ tokio = { version = "1", features = ["rt", "sync", "time"] }
1616
pin-project = "1"
1717

1818
[dependencies.trust-dns-resolver]
19-
# Pinned until 0.21.0 is released with
20-
# https://github.com/bluejekyll/trust-dns/commit/6dfc6713.
21-
version = "=0.20.1"
19+
# We need to use a git dependency to pick up bluejekyll/trust-dns@6dfc6713.
20+
version = "0.21.0-alpha.1"
21+
git = "https://github.com/bluejekyll/trust-dns"
22+
branch = "main"
2223
default-features = false
2324
features = ["system-config", "tokio-runtime"]

linkerd/dns/fuzz/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,3 @@ name = "fuzz_target_1"
2626
path = "fuzz_targets/fuzz_target_1.rs"
2727
test = false
2828
doc = false
29-
30-
[patch.crates-io]
31-
trust-dns-proto = { git = "https://github.com/bluejekyll/trust-dns", branch = "main" }
32-
trust-dns-resolver = { git = "https://github.com/bluejekyll/trust-dns", branch = "main" }

0 commit comments

Comments
 (0)