Skip to content

Commit 247316d

Browse files
Update Rust crate hickory-proto to 0.26.0 [SECURITY]
1 parent fdf50ea commit 247316d

3 files changed

Lines changed: 101 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 90 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ heck = "0.5"
563563
hex = "0.4.3"
564564
hex-literal = "0.4.1"
565565
hickory-client = "0.25.2"
566-
hickory-proto = "0.25.2"
566+
hickory-proto = "0.26.0"
567567
hickory-resolver = "0.25.2"
568568
hickory-server = "0.25.2"
569569
highway = "1.3.0"

workspace-hack/Cargo.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ bstr = { version = "1.12.1" }
3333
buf-list = { version = "1.1.2", default-features = false, features = ["tokio1"] }
3434
bytes = { version = "1.11.1", features = ["serde"] }
3535
camino = { version = "1.2.2", default-features = false, features = ["serde1"] }
36+
chacha20 = { version = "0.10.0", default-features = false, features = ["legacy", "rng", "zeroize"] }
3637
chrono = { version = "0.4.45", features = ["serde"] }
38+
cipher = { version = "0.5.2", default-features = false, features = ["block-padding", "stream-wrapper"] }
3739
clap = { version = "4.6.1", features = ["cargo", "derive", "env", "wrap_help"] }
3840
clap_builder = { version = "4.6.0", default-features = false, features = ["cargo", "color", "env", "std", "suggestions", "usage", "wrap_help"] }
3941
const-oid = { version = "0.9.6", default-features = false, features = ["db", "std"] }
@@ -72,13 +74,14 @@ group = { version = "0.13.0", default-features = false, features = ["alloc"] }
7274
hashbrown-3575ec1268b04181 = { package = "hashbrown", version = "0.15.5" }
7375
hashbrown-986da7b5efc2b80e = { package = "hashbrown", version = "0.16.1" }
7476
hex = { version = "0.4.3", features = ["serde"] }
75-
hickory-proto = { version = "0.25.2", features = ["serde", "text-parsing"] }
77+
hickory-proto = { version = "0.25.2", default-features = false, features = ["serde", "text-parsing", "tokio"] }
7678
hmac = { version = "0.12.1", default-features = false, features = ["reset"] }
7779
hybrid-array = { version = "0.4.13", default-features = false, features = ["alloc", "ctutils", "extra-sizes", "subtle", "zeroize"] }
7880
hyper = { version = "1.10.1", features = ["full"] }
7981
iddqd = { version = "0.4.2", features = ["daft", "proptest", "schemars08"] }
8082
idna = { version = "1.1.0" }
8183
indexmap = { version = "2.14.0", features = ["serde"] }
84+
inout = { version = "0.2.2", default-features = false, features = ["block-padding"] }
8285
ipnet = { version = "2.11.0", features = ["serde"] }
8386
ipnetwork = { version = "0.21.1", features = ["schemars", "serde"] }
8487
itertools = { version = "0.13.0" }
@@ -109,6 +112,7 @@ proc-macro2 = { version = "1.0.106" }
109112
proptest = { version = "1.10.0" }
110113
quote = { version = "1.0.45" }
111114
rand-274715c4dabd11b0 = { package = "rand", version = "0.9.2" }
115+
rand-93f6ce9d446188ac = { package = "rand", version = "0.10.1" }
112116
rand-c38e5c1d305a1b54 = { package = "rand", version = "0.8.6" }
113117
rand_chacha-274715c4dabd11b0 = { package = "rand_chacha", version = "0.9.0", default-features = false, features = ["std"] }
114118
rand_chacha-468e82937335b1c9 = { package = "rand_chacha", version = "0.3.1", default-features = false, features = ["std"] }
@@ -180,7 +184,9 @@ bstr = { version = "1.12.1" }
180184
buf-list = { version = "1.1.2", default-features = false, features = ["tokio1"] }
181185
bytes = { version = "1.11.1", features = ["serde"] }
182186
camino = { version = "1.2.2", default-features = false, features = ["serde1"] }
187+
chacha20 = { version = "0.10.0", default-features = false, features = ["legacy", "rng", "zeroize"] }
183188
chrono = { version = "0.4.45", features = ["serde"] }
189+
cipher = { version = "0.5.2", default-features = false, features = ["block-padding", "stream-wrapper"] }
184190
clap = { version = "4.6.1", features = ["cargo", "derive", "env", "wrap_help"] }
185191
clap_builder = { version = "4.6.0", default-features = false, features = ["cargo", "color", "env", "std", "suggestions", "usage", "wrap_help"] }
186192
const-oid = { version = "0.9.6", default-features = false, features = ["db", "std"] }
@@ -220,13 +226,14 @@ hashbrown-3575ec1268b04181 = { package = "hashbrown", version = "0.15.5" }
220226
hashbrown-986da7b5efc2b80e = { package = "hashbrown", version = "0.16.1" }
221227
heck = { version = "0.4.1", features = ["unicode"] }
222228
hex = { version = "0.4.3", features = ["serde"] }
223-
hickory-proto = { version = "0.25.2", features = ["serde", "text-parsing"] }
229+
hickory-proto = { version = "0.25.2", default-features = false, features = ["serde", "text-parsing", "tokio"] }
224230
hmac = { version = "0.12.1", default-features = false, features = ["reset"] }
225231
hybrid-array = { version = "0.4.13", default-features = false, features = ["alloc", "ctutils", "extra-sizes", "subtle", "zeroize"] }
226232
hyper = { version = "1.10.1", features = ["full"] }
227233
iddqd = { version = "0.4.2", features = ["daft", "proptest", "schemars08"] }
228234
idna = { version = "1.1.0" }
229235
indexmap = { version = "2.14.0", features = ["serde"] }
236+
inout = { version = "0.2.2", default-features = false, features = ["block-padding"] }
230237
ipnet = { version = "2.11.0", features = ["serde"] }
231238
ipnetwork = { version = "0.21.1", features = ["schemars", "serde"] }
232239
itertools = { version = "0.13.0" }
@@ -257,6 +264,7 @@ proc-macro2 = { version = "1.0.106" }
257264
proptest = { version = "1.10.0" }
258265
quote = { version = "1.0.45" }
259266
rand-274715c4dabd11b0 = { package = "rand", version = "0.9.2" }
267+
rand-93f6ce9d446188ac = { package = "rand", version = "0.10.1" }
260268
rand-c38e5c1d305a1b54 = { package = "rand", version = "0.8.6" }
261269
rand_chacha-274715c4dabd11b0 = { package = "rand_chacha", version = "0.9.0", default-features = false, features = ["std"] }
262270
rand_chacha-468e82937335b1c9 = { package = "rand_chacha", version = "0.3.1", default-features = false, features = ["std"] }
@@ -394,15 +402,12 @@ rustix-dff4ba8e3ae991db = { package = "rustix", version = "1.1.3", features = ["
394402
tokio-rustls = { version = "0.26.4", default-features = false, features = ["aws-lc-rs"] }
395403

396404
[target.x86_64-unknown-illumos.dependencies]
397-
chacha20 = { version = "0.10.0", default-features = false, features = ["legacy", "rng", "zeroize"] }
398-
cipher = { version = "0.5.2", default-features = false, features = ["block-padding", "stream-wrapper"] }
399405
cookie = { version = "0.18.1", default-features = false, features = ["percent-encode"] }
400406
dof-468e82937335b1c9 = { package = "dof", version = "0.3.0", default-features = false, features = ["des"] }
401407
dof-9fbad63c4bcf4a8f = { package = "dof", version = "0.4.0", default-features = false, features = ["des"] }
402408
errno = { version = "0.3.14" }
403409
hyper-rustls = { version = "0.27.7", features = ["http2"] }
404410
hyper-util = { version = "0.1.20", features = ["full"] }
405-
inout = { version = "0.2.2", default-features = false, features = ["block-padding"] }
406411
mio = { version = "1.2.0", features = ["net", "os-ext"] }
407412
nix = { version = "0.31.2", default-features = false, features = ["mman"] }
408413
object = { version = "0.37.3", default-features = false, features = ["read", "std"] }
@@ -412,15 +417,12 @@ tokio-rustls = { version = "0.26.4", default-features = false, features = ["aws-
412417
toml_edit-cdcf2f9584511fe6 = { package = "toml_edit", version = "0.19.15", features = ["serde"] }
413418

414419
[target.x86_64-unknown-illumos.build-dependencies]
415-
chacha20 = { version = "0.10.0", default-features = false, features = ["legacy", "rng", "zeroize"] }
416-
cipher = { version = "0.5.2", default-features = false, features = ["block-padding", "stream-wrapper"] }
417420
cookie = { version = "0.18.1", default-features = false, features = ["percent-encode"] }
418421
dof-468e82937335b1c9 = { package = "dof", version = "0.3.0", default-features = false, features = ["des"] }
419422
dof-9fbad63c4bcf4a8f = { package = "dof", version = "0.4.0", default-features = false, features = ["des"] }
420423
errno = { version = "0.3.14" }
421424
hyper-rustls = { version = "0.27.7", features = ["http2"] }
422425
hyper-util = { version = "0.1.20", features = ["full"] }
423-
inout = { version = "0.2.2", default-features = false, features = ["block-padding"] }
424426
mio = { version = "1.2.0", features = ["net", "os-ext"] }
425427
nix = { version = "0.31.2", default-features = false, features = ["mman"] }
426428
object = { version = "0.37.3", default-features = false, features = ["read", "std"] }

0 commit comments

Comments
 (0)