[package]
edition = "2021"
rust-version = "1.63"
name = "fpzip-rs"
version = "0.1.0"
authors = ["Nick B. Nassiri"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lossless and lossy floating-point compression for multi-dimensional arrays"
documentation = "https://docs.rs/fpzip-rs"
readme = "README.md"
keywords = [
"compression",
"fpzip",
"floating-point",
"scientific-computing",
"lossless",
]
categories = [
"compression",
"science",
"algorithms",
]
license = "MIT"
repository = "https://github.com/nickna/FPZip.RS"
[features]
alloc = []
default = ["std"]
rayon = [
"dep:rayon",
"std",
]
simd = ["std"]
std = [
"alloc",
"thiserror/std",
]
[lib]
name = "fpzip_rs"
path = "src/lib.rs"
[[test]]
name = "compression_ratio"
path = "tests/compression_ratio.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "prng"
path = "tests/prng.rs"
[[bench]]
name = "compress"
path = "benches/compress.rs"
harness = false
[dependencies.rayon]
version = "1"
optional = true
[dependencies.thiserror]
version = "2"
default-features = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]