forked from ImageOptim/gifski
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (54 loc) · 1.47 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
61
62
[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.2.0"
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"
dunce = "1.0.1"
[dependencies.ffmpeg]
git = "https://github.com/kornelski/rust-ffmpeg"
optional = true
default-features = false
features = ["ffmpeg4", "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.package.imagequant]
opt-level = 3
[profile.release]
panic = "abort"
lto = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]