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
88 changes: 68 additions & 20 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ pyo3 = { version = "0.27.0" }
pyo3-bytes = "0.5"
pyo3-log = "0.13.0"
quote = "1.0.41"
rand = "0.9.0"
rand_distr = "0.5"
rand = "0.10.0"
rand_distr = "0.6"
ratatui = { version = "0.30", default-features = false }
regex = "1.11.0"
regex-automata = "0.4"
Expand Down Expand Up @@ -298,7 +298,7 @@ vortex-tui = { path = "./vortex-tui" }
[workspace.dependencies.getrandom_v03]
features = ["wasm_js"]
package = "getrandom"
version = "0.3.1"
version = "0.4.0"

[workspace.lints.rust]
let_underscore_drop = "deny"
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/random-access-bench/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use anyhow::Result;
use clap::Parser;
use clap::ValueEnum;
use indicatif::ProgressBar;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::rngs::StdRng;
use rand_distr::Distribution;
Expand Down
2 changes: 1 addition & 1 deletion encodings/alp/benches/alp_compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![allow(clippy::unwrap_used)]

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng as _;
use rand::rngs::StdRng;
use vortex_alp::ALPFloat;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fastlanes/benches/bitpacking_take.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![allow(clippy::cast_possible_truncation)]

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::distr::Uniform;
use rand::prelude::StdRng;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fastlanes/benches/compute_between.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#![expect(clippy::unwrap_used)]

use num_traits::NumCast;
use rand::Rng;
use rand::RngExt;
use rand::rngs::StdRng;
use vortex_alp::ALPArray;
use vortex_alp::alp_encode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ fn bytes_per_exception(ptype: PType) -> usize {

#[cfg(feature = "_test-harness")]
pub mod test_harness {
use rand::Rng as _;
use rand::RngExt;
use rand::rngs::StdRng;
use vortex_array::ArrayRef;
use vortex_array::IntoArray;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fastlanes/src/bitpacking/compute/take.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ fn take_primitive<T: NativePType + BitPacking, I: IntegerPType>(
#[cfg(test)]
#[allow(clippy::cast_possible_truncation)]
mod test {
use rand::Rng;
use rand::RngExt;
use rand::distr::Uniform;
use rand::rng;
use rstest::rstest;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fsst/benches/fsst_compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use std::sync::LazyLock;

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::rngs::StdRng;
use vortex_array::IntoArray;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fsst/src/canonical.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub(crate) fn fsst_decode_views(
mod tests {
use std::sync::LazyLock;

use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::prelude::StdRng;
use vortex_array::ArrayRef;
Expand Down
2 changes: 1 addition & 1 deletion encodings/fsst/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#![allow(clippy::unwrap_used)]

use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::prelude::StdRng;
use vortex_array::ArrayRef;
Expand Down
2 changes: 1 addition & 1 deletion encodings/runend/benches/run_end_null_count.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![allow(clippy::unwrap_used)]

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::rngs::StdRng;
use vortex_array::DynArray;
Expand Down
2 changes: 1 addition & 1 deletion vortex-array/benches/chunk_array_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use std::sync::LazyLock;

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::prelude::StdRng;
use vortex_array::ArrayRef;
Expand Down
2 changes: 1 addition & 1 deletion vortex-array/benches/compare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![allow(clippy::unwrap_used)]

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::distr::Uniform;
use rand::prelude::StdRng;
Expand Down
2 changes: 1 addition & 1 deletion vortex-array/benches/dict_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![allow(clippy::unwrap_used)]

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::rngs::StdRng;
use vortex_array::IntoArray;
Expand Down
2 changes: 1 addition & 1 deletion vortex-array/benches/dict_unreferenced_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![allow(clippy::unwrap_used)]

use divan::Bencher;
use rand::Rng;
use rand::RngExt;
use rand::SeedableRng;
use rand::rngs::StdRng;
use vortex_array::IntoArray;
Expand Down
Loading
Loading