gifski 1.3.3

pngquant-based GIF maker for nice-looking animGIFs
Documentation
[package]
authors = ["Kornel <kornel@geekhood.net>"]
categories = ["multimedia::video", "command-line-utilities"]
description = "pngquant-based GIF maker for nice-looking animGIFs"
documentation = "https://docs.rs/gifski"
homepage = "https://gif.ski"
include = ["/README.md", "/Cargo.toml", "/src/**/*.rs", "/src/bin/*.rs"]
keywords = ["gif", "encoder", "converter", "maker", "gifquant"]
license = "AGPL-3.0+"
name = "gifski"
readme = "README.md"
repository = "https://github.com/ImageOptim/gifski"
version = "1.3.3"
autobins = false
edition = "2018"

[[bin]]
doctest = false
name = "gifski"

[dependencies]
gifsicle = { version = "1.92.4", optional = true }
clap = "2.33.3"
gif = "0.11.1"
gif-dispose = "3.1.1"
imagequant = "3.0.3"
imgref = "1.7.1"
lodepng = "3.4.3"
pbr = "1.0.4"
resize = "0.6.1"
rgb = "0.8.25"
wild = "2.0.4"
natord = "1.0.9"
quick-error = "2.0.0"
dunce = "1.0.1"
crossbeam-channel = "0.5.0"

[dependencies.ffmpeg]
package = "ffmpeg-next"
version = "4.3.8"
optional = true
default-features = false
features = ["codec", "format", "filter", "software-resampling", "software-scaling"]

[features]
default = ["gifsicle"]
openmp = ["imagequant/openmp"]
openmp-static = ["openmp", "imagequant/openmp-static"]
video = ["ffmpeg"]
video-static = ["video", "ffmpeg/build"]

[lib]
path = "src/lib.rs"
crate-type = ["lib", "staticlib", "cdylib"]

[profile.dev]
debug = 1
opt-level = 1

[profile.dev.package.'*']
opt-level = 2
debug = false

[profile.release]
panic = "abort"
lto = true

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]