From 5f9fed7909b5e016609ad7bc99843fa2eea9b4f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 21:28:07 +0000 Subject: [PATCH] deps: bump trust-dns-proto from 0.22.0 to 0.23.1 Bumps [trust-dns-proto](https://github.com/bluejekyll/trust-dns) from 0.22.0 to 0.23.1. - [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.22.0...v0.23.1) --- updated-dependencies: - dependency-name: trust-dns-proto dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 45 +++++++++++++++++++++++++++++++++++---- protocols/mdns/Cargo.toml | 2 +- 2 files changed, 42 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb1cdfcdaaf..1ffbb86f280 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1574,6 +1574,18 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "enum-as-inner" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.28", +] + [[package]] name = "env_logger" version = "0.8.4" @@ -2874,7 +2886,7 @@ dependencies = [ "smallvec", "socket2 0.5.3", "tokio", - "trust-dns-proto", + "trust-dns-proto 0.23.1", "void", ] @@ -5855,7 +5867,7 @@ dependencies = [ "bytes", "cfg-if 1.0.0", "data-encoding", - "enum-as-inner", + "enum-as-inner 0.5.1", "futures-channel", "futures-io", "futures-util", @@ -5868,7 +5880,6 @@ dependencies = [ "rustls 0.20.8", "rustls-pemfile", "smallvec", - "socket2 0.4.9", "thiserror", "tinyvec", "tokio", @@ -5879,6 +5890,32 @@ dependencies = [ "webpki-roots 0.22.6", ] +[[package]] +name = "trust-dns-proto" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "559ac980345f7f5020883dd3bcacf176355225e01916f8c2efecad7534f682c6" +dependencies = [ + "async-trait", + "cfg-if 1.0.0", + "data-encoding", + "enum-as-inner 0.6.0", + "futures-channel", + "futures-io", + "futures-util", + "idna 0.4.0", + "ipnet", + "once_cell", + "rand 0.8.5", + "smallvec", + "socket2 0.5.3", + "thiserror", + "tinyvec", + "tokio", + "tracing", + "url", +] + [[package]] name = "trust-dns-resolver" version = "0.22.0" @@ -5898,7 +5935,7 @@ dependencies = [ "tokio", "tokio-rustls", "tracing", - "trust-dns-proto", + "trust-dns-proto 0.22.0", "webpki-roots 0.22.6", ] diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 14a30e6b923..0a7c2fae078 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.8.3" smallvec = "1.11.0" socket2 = { version = "0.5.3", features = ["all"] } tokio = { version = "1.31", default-features = false, features = ["net", "time"], optional = true} -trust-dns-proto = { version = "0.22.0", default-features = false, features = ["mdns", "tokio-runtime"] } +trust-dns-proto = { version = "0.23.1", default-features = false, features = ["mdns", "tokio-runtime"] } void = "1.0.2" [features]