Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
198 changes: 193 additions & 5 deletions native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ chrono = { version = "0.4", default-features = false, features = ["clock"] }
chrono-tz = { version = "0.10" }
futures = "0.3.28"
num = "0.4"
rand = "0.9"
rand = "0.10"
regex = "1.12.3"
thiserror = "2"
object_store = { version = "0.12.3", features = ["gcp", "azure", "aws", "http"] }
Expand Down
2 changes: 1 addition & 1 deletion native/core/benches/bit_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

use std::{mem::size_of, time::Duration};

use rand::{rng, Rng};
use rand::{rng, RngExt};

use arrow::buffer::Buffer;
use comet::common::bit::{
Expand Down
2 changes: 1 addition & 1 deletion native/core/benches/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use arrow::{
use rand::{
distr::{Distribution, StandardUniform},
rngs::StdRng,
Rng, SeedableRng,
RngExt, SeedableRng,
};
use std::sync::Arc;

Expand Down
2 changes: 1 addition & 1 deletion native/core/benches/parquet_read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use comet::parquet::util::test_common::page_util::{
};

use perf::FlamegraphProfiler;
use rand::{prelude::StdRng, Rng, SeedableRng};
use rand::{prelude::StdRng, RngExt, SeedableRng};
use zstd::zstd_safe::WriteBuf;

fn bench(c: &mut Criterion) {
Expand Down
2 changes: 1 addition & 1 deletion native/core/src/common/bit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ mod tests {

use rand::{
distr::{Distribution, StandardUniform},
Rng,
RngExt,
};
use std::fmt::Debug;

Expand Down
2 changes: 1 addition & 1 deletion native/core/src/parquet/util/test_common/rand_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

use rand::{
distr::{uniform::SampleUniform, Distribution, StandardUniform},
rng, Rng,
rng, RngExt,
};

pub fn random_bytes(n: usize) -> Vec<u8> {
Expand Down
Loading