From 0f9a037ff2f4ce7997e9dc1301f5e28c96c6af94 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 22:14:11 +0000 Subject: [PATCH] deps: bump the trust-dns group with 3 updates Bumps the trust-dns group with 3 updates: [trust-dns-proto](https://github.com/bluejekyll/trust-dns), [async-std-resolver](https://github.com/bluejekyll/trust-dns) and [trust-dns-resolver](https://github.com/bluejekyll/trust-dns). Updates `trust-dns-proto` from 0.23.0 to 0.23.2 - [Release notes](https://github.com/bluejekyll/trust-dns/releases) - [Changelog](https://github.com/hickory-dns/hickory-dns/blob/v0.23.2/CHANGELOG.md) - [Commits](https://github.com/bluejekyll/trust-dns/compare/v0.23.0...v0.23.2) Updates `async-std-resolver` from 0.23.0 to 0.24.0 - [Release notes](https://github.com/bluejekyll/trust-dns/releases) - [Changelog](https://github.com/hickory-dns/hickory-dns/blob/main/CHANGELOG.md) - [Commits](https://github.com/bluejekyll/trust-dns/compare/v0.23.0...v0.24.0) Updates `trust-dns-resolver` from 0.23.0 to 0.23.2 - [Release notes](https://github.com/bluejekyll/trust-dns/releases) - [Changelog](https://github.com/hickory-dns/hickory-dns/blob/v0.23.2/CHANGELOG.md) - [Commits](https://github.com/bluejekyll/trust-dns/compare/v0.23.0...v0.23.2) --- updated-dependencies: - dependency-name: trust-dns-proto dependency-type: direct:production update-type: version-update:semver-patch dependency-group: trust-dns - dependency-name: async-std-resolver dependency-type: direct:production update-type: version-update:semver-minor dependency-group: trust-dns - dependency-name: trust-dns-resolver dependency-type: direct:production update-type: version-update:semver-patch dependency-group: trust-dns ... Signed-off-by: dependabot[bot] --- Cargo.lock | 57 ++++++++++++++++++++++++++++++++++----- protocols/mdns/Cargo.toml | 2 +- transports/dns/Cargo.toml | 2 +- 3 files changed, 52 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f4fd13cfccd..80bfe495eea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -402,17 +402,17 @@ dependencies = [ [[package]] name = "async-std-resolver" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0354a68a52265a3bde76005ddd2726624ef8624614f7f58871301de205a58a59" +checksum = "3c0ed2b6671c13d2c28756c5a64e04759c1e0b5d3d7ac031f521c3561e21fbcb" dependencies = [ "async-std", "async-trait", "futures-io", "futures-util", + "hickory-resolver", "pin-utils", "socket2 0.5.5", - "trust-dns-resolver", ] [[package]] @@ -1892,6 +1892,49 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" +[[package]] +name = "hickory-proto" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "091a6fbccf4860009355e3efc52ff4acf37a63489aad7435372d44ceeb6fbbcf" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna", + "ipnet", + "once_cell", + "rand 0.8.5", + "thiserror", + "tinyvec", + "tracing", + "url", +] + +[[package]] +name = "hickory-resolver" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35b8f021164e6a984c9030023544c57789c51760065cd510572fedcfb04164e8" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot", + "rand 0.8.5", + "resolv-conf", + "smallvec", + "thiserror", + "tracing", +] + [[package]] name = "hkdf" version = "0.12.3" @@ -5686,9 +5729,9 @@ dependencies = [ [[package]] name = "trust-dns-proto" -version = "0.23.0" +version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc775440033cb114085f6f2437682b194fa7546466024b1037e82a48a052a69" +checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374" dependencies = [ "async-trait", "bytes", @@ -5720,9 +5763,9 @@ dependencies = [ [[package]] name = "trust-dns-resolver" -version = "0.23.0" +version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff7aed33ef3e8bf2c9966fccdfed93f93d46f432282ea875cd66faabc6ef2f" +checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" dependencies = [ "cfg-if", "futures-util", diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 065e878b258..4f8d8f709ff 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -24,7 +24,7 @@ rand = "0.8.3" smallvec = "1.11.1" socket2 = { version = "0.5.5", features = ["all"] } tokio = { version = "1.33", default-features = false, features = ["net", "time"], optional = true} -trust-dns-proto = { version = "0.23.0", default-features = false, features = ["mdns"] } +trust-dns-proto = { version = "0.23.2", default-features = false, features = ["mdns"] } void = "1.0.2" [features] diff --git a/transports/dns/Cargo.toml b/transports/dns/Cargo.toml index 1a5ce33e033..921be7ac44d 100644 --- a/transports/dns/Cargo.toml +++ b/transports/dns/Cargo.toml @@ -16,7 +16,7 @@ libp2p-core = { workspace = true } libp2p-identity = { workspace = true } log = "0.4.20" futures = "0.3.28" -async-std-resolver = { version = "0.23", optional = true } +async-std-resolver = { version = "0.24", optional = true } parking_lot = "0.12.0" trust-dns-resolver = { version = "0.23", default-features = false, features = ["system-config"] } smallvec = "1.11.1"