Patch roaring to use the version supporting intersection on deserialization

This commit is contained in:
Clément Renault 2024-06-05 15:23:26 -04:00
parent 531e3d7d6a
commit ff2e498267
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F
2 changed files with 5 additions and 10 deletions

12
Cargo.lock generated
View File

@ -4377,12 +4377,6 @@ dependencies = [
"winreg",
]
[[package]]
name = "retain_mut"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c31b5c4033f8fdde8700e4657be2c497e7288f01515be52168c631e2e4d4086"
[[package]]
name = "ring"
version = "0.17.8"
@ -4400,13 +4394,11 @@ dependencies = [
[[package]]
name = "roaring"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6106b5cf8587f5834158895e9715a3c6c9716c8aefab57f1f7680917191c7873"
version = "0.10.4"
source = "git+https://github.com/RoaringBitmap/roaring-rs?branch=intersection-with-serialized#4466ae0104ed44a8cf41d187d9359483fe190701"
dependencies = [
"bytemuck",
"byteorder",
"retain_mut",
"serde",
]

View File

@ -64,3 +64,6 @@ opt-level = 3
opt-level = 3
[profile.bench.package.yada]
opt-level = 3
[patch.crates-io]
roaring = { git = "https://github.com/RoaringBitmap/roaring-rs", branch = "intersection-with-serialized" }