Skip to content

Commit c57d06e

Browse files
committed
chore(deps): bump rand from 0.9.2 to 0.10.0 in /native
1 parent eb43699 commit c57d06e

4 files changed

Lines changed: 196 additions & 8 deletions

File tree

native/Cargo.lock

Lines changed: 193 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

native/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ chrono = { version = "0.4", default-features = false, features = ["clock"] }
4747
chrono-tz = { version = "0.10" }
4848
futures = "0.3.28"
4949
num = "0.4"
50-
rand = "0.9"
50+
rand = "0.10"
5151
regex = "1.12.3"
5252
thiserror = "2"
5353
object_store = { version = "0.12.3", features = ["gcp", "azure", "aws", "http"] }

native/core/benches/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use arrow::{
2323
use rand::{
2424
distr::{Distribution, StandardUniform},
2525
rngs::StdRng,
26-
Rng, SeedableRng,
26+
RngExt, SeedableRng,
2727
};
2828
use std::sync::Arc;
2929

native/core/src/parquet/util/test_common/rand_gen.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
use rand::{
1919
distr::{uniform::SampleUniform, Distribution, StandardUniform},
20-
rng, Rng,
20+
rng, RngExt,
2121
};
2222

2323
pub fn random_bytes(n: usize) -> Vec<u8> {

0 commit comments

Comments
 (0)