Skip to content

Commit

Permalink
chore: upgrade trust-dns-resolver and friends
Browse files Browse the repository at this point in the history
To avoid duplicate winreg crate in #24056
  • Loading branch information
ry committed Jun 5, 2024
1 parent 7ed90a2 commit c9b8940
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 41 deletions.
116 changes: 80 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ext/net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ rustls-tokio-stream.workspace = true
serde.workspace = true
socket2.workspace = true
tokio.workspace = true
trust-dns-proto = "0.22"
trust-dns-resolver = { version = "0.22", features = ["tokio-runtime", "serde-config"] }
trust-dns-proto = "0.23"
trust-dns-resolver = { version = "0.23", features = ["tokio-runtime", "serde-config"] }
2 changes: 1 addition & 1 deletion ext/net/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ where
}
}

let resolver = AsyncResolver::tokio(config, opts)?;
let resolver = AsyncResolver::tokio(config, opts);

let lookup_fut = resolver.lookup(query, record_type);

Expand Down
4 changes: 2 additions & 2 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ serde.workspace = true
test_util.workspace = true
tokio.workspace = true
tower-lsp.workspace = true
trust-dns-client = "=0.22.0"
trust-dns-server = "=0.22.1"
trust-dns-client = "=0.23.2"
trust-dns-server = "=0.23.2"
url.workspace = true
uuid = { workspace = true, features = ["serde"] }
zeromq.workspace = true
Expand Down

0 comments on commit c9b8940

Please sign in to comment.