rust-hdf5 0.2.0

Pure Rust HDF5 library with full read/write and SWMR support
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 = "rust-hdf5"
version = "0.2.0"
authors = ["Sang Woo Kim"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust HDF5 library with full read/write and SWMR support"
readme = "README.md"
license = "MIT"
repository = "https://github.com/physwkim/rust-hdf5"

[features]
all_filters = [
    "deflate",
    "lz4",
    "bzip2",
    "blosc",
    "zstd",
]
blosc = [
    "lz4_flex",
    "dep:snap",
]
bzip2 = ["dep:bzip2"]
default = ["deflate"]
deflate = ["flate2"]
lz4 = ["lz4_flex"]
mmap = ["memmap2"]
parallel = [
    "rayon",
    "deflate",
]
threadsafe = []
zstd = ["rust-zstd"]

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

[[bench]]
name = "io_bench"
path = "benches/io_bench.rs"
harness = false

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

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

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

[dependencies.memmap2]
version = "0.9"
optional = true

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

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

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

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]