[[bench]]
harness = false
name = "lzw"
path = "benches/lzw.rs"
[dependencies.flate2]
optional = true
version = "1.0.20"
[dependencies.half]
version = "2.4.1"
[dependencies.quick-error]
version = "2.0.1"
[dependencies.weezl]
optional = true
version = "0.1.10"
[dependencies.zstd]
optional = true
version = "0.13"
[dependencies.zune-jpeg]
optional = true
version = "0.4.17"
[dev-dependencies.crc32fast]
version = "1.5"
[dev-dependencies.criterion]
version = "0.3.1"
[features]
default = ["deflate", "jpeg", "lzw"]
deflate = ["dep:flate2"]
jpeg = ["dep:zune-jpeg"]
lzw = ["dep:weezl"]
zstd = ["dep:zstd"]
[lib]
name = "tiff"
path = "src/lib.rs"
[package]
authors = ["The image-rs Developers"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["multimedia::images", "multimedia::encoding"]
description = "TIFF decoding and encoding library in pure Rust"
edition = "2021"
exclude = ["tests/images/*", "tests/fuzz_images/*"]
license = "MIT"
name = "tiff"
readme = "README.md"
repository = "https://github.com/image-rs/image-tiff"
resolver = "2"
rust-version = "1.74.0"
version = "0.10.2"
[[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 = "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"