diff --git a/Cargo.lock b/Cargo.lock index b92bf09..4986a26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1100,6 +1100,12 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" +[[package]] +name = "md5" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0" + [[package]] name = "memchr" version = "2.7.4" @@ -2121,7 +2127,7 @@ dependencies = [ "itertools 0.13.0", "js-sys", "log", - "md5", + "md5 0.7.0", "memmap2", "murmurhash3", "needletail 0.6.1", @@ -2158,7 +2164,7 @@ dependencies = [ "futures", "getset", "lazy_static", - "md5", + "md5 0.8.0", "needletail 0.5.1", "niffler", "openssl", diff --git a/Cargo.toml b/Cargo.toml index d21e055..abd373e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ tokio-util = {version = "0.7.15", features = ["io", "io-util"]} regex = "1.11.1" chrono = "0.4.32" lazy_static = "1.5.0" -md5 = "0.7.0" +md5 = "0.8.0" openssl = { version = "0.10", features = ["vendored"] } futures = "0.3.31" getset = "0.1.6"