forked from ImageOptim/gifski
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (49 loc) · 1.26 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.3"
autobins = false
[[bin]]
doctest = false
name = "gifski"
[dependencies]
clap = "2.29.0"
error-chain = "0.11.0"
gif = "0.10.0"
gif-dispose = "2.1.1"
glob = "0.2.11"
imagequant = "2.11.9"
imgref = "1.3.3"
lodepng = "2.1.2"
pbr = "1.0.0"
rayon = "1.0.0"
resize = "0.3.0"
rgb = "0.8.7"
wild = "1.0.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"]
openmp-static = ["imagequant/openmp-static"]
video = ["ffmpeg"]
malloc = []
[lib]
path = "src/lib.rs"
crate-type = ["lib", "staticlib", "cdylib"]
[profile.dev]
opt-level = 1
[profile.release]
panic = "abort"
lto = true