Compare commits

...
Author SHA1 Message Date
a83b5504d3 Update Rust crate rand to 0.10
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
2026-08-19 00:01:48 +03:00
9 changed files with 15 additions and 56 deletions

55
Cargo.lock generated
View file

@ -829,7 +829,7 @@ dependencies = [
"once_cell", "once_cell",
"open", "open",
"pnet", "pnet",
"rand 0.8.7", "rand 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"ratatui", "ratatui",
"reqwest", "reqwest",
@ -2305,7 +2305,7 @@ dependencies = [
"once_cell", "once_cell",
"open", "open",
"pnet", "pnet",
"rand 0.8.7", "rand 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"ratatui", "ratatui",
"reqwest", "reqwest",
@ -2360,7 +2360,7 @@ dependencies = [
"once_cell", "once_cell",
"open", "open",
"pnet", "pnet",
"rand 0.8.7", "rand 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"ratatui", "ratatui",
"reqwest", "reqwest",
@ -2539,7 +2539,7 @@ dependencies = [
"mtp", "mtp",
"once_cell", "once_cell",
"r2d2", "r2d2",
"rand 0.8.7", "rand 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"ratatui", "ratatui",
"reqwest", "reqwest",
@ -3391,7 +3391,7 @@ dependencies = [
"iota-util", "iota-util",
"json", "json",
"mtp", "mtp",
"rand 0.8.7", "rand 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"reqwest", "reqwest",
"sha2 0.11.0", "sha2 0.11.0",
@ -3510,7 +3510,7 @@ dependencies = [
"once_cell", "once_cell",
"open", "open",
"pnet", "pnet",
"rand 0.8.7", "rand 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"ratatui", "ratatui",
"reqwest", "reqwest",
@ -3921,15 +3921,6 @@ version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efca4c95a19a79d1c98f791f10aebd5c1363b473244630bb7dbde1dc98455a24" checksum = "efca4c95a19a79d1c98f791f10aebd5c1363b473244630bb7dbde1dc98455a24"
[[package]]
name = "ppv-lite86"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
dependencies = [
"zerocopy",
]
[[package]] [[package]]
name = "proc-macro2" name = "proc-macro2"
version = "1.0.107" version = "1.0.107"
@ -4037,8 +4028,6 @@ version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
dependencies = [ dependencies = [
"libc",
"rand_chacha",
"rand_core 0.6.4", "rand_core 0.6.4",
] ]
@ -4053,16 +4042,6 @@ dependencies = [
"rand_core 0.10.1", "rand_core 0.10.1",
] ]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core 0.6.4",
]
[[package]] [[package]]
name = "rand_core" name = "rand_core"
version = "0.5.1" version = "0.5.1"
@ -5634,7 +5613,7 @@ dependencies = [
"once_cell", "once_cell",
"open", "open",
"pnet", "pnet",
"rand 0.8.7", "rand 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"ratatui", "ratatui",
"reqwest", "reqwest",
@ -6094,26 +6073,6 @@ dependencies = [
"synstructure", "synstructure",
] ]
[[package]]
name = "zerocopy"
version = "0.8.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.8.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.119",
]
[[package]] [[package]]
name = "zerofrom" name = "zerofrom"
version = "0.1.8" version = "0.1.8"

View file

@ -39,7 +39,7 @@ lazy_static = "1.5.0"
once_cell = "1.21.3" once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"

View file

@ -38,7 +38,7 @@ lazy_static = "1.5.0"
once_cell = "1.21.3" once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"

View file

@ -35,7 +35,7 @@ lazy_static = "1.5.0"
once_cell = "1.21.3" once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"

View file

@ -53,7 +53,7 @@ lazy_static = "1.5.0"
once_cell = "1.21.3" once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"

View file

@ -23,7 +23,7 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
serde_yaml = "0.9" serde_yaml = "0.9"
thiserror = "2" thiserror = "2"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"

View file

@ -25,7 +25,7 @@ tokio-util = { version = "0.7", features = ["rt"] }
uuid = { version = "*", features = ["v4"] } uuid = { version = "*", features = ["v4"] }
base64 = "0.22.1" base64 = "0.22.1"
hex = "*" hex = "*"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
sha2 = "0.11.0" sha2 = "0.11.0"
x448 = { version = "*" } x448 = { version = "*" }

View file

@ -38,7 +38,7 @@ lazy_static = "1.5.0"
once_cell = "1.21.3" once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"

View file

@ -38,7 +38,7 @@ lazy_static = "1.5.0"
once_cell = "1.21.3" once_cell = "1.21.3"
open = "5.3.3" open = "5.3.3"
pnet = "0.35.0" pnet = "0.35.0"
rand = "0.8" rand = "0.10"
rand_core = { version = "0.6", features = ["getrandom", "std"] } rand_core = { version = "0.6", features = ["getrandom", "std"] }
ratatui = "0.30.0" ratatui = "0.30.0"
reqwest = "0.13.2" reqwest = "0.13.2"