Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix segfault in blosc2
Browse files Browse the repository at this point in the history
milesgranger committed Mar 20, 2024
1 parent 173a2e2 commit 6b1e3b4
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions 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 libcramjam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ brotli = { version = "^3", default-features = false, features = ["std", "ffi-api
bzip2 = "^0.4"
lz4 = "^1"
flate2 = "^1"
blosc2-rs = "0.2.1+2.13.2"
blosc2-rs = { version = "0.2.2+2.13.2" }
libdeflater = "^1"
zstd = "0.13.0"
libc = { version = "0.2", optional = true }
2 changes: 1 addition & 1 deletion libcramjam/src/lib.rs
Original file line number Diff line number Diff line change
@@ -83,7 +83,7 @@ mod tests {
test_variant!(deflate, compressed_len = 157174, None);
test_variant!(zstd, compressed_len = 4990, None);
test_variant!(lz4, compressed_len = 303278, None);
test_variant!(blosc2, compressed_len = 2_403_572);
test_variant!(blosc2, compressed_len = 791_923);

#[allow(non_upper_case_globals)]
const format: Option<crate::xz::Format> = None;

0 comments on commit 6b1e3b4

Please sign in to comment.