From ebf208d23dc2ff57c5441b18e3b6816a46f26b3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 18:27:40 +0000 Subject: [PATCH] chore(deps): Bump hickory-proto in /graphql-dns-api Bumps [hickory-proto](https://github.com/hickory-dns/hickory-dns) from 0.24.4 to 0.25.2. - [Release notes](https://github.com/hickory-dns/hickory-dns/releases) - [Changelog](https://github.com/hickory-dns/hickory-dns/blob/main/CHANGELOG.md) - [Commits](https://github.com/hickory-dns/hickory-dns/compare/v0.24.4...v0.25.2) --- updated-dependencies: - dependency-name: hickory-proto dependency-version: 0.25.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- graphql-dns-api/Cargo.lock | 43 ++++++++++++++++++++++++++++++++++---- graphql-dns-api/Cargo.toml | 2 +- 2 files changed, 40 insertions(+), 5 deletions(-) diff --git a/graphql-dns-api/Cargo.lock b/graphql-dns-api/Cargo.lock index 50e7334..9d2bcb2 100644 --- a/graphql-dns-api/Cargo.lock +++ b/graphql-dns-api/Cargo.lock @@ -2536,7 +2536,7 @@ dependencies = [ "ethers", "hex", "hickory-client", - "hickory-proto", + "hickory-proto 0.25.2", "hickory-server", "hkdf", "http 1.4.0", @@ -2768,7 +2768,7 @@ dependencies = [ "data-encoding", "futures-channel", "futures-util", - "hickory-proto", + "hickory-proto 0.24.4", "once_cell", "radix_trie", "rand 0.8.5", @@ -2806,6 +2806,31 @@ dependencies = [ "url", ] +[[package]] +name = "hickory-proto" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna", + "ipnet", + "once_cell", + "rand 0.9.2", + "ring 0.17.14", + "thiserror 2.0.18", + "tinyvec", + "tokio", + "tracing", + "url", +] + [[package]] name = "hickory-resolver" version = "0.24.4" @@ -2814,7 +2839,7 @@ checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" dependencies = [ "cfg-if", "futures-util", - "hickory-proto", + "hickory-proto 0.24.4", "ipconfig", "lru-cache", "once_cell", @@ -2841,7 +2866,7 @@ dependencies = [ "cfg-if", "enum-as-inner", "futures-util", - "hickory-proto", + "hickory-proto 0.24.4", "hickory-resolver", "rustls", "serde", @@ -3972,6 +3997,10 @@ name = "once_cell" version = "1.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" +dependencies = [ + "critical-section", + "portable-atomic", +] [[package]] name = "opaque-debug" @@ -4426,6 +4455,12 @@ dependencies = [ "universal-hash", ] +[[package]] +name = "portable-atomic" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" + [[package]] name = "potential_utf" version = "0.1.4" diff --git a/graphql-dns-api/Cargo.toml b/graphql-dns-api/Cargo.toml index 1933e04..dc9032c 100644 --- a/graphql-dns-api/Cargo.toml +++ b/graphql-dns-api/Cargo.toml @@ -29,7 +29,7 @@ ethers = { version = "2.0", features = ["rustls", "abigen"] } # DNS/DNSSEC (trust-dns renamed to hickory-dns) hickory-client = "0.24" hickory-server = { version = "0.24", features = ["dns-over-rustls"] } -hickory-proto = "0.24" +hickory-proto = "0.25" # Serialization serde = { version = "1.0", features = ["derive"] }