hdf5-format 0.1.0

Pure Rust HDF5 on-disk format codec (encode/decode, no I/O)
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"
name = "hdf5-format"
version = "0.1.0"
authors = ["Sang Woo Kim"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust HDF5 on-disk format codec (encode/decode, no I/O)"
readme = false
license = "MIT"
repository = "https://github.com/physwkim/hdf5-rs"

[features]
all_filters = [
    "deflate",
    "lz4",
    "bzip2_filter",
    "blosc",
    "zstd",
]
blosc = ["lz4_flex"]
bzip2_filter = ["bzip2"]
default = ["deflate"]
deflate = ["flate2"]
lz4 = ["lz4_flex"]
parallel = ["rayon"]
zstd = ["rust-zstd"]

[lib]
name = "hdf5_format"
path = "src/lib.rs"

[dependencies.bzip2]
version = "0.5"
optional = true

[dependencies.flate2]
version = "1"
optional = true

[dependencies.lz4_flex]
version = "0.11"
optional = true

[dependencies.rayon]
version = "1"
optional = true

[dependencies.rust-zstd]
version = "0.1"
optional = true
default-features = false