diff --git a/Cargo.lock b/Cargo.lock index 1dc7168..a637cbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -962,7 +962,7 @@ dependencies = [ "log", "performance_timing", "postcard", - "rand 0.9.0", + "rand 0.9.3", "rand_core 0.9.2", "serde", "ucode_compiler_dynamic", @@ -1017,7 +1017,7 @@ dependencies = [ "libafl_bolts", "log", "performance_timing", - "rand 0.9.0", + "rand 0.9.3", "rand_isaac", "regex", "reqwest", @@ -1766,7 +1766,7 @@ version = "0.1.0" dependencies = [ "crossterm", "lazy_static", - "rand 0.9.0", + "rand 0.9.3", "ratatui", "regex", "reqwest", @@ -2074,7 +2074,7 @@ name = "performance_timing_macros" version = "0.1.0" dependencies = [ "quote", - "rand 0.9.0", + "rand 0.9.3", "syn 2.0.96", ] @@ -2233,13 +2233,12 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.0" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" +checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166" dependencies = [ "rand_chacha 0.9.0", "rand_core 0.9.2", - "zerocopy 0.8.25", ] [[package]] @@ -4096,7 +4095,7 @@ version = "0.1.0" dependencies = [ "clap", "ctrlc", - "rand 0.9.0", + "rand 0.9.3", ] [[package]] diff --git a/fuzzer_data/Cargo.toml b/fuzzer_data/Cargo.toml index 0564124..da6f0c9 100644 --- a/fuzzer_data/Cargo.toml +++ b/fuzzer_data/Cargo.toml @@ -13,4 +13,4 @@ log = { version = "0.4.26", features = ["serde"] } performance_timing = { path = "../performance_timing" } ucode_compiler_dynamic = { path = "../ucode_compiler_dynamic" } x86_perf_counter = { path = "../x86_perf_counter" } -rand = { version = "0.9.0", features = ["alloc"], default-features = false } \ No newline at end of file +rand = { version = "0.9.3", features = ["alloc"], default-features = false } \ No newline at end of file diff --git a/fuzzer_master/Cargo.toml b/fuzzer_master/Cargo.toml index 1193dc7..b1f2cea 100644 --- a/fuzzer_master/Cargo.toml +++ b/fuzzer_master/Cargo.toml @@ -12,7 +12,7 @@ tokio = { version = "1.43.1", features = ["full"] } fuzzer_data = { path = "../fuzzer_data" } log = "0.4.25" env_logger = "0.11.6" -rand = "0.9.0" +rand = "0.9.3" serde = { version = "1.0.218", features = ["derive"] } itertools = "0.14.0" lazy_static = "1.5.0" diff --git a/literature_search/Cargo.toml b/literature_search/Cargo.toml index 23ad1fc..c59c812 100644 --- a/literature_search/Cargo.toml +++ b/literature_search/Cargo.toml @@ -8,7 +8,7 @@ reqwest = { version = "0.12.8", default-features = false, features = ["http2", serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" tokio = { version = "1.43.1", features = ["rt", "rt-multi-thread", "macros"] } -rand = "0.9.0" +rand = "0.9.3" lazy_static = "1.5.0" ratatui = "0.28.1" crossterm = "0.28.1" diff --git a/performance_timing_macros/Cargo.toml b/performance_timing_macros/Cargo.toml index 816f8d4..0ae68ad 100644 --- a/performance_timing_macros/Cargo.toml +++ b/performance_timing_macros/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] syn = { version = "2.0.96", features = ["full"] } quote = "1.0.38" -rand = "0.9.0" +rand = "0.9.3" [lib] proc-macro = true diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index b2d55ab..cd8c65f 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -7,4 +7,4 @@ description = "A build and test assist program" [dependencies] clap = { version = "4.5.26", features = ["derive"] } ctrlc = "3.4.5" -rand = "0.9.0" +rand = "0.9.3"