forked from ImageOptim/gifski
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (52 loc) · 1.35 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
57
58
59
60
[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 = "1.0.1"
autobins = false
edition = "2018"
[[bin]]
doctest = false
name = "gifski"
[dependencies]
gifsicle = { version = "1.92.0", optional = true }
clap = "2.33.1"
gif = "0.10.3"
gif-dispose = "2.4.0"
imagequant = "2.12.5"
imgref = "1.6.1"
lodepng = "3.0.0"
pbr = "1.0.3"
resize = "0.4.0"
rgb = "0.8.20"
wild = "2.0.4"
natord = "1.0.9"
quick-error = "1.2.3"
[dependencies.ffmpeg-next]
rev = "f1ccd4e69641dbd2be98e3ef38e670b592a103c1"
optional = true
git = "https://github.com/zmwangx/rust-ffmpeg.git"
[features]
default = []
openmp = ["imagequant/openmp"]
openmp-static = ["imagequant/openmp-static"]
video = ["ffmpeg-next"]
malloc = []
[lib]
path = "src/lib.rs"
crate-type = ["lib", "staticlib", "cdylib"]
[profile.dev.package.imagequant]
opt-level = 3
[profile.release]
panic = "abort"
lto = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]