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
11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,16 @@ resolver = "2"
[workspace.dependencies]
roaring = { path = "roaring" }

bytemuck = "1.21.0"
bytemuck = "1.25.2"
byteorder = "1.5.0"
criterion = "0.5"
git2 = { version = "0.20", default-features = false }
git2 = { version = "0.21", default-features = false }
indicatif = "0.17"
itertools = "0.14"
once_cell = "1.20"
itertools = "0.15"
postcard = { version = "1.1", features = [ "alloc" ] }
proptest = "1.6.0"
serde = "1.0.217"
serde_json = "1.0.138"
serde = "1.0.229"
serde_json = "1.0.145"
zip = { version = "0.6", default-features = false }

[profile.test]
Expand Down
1 change: 0 additions & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ criterion = { workspace = true, features = ["html_reports"] }
git2 = { workspace = true, default-features = false, features = ["https", "vendored-openssl"] }
indicatif = { workspace = true }
itertools = { workspace = true }
once_cell = { workspace = true }
zip = { workspace = true, default-features = false, features = ["deflate"] }

[features]
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/benches/datasets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use std::io::BufReader;
use std::path::{Path, PathBuf};

use git2::FetchOptions;
use once_cell::sync::OnceCell as SyncOnceCell;
use std::sync::OnceLock;

use roaring::RoaringBitmap;

static INSTANCE: SyncOnceCell<Vec<Dataset>> = SyncOnceCell::new();
static INSTANCE: OnceLock<Vec<Dataset>> = OnceLock::new();

pub struct Datasets;

Expand Down Expand Up @@ -69,7 +69,7 @@ fn init_datasets() -> Result<PathBuf, Box<dyn std::error::Error>> {

// Setup progress callbacks

let pb_cell = once_cell::unsync::OnceCell::new();
let pb_cell = std::cell::OnceCell::new();
let mut cb = git2::RemoteCallbacks::new();

cb.transfer_progress(|progress| {
Expand Down
2 changes: 1 addition & 1 deletion roaring/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roaring"
version = "0.11.4"
version = "0.11.5"
# When changing this value don't forget to change the MSRV test in `.github/workflows/test.yml`!!
rust-version = "1.90.0"
authors = ["Wim Looman <wim@nemo157.com>", "Kerollmops <kero@meilisearch.com>"]
Expand Down
Loading