tiff 0.11.2

TIFF decoding and encoding library in pure Rust
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.85.0"
name = "tiff"
version = "0.11.2"
authors = ["The image-rs Developers"]
build = false
exclude = [
    "tests/images/*",
    "tests/fuzz_images/*",
    "tests/**/*.tif",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TIFF decoding and encoding library in pure Rust"
readme = "README.md"
categories = [
    "multimedia::images",
    "multimedia::encoding",
]
license = "MIT"
repository = "https://github.com/image-rs/image-tiff"
resolver = "2"

[features]
default = [
    "deflate",
    "fax",
    "jpeg",
    "lzw",
]
deflate = ["dep:flate2"]
fax = ["dep:fax34"]
jpeg = ["dep:zune-jpeg"]
lzw = ["dep:weezl"]
zstd = ["dep:zstd"]

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

[[example]]
name = "decode"
path = "examples/decode.rs"

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

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

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

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

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

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

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

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

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

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

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

[dependencies.fax34]
version = "0.2.6"
optional = true
package = "fax"

[dependencies.flate2]
version = "1.0.20"
optional = true

[dependencies.half]
version = "2.4.1"

[dependencies.quick-error]
version = "2.0.1"

[dependencies.weezl]
version = "0.1.10"
optional = true

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

[dependencies.zune-jpeg]
version = "0.5.1"
optional = true

[dev-dependencies.crc32fast]
version = "1.5"

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