diff --git a/rust/Cargo.lock b/rust/Cargo.lock index fb6b14fc..f6af4ea1 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1090,7 +1090,7 @@ dependencies = [ "hmac", "log", "rand 0.8.5", - "rand_core 0.6.4", + "rand_core 0.10.1", "reqwest", "rmp-serde", "rustls", @@ -2127,6 +2127,12 @@ dependencies = [ "getrandom 0.2.15", ] +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + [[package]] name = "rand_hc" version = "0.2.0" diff --git a/rust/api/Cargo.toml b/rust/api/Cargo.toml index 64c9634b..981f914a 100644 --- a/rust/api/Cargo.toml +++ b/rust/api/Cargo.toml @@ -21,7 +21,7 @@ hex = "0.4.3" log = "0.4" env_logger = "0.11.3" base64 = "0.22.1" -rand_core = "0.6.4" +rand_core = "0.10.1" sha2 = "0.10.6" hmac = "0.12" clap = { version = "4.3", features = ["derive", "env"] }