[package] name = "clawhdf5-tools" version = "2.7.0" edition = "2024" rust-version.workspace = true license = "MIT" description = "h5rs: pure-Rust HDF5 command-line tools (ls, dump, stat, diff, check) without libhdf5" repository = "https://git.redclaw.dev/quantumclaw/clawhdf5" keywords = ["hdf5", "h5dump", "h5ls", "cli", "science"] categories = ["command-line-utilities", "science"] readme = "README.md" [[bin]] name = "h5rs" path = "src/main.rs" [features] # FILE arguments may be URLs: http:// with `remote` (no C), https:// with # `remote-https` (rustls + ring, which compiles C). remote = ["dep:clawhdf5-remote"] remote-https = ["remote", "clawhdf5-remote/https"] [dependencies] clawhdf5 = { path = "../clawhdf5", version = "2.7.0" } clawhdf5-format = { path = "../clawhdf5-format", version = "2.7.0" } clawhdf5-remote = { path = "../clawhdf5-remote", version = "2.7.0", optional = true } serde_json = "1" [dev-dependencies] tempfile = { workspace = true }