Files
clawhdf5/crates/clawhdf5-filters/Cargo.toml
T
osobhandClaude Fable 5.1 4aa3c5a1ca chore(release): v2.4.0
Bump all workspace crates, the node package and pyproject to 2.4.0, finalize
the changelog and add upgrade notes for the search behaviour changes.

Co-Authored-By: Claude Fable 5.1 <[email protected]>
2026-09-19 13:32:47 -07:00

33 lines
764 B
TOML

[package]
name = "clawhdf5-filters"
version = "2.4.0"
edition = "2024"
description = "Filter and compression pipeline for clawhdf5"
license = "MIT"
repository = "https://git.redclaw.dev/quantumclaw/clawhdf5"
readme = "README.md"
keywords = ["hdf5", "compression", "deflate", "filters"]
categories = ["compression", "science"]
[dependencies]
flate2 = { version = "1", default-features = false, features = ["rust_backend"] }
miniz_oxide = "0.8"
[dev-dependencies]
criterion = { workspace = true }
[[bench]]
name = "deflate_bench"
harness = false
[[bench]]
name = "compression_bench"
harness = false
[features]
default = ["fast-deflate"]
fast-deflate = ["flate2/zlib-ng"]
system-zlib = ["flate2/zlib-default"]
zlib-rs = ["flate2/zlib-rs"]
apple-compression = []