pull/2854/merge
renovate[bot] 10 hours ago committed by GitHub
commit d4b0abac94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

17
Cargo.lock generated

@ -1114,6 +1114,12 @@ version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
[[package]]
name = "constant_time_eq"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
[[package]] [[package]]
name = "convert_case" name = "convert_case"
version = "0.4.0" version = "0.4.0"
@ -5183,13 +5189,14 @@ dependencies = [
[[package]] [[package]]
name = "rust-argon2" name = "rust-argon2"
version = "2.1.0" version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d9848531d60c9cbbcf9d166c885316c24bc0e2a9d3eba0956bb6cbbd79bc6e8" checksum = "8ae76b7506744d254fd0eb2c0ff5c5d108201ccbb083111ac04a44eeda105680"
dependencies = [ dependencies = [
"base64 0.21.7", "base64 0.22.1",
"blake2b_simd", "blake2b_simd",
"constant_time_eq 0.3.1", "constant_time_eq 0.4.2",
"crossbeam-utils",
] ]
[[package]] [[package]]
@ -6878,7 +6885,7 @@ dependencies = [
"rand 0.8.5", "rand 0.8.5",
"rand_chacha 0.3.1", "rand_chacha 0.3.1",
"rand_core 0.6.4", "rand_core 0.6.4",
"rust-argon2 2.1.0", "rust-argon2 3.0.0",
"rusty-fork", "rusty-fork",
"serde", "serde",
"serde_json", "serde_json",

@ -33,7 +33,7 @@ iota_stronghold = "2"
iota-crypto = "0.23" iota-crypto = "0.23"
hex = "0.4" hex = "0.4"
zeroize = { version = "1", features = ["zeroize_derive"] } zeroize = { version = "1", features = ["zeroize_derive"] }
rust-argon2 = { version = "2", optional = true } rust-argon2 = { version = "3", optional = true }
rand_chacha = { version = "0.3.1", optional = true } rand_chacha = { version = "0.3.1", optional = true }
rand_core = { version = "0.6.4", features = ["getrandom"], optional = true } rand_core = { version = "0.6.4", features = ["getrandom"], optional = true }

Loading…
Cancel
Save