zentiff 0.1.1

TIFF decoding and encoding wrapper with zenpixels integration
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 = "2024"
rust-version = "1.93"
name = "zentiff"
version = "0.1.1"
build = false
exclude = [
    "CLAUDE.md",
    "CONTEXT-HANDOFF.md",
    "FEEDBACK.md",
    ".claude/",
    ".superwork/",
    ".zenbench/",
    "copter-report/",
    ".github/",
    "Cross.toml",
    "justfile",
    "Cargo.toml.original.txt",
    "fuzz/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TIFF decoding and encoding wrapper with zenpixels integration"
documentation = "https://docs.rs/zentiff"
readme = "README.md"
keywords = [
    "tiff",
    "image",
    "decoder",
    "encoder",
    "codec",
]
categories = [
    "multimedia::images",
    "multimedia::encoding",
]
license = "AGPL-3.0-only OR LicenseRef-Imazen-Commercial"
repository = "https://github.com/imazen/zentiff"
resolver = "2"

[package.metadata.docs.rs]
features = [
    "all-codecs",
    "zencodec",
]

[features]
_palette = []
all-codecs = [
    "deflate",
    "fax",
    "jpeg",
    "lzw",
    "webp",
    "zstd",
]
default = [
    "std",
    "deflate",
    "lzw",
]
deflate = ["tiff/deflate"]
fax = ["tiff/fax"]
jpeg = ["tiff/jpeg"]
lzw = ["tiff/lzw"]
std = [
    "tiff/default",
    "enough/std",
    "whereat/std",
]
webp = ["tiff/webp"]
zencodec = ["dep:zencodec"]
zstd = ["tiff/zstd"]

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

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

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

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

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

[dependencies.bytemuck]
version = "1.25.0"
features = ["extern_crate_alloc"]
default-features = false

[dependencies.enough]
version = "0.4.3"
default-features = false

[dependencies.thiserror]
version = "2.0.18"
default-features = false

[dependencies.tiff]
version = "0.11.3"
default-features = false

[dependencies.whereat]
version = "0.1.5"
default-features = false

[dependencies.zencodec]
version = "0.1.13"
optional = true

[dependencies.zenpixels]
version = "0.2.2"
default-features = false

[dev-dependencies.codec-corpus]
version = "1.0.3"

[profile.test]
opt-level = 2