diff --git a/Cargo.lock b/Cargo.lock index 8d87c5bc5b541..d82ccfc23b2e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2253,7 +2253,7 @@ dependencies = [ "hex", "itertools 0.14.0", "log", - "md-5", + "md-5 0.11.0", "memchr", "num-traits", "rand 0.9.2", @@ -4054,6 +4054,16 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "md-5" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98" +dependencies = [ + "cfg-if", + "digest 0.11.2", +] + [[package]] name = "memchr" version = "2.8.0" @@ -4294,7 +4304,7 @@ dependencies = [ "humantime", "hyper", "itertools 0.14.0", - "md-5", + "md-5 0.10.6", "parking_lot", "percent-encoding", "quick-xml", @@ -4690,7 +4700,7 @@ dependencies = [ "bytes", "fallible-iterator", "hmac", - "md-5", + "md-5 0.10.6", "memchr", "rand 0.9.2", "sha2", @@ -5750,7 +5760,7 @@ dependencies = [ "humantime", "itertools 0.13.0", "libtest-mimic", - "md-5", + "md-5 0.10.6", "owo-colors", "rand 0.8.5", "regex", diff --git a/datafusion/functions/Cargo.toml b/datafusion/functions/Cargo.toml index 1940f1378b635..84a5a2ad9ae7b 100644 --- a/datafusion/functions/Cargo.toml +++ b/datafusion/functions/Cargo.toml @@ -81,7 +81,7 @@ datafusion-macros = { workspace = true } hex = { workspace = true, optional = true } itertools = { workspace = true } log = { workspace = true } -md-5 = { version = "^0.10.0", optional = true } +md-5 = { version = "^0.11.0", optional = true } memchr = { workspace = true } num-traits = { workspace = true } rand = { workspace = true }