diff --git a/Cargo.lock b/Cargo.lock index 9ecf891..5d77110 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ dependencies = [ "libc", "oximeter", "propolis", - "rand 0.9.3", + "rand 0.10.1", "schemars 0.8.22", "semver 1.0.28", "serde", @@ -716,6 +716,17 @@ dependencies = [ "cpufeatures 0.2.17", ] +[[package]] +name = "chacha20" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "rand_core 0.10.1", +] + [[package]] name = "chacha20poly1305" version = "0.10.1" @@ -723,7 +734,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" dependencies = [ "aead", - "chacha20", + "chacha20 0.9.1", "cipher", "poly1305", "zeroize", @@ -955,7 +966,7 @@ dependencies = [ "anyhow", "chrono", "oxnet", - "rand 0.9.3", + "rand 0.10.1", "schemars 0.8.22", "serde", "serde_json", @@ -1679,7 +1690,7 @@ dependencies = [ "oximeter", "oximeter-producer", "oxnet", - "rand 0.9.3", + "rand 0.10.1", "regex", "regress 0.11.1", "reqwest 0.12.23", @@ -1738,7 +1749,7 @@ dependencies = [ "pcap", "pretty_assertions", "progenitor 0.13.0", - "rand 0.9.3", + "rand 0.10.1", "regress 0.11.1", "reqwest 0.13.2", "schemars 0.8.22", @@ -2535,6 +2546,7 @@ dependencies = [ "cfg-if", "libc", "r-efi 6.0.0", + "rand_core 0.10.1", "wasip2", "wasip3", ] @@ -4975,7 +4987,7 @@ dependencies = [ "bytes", "common 0.1.0", "hex-literal", - "rand 0.9.3", + "rand 0.10.1", "schemars 0.8.22", "serde", "serde_json", @@ -5858,6 +5870,17 @@ dependencies = [ "rand_core 0.9.3", ] +[[package]] +name = "rand" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" +dependencies = [ + "chacha20 0.10.0", + "getrandom 0.4.2", + "rand_core 0.10.1", +] + [[package]] name = "rand_chacha" version = "0.3.1" @@ -5896,6 +5919,12 @@ dependencies = [ "getrandom 0.3.3", ] +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + [[package]] name = "rand_xorshift" version = "0.4.0" @@ -7515,7 +7544,7 @@ dependencies = [ "oxnet", "packet", "pcap", - "rand 0.9.3", + "rand 0.10.1", "schemars 0.8.22", "serde", "signal-hook 0.4.4", diff --git a/Cargo.toml b/Cargo.toml index 1f29d06..e7e424a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,7 +90,7 @@ parking_lot = "0.12" pretty_assertions = "1.4" proc-macro2 = "1.0" progenitor = "0.13" -rand = "0.9" +rand = "0.10" regex = "1.12" regress = "0.11" reqwest = { version = "0.13", default-features = false }