diff --git a/Cargo.lock b/Cargo.lock index c5a8fdee..f8dd6fa3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -399,6 +399,17 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" +[[package]] +name = "chacha20" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" +dependencies = [ + "cfg-if 1.0.4", + "cpufeatures", + "rand_core 0.10.1", +] + [[package]] name = "charset" version = "0.1.5" @@ -505,6 +516,15 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" +[[package]] +name = "cpufeatures" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" +dependencies = [ + "libc", +] + [[package]] name = "crc32fast" version = "1.5.0" @@ -1021,6 +1041,7 @@ dependencies = [ "cfg-if 1.0.4", "libc", "r-efi 6.0.0", + "rand_core 0.10.1", ] [[package]] @@ -1280,7 +1301,7 @@ dependencies = [ "log-mdc", "mock_instant", "parking_lot", - "rand", + "rand 0.9.5", "serde", "serde-value", "serde_json", @@ -1933,6 +1954,17 @@ dependencies = [ "rand_core 0.9.5", ] +[[package]] +name = "rand" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" +dependencies = [ + "chacha20", + "getrandom 0.4.3", + "rand_core 0.10.1", +] + [[package]] name = "rand_chacha" version = "0.9.0" @@ -1961,6 +1993,12 @@ dependencies = [ "getrandom 0.3.4", ] +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + [[package]] name = "redox_syscall" version = "0.5.18" @@ -2061,7 +2099,7 @@ dependencies = [ "openssl", "pastey", "procfs", - "rand", + "rand 0.10.2", "ring", "serde", "serde-xml-rs", diff --git a/Cargo.toml b/Cargo.toml index bfe9a5f3..55034cce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ num-derive = "0.4.2" serde = { version = "1.0", features = ["derive"] } serde_repr="0.1" byteorder = { version = "1.3", features = ["i128"] } -rand = "0.9.0" +rand = "0.10.2" chrono = { version = "0.4", features = ["serde"] } enumflags2 = { version = "0.7.7", features = ["serde"] } pastey = "0.2"