fpzip-rs 0.1.0

Lossless and lossy floating-point compression for multi-dimensional arrays
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"]