netcdf-reader 0.1.3

Pure-Rust NetCDF-3 classic and NetCDF-4 (HDF5-backed) file reader
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 = "netcdf-reader"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust NetCDF-3 classic and NetCDF-4 (HDF5-backed) file reader"
homepage = "https://github.com/roteiro-gis/netcdf-rust"
documentation = "https://docs.rs/netcdf-reader"
readme = "README.md"
keywords = [
    "netcdf",
    "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]
bench-memory-profile = []
cf = ["dep:chrono"]
default = [
    "netcdf4",
    "rayon",
]
netcdf4 = ["dep:hdf5-reader"]
rayon = [
    "dep:rayon",
    "netcdf4",
    "hdf5-reader/rayon",
]

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
optional = true

[dependencies.hdf5-reader]
version = "0.1.3"
optional = true

[dependencies.memmap2]
version = "0.9"

[dependencies.ndarray]
version = "0.17"

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

[dependencies.thiserror]
version = "2"

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

[dev-dependencies.netcdf]
version = "0.12"
features = ["static"]

[dev-dependencies.peak_alloc]
version = "0.2"

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

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