Update Rust crate rand to 0.9.2 (#119)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-07-21 00:15:34 +00:00
parent 35ade770be
commit db44835c39
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -1205,9 +1205,9 @@ dependencies = [
[[package]] [[package]]
name = "rand" name = "rand"
version = "0.9.1" version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
dependencies = [ dependencies = [
"rand_chacha", "rand_chacha",
"rand_core", "rand_core",

View File

@@ -19,7 +19,7 @@ serde = { version = "1.0.219", features = ["derive"] }
log = "0.4.27" log = "0.4.27"
zip = { version = "4.3.0", optional = true } zip = { version = "4.3.0", optional = true }
mktemp = { version = "0.5.1", optional = true } mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.1", optional = true } rand = { version = "0.9.2", optional = true }
port_scanner = { version = "0.1.5", optional = true } port_scanner = { version = "0.1.5", optional = true }
thiserror = "2.0.12" thiserror = "2.0.12"