async-hdf5 0.1.0

Asynchronous HDF5 metadata 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"
name = "async-hdf5"
version = "0.1.0"
authors = ["Max Jones"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Asynchronous HDF5 metadata reader."
documentation = "https://maxrjones.github.io/async-hdf5/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/maxrjones/async-hdf5"

[features]
default = [
    "object_store",
    "reqwest",
    "tokio",
]
object_store = ["dep:object_store"]
reqwest = ["dep:reqwest"]
tokio = ["tokio/io-util"]

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

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

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

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

[dependencies.async-trait]
version = "0.1.89"

[dependencies.byteorder]
version = "1"

[dependencies.bytes]
version = "1.7"

[dependencies.futures]
version = "0.3.31"

[dependencies.num_enum]
version = "0.7.3"

[dependencies.object_store]
version = "0.13"
optional = true

[dependencies.reqwest]
version = "0.13"
optional = true
default-features = false

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["sync"]
default-features = false

[dev-dependencies.object_store]
version = "0.13"
features = ["http"]

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "fs",
    "rt-multi-thread",
    "io-util",
]

[dev-dependencies.tokio-test]
version = "0.4"