From 75bcbc498a9b6acc60a1540f5c0780486e12742e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 10:40:03 +0000 Subject: [PATCH] chore(deps): bump rand from 0.9.4 to 0.10.1 Bumps [rand](https://github.com/rust-random/rand) from 0.9.4 to 0.10.1. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.9.4...0.10.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 36 +++++++++++++++--------------- arrow-array/Cargo.toml | 2 +- arrow-avro/Cargo.toml | 4 ++-- arrow-buffer/Cargo.toml | 2 +- arrow-cast/Cargo.toml | 2 +- arrow-json/Cargo.toml | 2 +- arrow-ord/Cargo.toml | 2 +- arrow-row/Cargo.toml | 2 +- arrow-select/Cargo.toml | 2 +- arrow/Cargo.toml | 4 ++-- parquet-variant-compute/Cargo.toml | 2 +- parquet-variant/Cargo.toml | 2 +- parquet/Cargo.toml | 2 +- 13 files changed, 32 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d728f8a9a10c..71ef9eaefee5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,7 +139,7 @@ dependencies = [ "miniz_oxide", "num-bigint 0.4.7", "quad-rand", - "rand 0.9.4", + "rand 0.9.5", "regex-lite", "serde", "serde_bytes", @@ -191,7 +191,7 @@ dependencies = [ "criterion", "half", "memmap2", - "rand 0.9.4", + "rand 0.10.1", "serde", ] @@ -226,7 +226,7 @@ dependencies = [ "num-complex", "num-integer", "num-traits", - "rand 0.9.4", + "rand 0.10.1", ] [[package]] @@ -254,7 +254,7 @@ dependencies = [ "num-bigint 0.5.1", "object_store", "once_cell", - "rand 0.9.4", + "rand 0.10.1", "serde", "serde_json", "sha2", @@ -275,7 +275,7 @@ dependencies = [ "half", "num-bigint 0.5.1", "num-traits", - "rand 0.9.4", + "rand 0.10.1", ] [[package]] @@ -297,7 +297,7 @@ dependencies = [ "insta", "lexical-core", "num-traits", - "rand 0.9.4", + "rand 0.10.1", "ryu", ] @@ -445,7 +445,7 @@ dependencies = [ "lexical-core", "memchr", "num-traits", - "rand 0.9.4", + "rand 0.10.1", "ryu", "serde", "serde_core", @@ -464,7 +464,7 @@ dependencies = [ "arrow-schema", "arrow-select", "half", - "rand 0.9.4", + "rand 0.10.1", ] [[package]] @@ -489,7 +489,7 @@ dependencies = [ "arrow-schema", "arrow-select", "half", - "rand 0.9.4", + "rand 0.10.1", ] [[package]] @@ -515,7 +515,7 @@ dependencies = [ "arrow-data", "arrow-schema", "num-traits", - "rand 0.9.4", + "rand 0.10.1", ] [[package]] @@ -1517,7 +1517,7 @@ dependencies = [ "cfg-if", "crunchy", "num-traits", - "rand 0.9.4", + "rand 0.9.5", "rand_distr", "zerocopy", ] @@ -2360,7 +2360,7 @@ dependencies = [ "parquet-variant", "parquet-variant-compute", "parquet-variant-json", - "rand 0.9.4", + "rand 0.10.1", "ring", "seq-macro", "serde", @@ -2397,7 +2397,7 @@ dependencies = [ "half", "indexmap", "num-traits", - "rand 0.9.4", + "rand 0.10.1", "simdutf8", "uuid", ] @@ -2414,7 +2414,7 @@ dependencies = [ "indexmap", "parquet-variant", "parquet-variant-json", - "rand 0.9.4", + "rand 0.10.1", "serde_json", "uuid", ] @@ -2737,7 +2737,7 @@ dependencies = [ "bytes", "getrandom 0.3.4", "lru-slab", - "rand 0.9.4", + "rand 0.9.5", "ring", "rustc-hash", "rustls", @@ -2786,9 +2786,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" [[package]] name = "rand" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" +checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41" dependencies = [ "rand_chacha", "rand_core 0.9.5", @@ -2837,7 +2837,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463" dependencies = [ "num-traits", - "rand 0.9.4", + "rand 0.9.5", ] [[package]] diff --git a/arrow-array/Cargo.toml b/arrow-array/Cargo.toml index 4ec358fe85da..c59c4fe4f2b4 100644 --- a/arrow-array/Cargo.toml +++ b/arrow-array/Cargo.toml @@ -74,7 +74,7 @@ force_validate = [] pool = ["arrow-buffer/pool", "arrow-data/pool"] [dev-dependencies] -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] } criterion = { workspace = true, default-features = false } [[bench]] diff --git a/arrow-avro/Cargo.toml b/arrow-avro/Cargo.toml index 0cc5af701055..4bf84787dc40 100644 --- a/arrow-avro/Cargo.toml +++ b/arrow-avro/Cargo.toml @@ -73,7 +73,7 @@ crc = { version = "3.0", optional = true } strum_macros = "0.28" uuid = "1.17" indexmap = "2.10" -rand = "0.9" +rand = "0.10" md5 = { version = "0.8", optional = true } sha2 = { version = "0.11", optional = true } tokio = { version = "1.0", optional = true, default-features = false, features = ["macros", "rt", "io-util"] } @@ -81,7 +81,7 @@ tokio = { version = "1.0", optional = true, default-features = false, features = [dev-dependencies] arrow-data = { workspace = true } bytes = { version = "1.11.0", default-features = false, features = ["std"] } -rand = { version = "0.9.1", default-features = false, features = [ +rand = { version = "0.10.1", default-features = false, features = [ "std", "std_rng", "thread_rng", diff --git a/arrow-buffer/Cargo.toml b/arrow-buffer/Cargo.toml index 834995eaed71..b1c48df48200 100644 --- a/arrow-buffer/Cargo.toml +++ b/arrow-buffer/Cargo.toml @@ -47,7 +47,7 @@ half = { version = "2.1", default-features = false } [dev-dependencies] criterion = { workspace = true, default-features = false } -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] } [[bench]] name = "bit_mask" diff --git a/arrow-cast/Cargo.toml b/arrow-cast/Cargo.toml index 81649353d182..546d3817712b 100644 --- a/arrow-cast/Cargo.toml +++ b/arrow-cast/Cargo.toml @@ -59,7 +59,7 @@ ryu = "1.0.16" criterion = { workspace = true, default-features = false } half = { version = "2.1", default-features = false } insta = { workspace = true } -rand = "0.9" +rand = "0.10" [[bench]] name = "parse_timestamp" diff --git a/arrow-json/Cargo.toml b/arrow-json/Cargo.toml index d65f587e0c6a..4f147f572b3d 100644 --- a/arrow-json/Cargo.toml +++ b/arrow-json/Cargo.toml @@ -61,7 +61,7 @@ futures = "0.3" tokio = { version = "1.27", default-features = false, features = ["io-util"] } bytes = "1.4" criterion = { workspace = true, default-features = false } -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] } arbitrary = { version = "1.4.2", features = ["derive"] } [[bench]] diff --git a/arrow-ord/Cargo.toml b/arrow-ord/Cargo.toml index ae76841bda39..5c4a30994b7d 100644 --- a/arrow-ord/Cargo.toml +++ b/arrow-ord/Cargo.toml @@ -44,4 +44,4 @@ arrow-select = { workspace = true } [dev-dependencies] half = { version = "2.1", default-features = false, features = ["num-traits"] } -rand = { version = "0.9", default-features = false, features = ["std", "std_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng"] } diff --git a/arrow-row/Cargo.toml b/arrow-row/Cargo.toml index 8293093ce486..d61329bc3c62 100644 --- a/arrow-row/Cargo.toml +++ b/arrow-row/Cargo.toml @@ -47,4 +47,4 @@ half = { version = "2.1", default-features = false } arrow-cast = { workspace = true } arrow-ord = { workspace = true } arrow-select = { workspace = true } -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] } diff --git a/arrow-select/Cargo.toml b/arrow-select/Cargo.toml index 443094e6c986..a8d8056647fa 100644 --- a/arrow-select/Cargo.toml +++ b/arrow-select/Cargo.toml @@ -44,4 +44,4 @@ num-traits = { version = "0.2.19", default-features = false, features = ["std"] ahash = { version = "0.8", default-features = false} [dev-dependencies] -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] } diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml index 2be4cfd1f104..d92e759236e8 100644 --- a/arrow/Cargo.toml +++ b/arrow/Cargo.toml @@ -54,7 +54,7 @@ arrow-schema = { workspace = true } arrow-select = { workspace = true } arrow-string = { workspace = true } -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"], optional = true } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"], optional = true } half = { version = "2.1", default-features = false, features = ["rand_distr"], optional = true } [package.metadata.docs.rs] @@ -89,7 +89,7 @@ pool = ["arrow-array/pool"] chrono = { workspace = true } criterion = { workspace = true, default-features = false } half = { version = "2.1", default-features = false, features = ["rand_distr"] } -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] } serde = { version = "1.0", default-features = false, features = ["derive"] } # used in examples memmap2 = "0.9.3" diff --git a/parquet-variant-compute/Cargo.toml b/parquet-variant-compute/Cargo.toml index bcfb36b8710c..b4355f5a43fe 100644 --- a/parquet-variant-compute/Cargo.toml +++ b/parquet-variant-compute/Cargo.toml @@ -47,7 +47,7 @@ name = "parquet_variant_compute" bench = false [dev-dependencies] -rand = "0.9.1" +rand = "0.10.1" criterion = { workspace = true, default-features = false } arrow = { workspace = true, features = ["test_utils"] } diff --git a/parquet-variant/Cargo.toml b/parquet-variant/Cargo.toml index c42a060794f2..1fd548af34e3 100644 --- a/parquet-variant/Cargo.toml +++ b/parquet-variant/Cargo.toml @@ -48,7 +48,7 @@ bench = false [dev-dependencies] criterion = { workspace = true, default-features = false } -rand = { version = "0.9", default-features = false, features = [ +rand = { version = "0.10", default-features = false, features = [ "std", "std_rng", "thread_rng", diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml index 1d44c585210b..dae961ca2a56 100644 --- a/parquet/Cargo.toml +++ b/parquet/Cargo.toml @@ -90,7 +90,7 @@ serde_json = { version = "1.0", features = ["std"], default-features = false } arrow = { workspace = true, features = ["ipc", "test_utils", "prettyprint", "json"] } arrow-cast = { workspace = true } tokio = { version = "1.0", default-features = false, features = ["macros", "rt-multi-thread", "io-util", "fs"] } -rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"] } +rand = { version = "0.10", default-features = false, features = ["std", "std_rng", "thread_rng"] } object_store = { workspace = true, features = ["azure", "fs"] } sysinfo = { version = "0.39.6", default-features = false, features = ["system"] }