diff --git a/Cargo.lock b/Cargo.lock index 1d12159f2..fae9fa18d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1252,7 +1252,7 @@ source = "git+https://github.com/openmina/binprot-rs?rev=400b52c#400b52c204d7a82 dependencies = [ "binprot_derive", "byteorder", - "md5", + "md5 0.7.0", ] [[package]] @@ -3069,7 +3069,7 @@ dependencies = [ "fuzzcheck_mutators_derive 0.10.0", "getopts", "libc", - "md5", + "md5 0.7.0", "nu-ansi-term 0.39.0", "object 0.27.1", "regex-syntax 0.6.29", @@ -3093,7 +3093,7 @@ dependencies = [ "fuzzcheck_mutators_derive 0.12.0", "getopts", "libc", - "md5", + "md5 0.7.0", "nu-ansi-term 0.39.0", "object 0.27.1", "regex-syntax 0.6.29", @@ -4888,6 +4888,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.6.4" @@ -4986,7 +4992,7 @@ dependencies = [ "js-sys", "lazy_static", "libp2p-identity", - "md5", + "md5 0.8.0", "mina-curves", "mina-fuzzer", "mina-hasher", @@ -8987,7 +8993,7 @@ dependencies = [ "flate2", "itertools 0.12.1", "leb128", - "md5", + "md5 0.8.0", "mina-core", "mina-curves", "mina-hasher", diff --git a/Cargo.toml b/Cargo.toml index 9e77338ad..56f894cd1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -132,7 +132,7 @@ libp2p-identity = { version = "=0.2.7", features = ["peerid"] } linkme = "0.3.22" local-ip-address = "0.6.1" log = "0.4.25" -md5 = "0.7.0" +md5 = "0.8.0" mina-bootstrap-sandbox = { path = "tools/bootstrap-sandbox" } mina-core = { path = "core" } mina-curves = { git = "https://github.com/o1-labs/proof-systems", tag = "0.2.0" }