tiff-reader 0.2.2

Pure-Rust, read-only TIFF/BigTIFF 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 = "tiff-reader"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust, read-only TIFF/BigTIFF file decoder with no C dependencies"
homepage = "https://github.com/i-norden/geotiff-rust"
documentation = "https://docs.rs/tiff-reader"
readme = "README.md"
keywords = [
    "tiff",
    "bigtiff",
    "decoder",
    "raster",
    "read-only",
]
categories = [
    "science",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/i-norden/geotiff-rust"

[features]
default = [
    "rayon",
    "jpeg",
    "zstd",
]
jpeg = ["dep:jpeg-decoder"]
rayon = ["dep:rayon"]
zstd = ["dep:zstd"]

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

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

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

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

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

[dependencies.jpeg-decoder]
version = "0.3"
optional = true

[dependencies.lru]
version = "0.16.3"

[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"

[dependencies.tiff-core]
version = "0.2.2"

[dependencies.weezl]
version = "0.1"

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

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

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

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

[dev-dependencies.tiff-writer]
version = "0.2"