Skip to content

Commit 4d9aad4

Browse files
committed
Update croaring to 0.6.0
1 parent 4ad6db9 commit 4d9aad4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

croaring/src/bitmap/imp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl Bitmap {
1919
// the version of croaring.
2020
const _: () = assert!(
2121
ffi::ROARING_VERSION_MAJOR == 0
22-
&& ffi::ROARING_VERSION_MINOR == 5
22+
&& ffi::ROARING_VERSION_MINOR == 6
2323
&& ffi::ROARING_VERSION_REVISION == 0
2424
);
2525
ffi::roaring_free(p as *mut _);

croaring/src/bitmap/ops.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ impl Drop for Bitmap {
6767
// Ensure this is still valid every time we update the version of croaring.
6868
const _: () = assert!(
6969
ffi::ROARING_VERSION_MAJOR == 0
70-
&& ffi::ROARING_VERSION_MINOR == 5
70+
&& ffi::ROARING_VERSION_MINOR == 6
7171
&& ffi::ROARING_VERSION_REVISION == 0
7272
);
7373

0 commit comments

Comments
 (0)