forked from ImageOptim/gifski
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (48 loc) · 1.24 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
authors = ["Kornel <[email protected]>"]
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 = "0.8.2"
[package.metadata.deb]
features = ["openmp"]
[[bin]]
doctest = false
name = "gifski"
[dependencies]
clap = "2.29.0"
error-chain = "0.11.0"
gif = "0.9.2"
gif-dispose = "2.1.0"
glob = "0.2.11"
imagequant = "2.11.9"
imgref = "1.3.3"
lodepng = "2.1.2"
pbr = "1.0.0"
rayon = "0.9.0"
resize = "0.3.0"
rgb = "0.8.7"
wild = "0.1.1"
[dependencies.ffmpeg]
optional = true
git = "https://github.com/kornelski/rust-ffmpeg.git"
features = ["codec", "format", "filter", "software-resampling", "software-scaling", "resampling" ]
[features]
default-features = []
openmp = ["imagequant/openmp-static"]
video = ["ffmpeg"]
[lib]
path = "src/lib.rs"
crate-type = ["lib", "staticlib", "cdylib"]
[profile.dev]
opt-level = 1
[profile.release]
panic = "abort"
lto = true