[package]
name = "gif"
license = "MIT/Apache-2.0"
version = "0.13.1"
description = "GIF de- and encoder"
authors = ["The image-rs Developers"]
readme = "README.md"
homepage = "https://github.com/image-rs/image-gif"
repository = "https://github.com/image-rs/image-gif"
documentation = "https://docs.rs/gif"
edition = "2021"
include = ["src/**", "LICENSE-*", "README.md", "benches/*.rs"]
[lib]
bench = false
[dependencies]
weezl = "0.1.8"
color_quant = { version = "1.1", optional = true }
[dev-dependencies]
glob = "0.3"
criterion = "0.5.1"
png = "0.17.10"
rayon = "1.8.0"
[features]
default = ["raii_no_panic", "std", "color_quant"]
raii_no_panic = []
color_quant = ["dep:color_quant"]
std = []
[[bench]]
name = "decode"
harness = false
required-features = ["std"]
[[bench]]
name = "rgb_frame"
harness = false
required-features = ["std", "color_quant"]