async-tiff 0.2.0

Asynchronous TIFF 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-tiff"
version = "0.2.0"
authors = ["Kyle Barron <kyle@developmentseed.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Asynchronous TIFF reader."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/developmentseed/async-tiff"

[package.metadata.cargo-all-features]

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

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

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

[dependencies.bytemuck]
version = "1.24"
features = ["extern_crate_alloc"]

[dependencies.byteorder]
version = "1"

[dependencies.bytes]
version = "1.7.0"

[dependencies.flate2]
version = "1.0.20"

[dependencies.futures]
version = "0.3.31"

[dependencies.jpeg]
version = "0.3.0"
default-features = false
package = "jpeg-decoder"

[dependencies.jpeg2k]
version = "0.10.1"
optional = true

[dependencies.ndarray]
version = "0.17"
optional = true

[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.43.0"
features = ["sync"]
default-features = false

[dependencies.weezl]
version = "0.1.0"

[dependencies.zstd]
version = "0.13"

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

[dev-dependencies.tiff]
version = "0.11"

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

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