diff --git a/Cargo.lock b/Cargo.lock index 457464a1d..623b299aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1583,7 +1583,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd5f2b7218a51c827a11d22d1439b598121fac94bf9b99452e4afffe512d78c9" dependencies = [ "heck", - "indexmap 1.9.3", + "indexmap 2.13.0", "itertools 0.14.0", "proc-macro-crate", "proc-macro2", @@ -3599,6 +3599,12 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "549e471b99ccaf2f89101bec68f4d244457d5a95a9c3d0672e9564124397741d" +[[package]] +name = "nonempty" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9737e026353e5cd0736f98eddae28665118eb6f6600902a7f50db585621fecb6" + [[package]] name = "notify" version = "8.2.0" @@ -3857,7 +3863,7 @@ dependencies = [ "incrementalmerkletree", "lazy_static", "memuse", - "nonempty", + "nonempty 0.11.0", "pasta_curves", "rand 0.8.5", "reddsa", @@ -8651,7 +8657,7 @@ dependencies = [ "hyper-util", "incrementalmerkletree", "memuse", - "nonempty", + "nonempty 0.11.0", "orchard", "pasta_curves", "percent-encoding", @@ -8699,7 +8705,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bca38087e6524e5f51a5b0fb3fc18f36d7b84bf67b2056f494ca0c281590953d" dependencies = [ "core2", - "nonempty", + "nonempty 0.11.0", ] [[package]] @@ -8729,7 +8735,7 @@ dependencies = [ "document-features", "group", "memuse", - "nonempty", + "nonempty 0.11.0", "orchard", "rand_core 0.6.4", "sapling-crypto", @@ -8800,7 +8806,7 @@ dependencies = [ "incrementalmerkletree", "jubjub", "memuse", - "nonempty", + "nonempty 0.11.0", "orchard", "rand 0.8.5", "rand_core 0.6.4", @@ -8897,7 +8903,7 @@ dependencies = [ "document-features", "getset", "hex", - "nonempty", + "nonempty 0.11.0", "ripemd 0.1.3", "secp256k1 0.29.1", "sha2 0.10.9", @@ -9401,7 +9407,7 @@ dependencies = [ "json", "jubjub", "log", - "nonempty", + "nonempty 0.12.0", "orchard", "pepper-sync", "portpicker", diff --git a/Cargo.toml b/Cargo.toml index db9d1c71a..4cc61e019 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,7 +116,7 @@ thiserror = "2" append-only-vec = "0.1.7" bytes = "1" itertools = "0.14" -nonempty = "0.11.0" +nonempty = "0.12.0" rust_decimal = "1.37.2" rustyline = "17.0.2" shellwords = "1"