diff --git a/orch/Cargo.lock b/orch/Cargo.lock index bf61914..03cb7dd 100644 --- a/orch/Cargo.lock +++ b/orch/Cargo.lock @@ -763,7 +763,6 @@ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer 0.10.4", "crypto-common 0.1.7", - "subtle", ] [[package]] @@ -1180,16 +1179,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018" dependencies = [ - "hmac 0.13.0", -] - -[[package]] -name = "hmac" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" -dependencies = [ - "digest 0.10.7", + "hmac", ] [[package]] @@ -1886,7 +1876,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629" dependencies = [ "digest 0.11.3", - "hmac 0.13.0", + "hmac", ] [[package]] @@ -2006,7 +1996,7 @@ dependencies = [ "byteorder", "bytes", "fallible-iterator 0.2.0", - "hmac 0.13.0", + "hmac", "md-5", "memchr", "rand 0.10.2", @@ -2283,7 +2273,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5236ce872cac07e0fb3969b0cbf468c7d2f37d432f1b627dcb7b8d34563fb0c3" dependencies = [ - "hmac 0.13.0", + "hmac", "subtle", ] @@ -2346,7 +2336,7 @@ dependencies = [ "getrandom 0.4.3", "ghash", "hex-literal", - "hmac 0.13.0", + "hmac", "inout", "internal-russh-num-bigint", "keccak", @@ -2870,7 +2860,7 @@ dependencies = [ "ctutils", "ed25519-dalek", "hex", - "hmac 0.13.0", + "hmac", "p256", "p384", "p521", @@ -3033,7 +3023,7 @@ dependencies = [ "clap", "crossterm", "futures-util", - "hmac 0.12.1", + "hmac", "ipnet", "libc", "reqwest", diff --git a/orch/Cargo.toml b/orch/Cargo.toml index 440d7c3..0dd247f 100644 --- a/orch/Cargo.toml +++ b/orch/Cargo.toml @@ -13,7 +13,7 @@ axum = { version = "0.8", features = ["macros", "ws"] } base64 = "0.22" chrono = { version = "0.4", features = ["serde"] } futures-util = "0.3" -hmac = "0.12" +hmac = "0.13" # MIT OR Apache-2.0 licensed — validated IP network parser ipnet = "2" rusqlite = { version = "0.32", features = ["bundled"] }