figif-core 0.1.0

GIF frame analysis and manipulation library with plugin architecture
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"
name = "figif-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GIF frame analysis and manipulation library with plugin architecture"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/nickpaterno/figif"

[features]
default = ["parallel"]
lossy = ["dep:gifski"]
parallel = ["dep:rayon"]

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

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

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

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

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

[dependencies.gif]
version = "0.14.1"

[dependencies.gifski]
version = "1.34"
optional = true

[dependencies.image]
version = "0.25.10"
features = [
    "gif",
    "png",
]
default-features = false

[dependencies.img_hash]
version = "3.2"

[dependencies.imgref]
version = "1.12"

[dependencies.rayon]
version = "1.11"
optional = true

[dependencies.rgb]
version = "0.8.53"

[dependencies.thiserror]
version = "2.0.18"

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

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