hdf5-reader 0.1.4

Pure-Rust, read-only HDF5 file decoder with no C dependencies
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.77"
name = "hdf5-reader"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust, read-only HDF5 file decoder with no C dependencies"
homepage = "https://github.com/roteiro-gis/netcdf-rust"
documentation = "https://docs.rs/hdf5-reader"
readme = "README.md"
keywords = [
    "hdf5",
    "decoder",
    "scientific-data",
    "read-only",
]
categories = [
    "science",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/roteiro-gis/netcdf-rust"

[features]
default = [
    "rayon",
    "lz4",
]
lz4 = ["dep:lz4_flex"]
rayon = ["dep:rayon"]

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

[[test]]
name = "corruption"
path = "tests/corruption.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "proptest_tests"
path = "tests/proptest_tests.rs"

[dependencies.flate2]
version = "1"
features = ["rust_backend"]
default-features = false

[dependencies.lru]
version = "0.16.3"

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

[dependencies.memmap2]
version = "0.9"

[dependencies.ndarray]
version = "0.17"

[dependencies.parking_lot]
version = "0.12"

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

[dependencies.smallvec]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.tempfile]
version = "3"