diff --git a/Cargo.lock b/Cargo.lock index 61cce6d..a4eeb0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -787,7 +787,7 @@ dependencies = [ "futures", "futures-util", "hex", - "hkdf 0.12.4", + "hkdf", "hyper", "hyper-util", "iota-auth", @@ -1825,15 +1825,6 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -[[package]] -name = "hkdf" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" -dependencies = [ - "hmac 0.12.1", -] - [[package]] name = "hkdf" version = "0.13.0" @@ -2212,7 +2203,7 @@ dependencies = [ "futures", "futures-util", "hex", - "hkdf 0.12.4", + "hkdf", "hyper", "hyper-util", "iota-logger", @@ -2262,7 +2253,7 @@ dependencies = [ "futures", "futures-util", "hex", - "hkdf 0.12.4", + "hkdf", "hyper", "hyper-util", "iota-ipc", @@ -2449,7 +2440,7 @@ dependencies = [ "arc-swap", "base64", "hex", - "hkdf 0.12.4", + "hkdf", "iota-logger", "iota-paths", "iota-state", @@ -2495,7 +2486,7 @@ dependencies = [ "base64", "ed25519-dalek", "hex", - "hkdf 0.12.4", + "hkdf", "iota-logger", "iota-paths", "json", @@ -3015,7 +3006,7 @@ dependencies = [ "chacha20poly1305", "ed25519-dalek", "getrandom 0.4.3", - "hkdf 0.13.0", + "hkdf", "ml-dsa", "mlkem-tls", "rand 0.10.2", @@ -3373,7 +3364,7 @@ dependencies = [ "futures", "futures-util", "hex", - "hkdf 0.12.4", + "hkdf", "hyper", "hyper-util", "iota-auth", @@ -5504,7 +5495,7 @@ dependencies = [ "futures", "futures-util", "hex", - "hkdf 0.12.4", + "hkdf", "hyper", "hyper-util", "iota-logger", diff --git a/client/Cargo.toml b/client/Cargo.toml index bdf08ad..99c3a96 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -23,7 +23,7 @@ dashmap = "6.1.0" futures = "*" futures-util = "*" hex = "*" -hkdf = "0.12.4" +hkdf = "0.13.0" hyper = { version = "1.8.1", features = [ "capi", "client", diff --git a/communities/Cargo.toml b/communities/Cargo.toml index 812ff55..2fd1d7d 100644 --- a/communities/Cargo.toml +++ b/communities/Cargo.toml @@ -22,7 +22,7 @@ dashmap = "6.1.0" futures = "*" futures-util = "*" hex = "*" -hkdf = "0.12.4" +hkdf = "0.13.0" hyper = { version = "1.8.1", features = [ "capi", "client", diff --git a/iota-auth/Cargo.toml b/iota-auth/Cargo.toml index 5a9ad09..a9d47e8 100644 --- a/iota-auth/Cargo.toml +++ b/iota-auth/Cargo.toml @@ -19,7 +19,7 @@ dashmap = "6.1.0" futures = "*" futures-util = "*" hex = "*" -hkdf = "0.12.4" +hkdf = "0.13.0" hyper = { version = "1.8.1", features = [ "capi", "client", diff --git a/iota-cli/Cargo.toml b/iota-cli/Cargo.toml index 54666e1..3397b44 100644 --- a/iota-cli/Cargo.toml +++ b/iota-cli/Cargo.toml @@ -37,7 +37,7 @@ dashmap = "6.1.0" futures = "*" futures-util = "*" hex = "*" -hkdf = "0.12.4" +hkdf = "0.13.0" hyper = { version = "1.8.1", features = [ "capi", "client", diff --git a/iota-storage/Cargo.toml b/iota-storage/Cargo.toml index 50f7cc6..eb8b65d 100644 --- a/iota-storage/Cargo.toml +++ b/iota-storage/Cargo.toml @@ -14,7 +14,7 @@ mtp = { git = "https://git.methanium.net/Methanium/mtp.git" } aes-gcm = "0.10.3" base64 = "0.22.1" hex = "*" -hkdf = "0.12.4" +hkdf = "0.13.0" json = "*" arc-swap = "1" once_cell = "1.21.3" diff --git a/iota-updater/Cargo.toml b/iota-updater/Cargo.toml index d089180..ca4feab 100644 --- a/iota-updater/Cargo.toml +++ b/iota-updater/Cargo.toml @@ -23,7 +23,7 @@ base64 = "0.22.1" rand_core = { version = "0.6", features = ["getrandom", "std"] } sha2 = "0.10.9" x448 = { version = "*" } -hkdf = "0.12.4" +hkdf = "0.13.0" once_cell = "1.21.3" hex = "*" serde = "1.0.228" diff --git a/other-iota/Cargo.toml b/other-iota/Cargo.toml index 641de58..7a8f1aa 100644 --- a/other-iota/Cargo.toml +++ b/other-iota/Cargo.toml @@ -22,7 +22,7 @@ dashmap = "6.1.0" futures = "*" futures-util = "*" hex = "*" -hkdf = "0.12.4" +hkdf = "0.13.0" hyper = { version = "1.8.1", features = [ "capi", "client", diff --git a/web-ui/Cargo.toml b/web-ui/Cargo.toml index a6fbba1..eb4b398 100644 --- a/web-ui/Cargo.toml +++ b/web-ui/Cargo.toml @@ -22,7 +22,7 @@ dashmap = "6.1.0" futures = "*" futures-util = "*" hex = "*" -hkdf = "0.12.4" +hkdf = "0.13.0" hyper = { version = "1.8.1", features = [ "capi", "client",