-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
44 lines (39 loc) · 906 Bytes
/
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
[package]
name = "engiffen"
version = "0.8.1"
authors = ["Jesse Bees <[email protected]>"]
description = """
Encodes GIF images from sequences of images. Includes an installable
command line bin as well as the library.
"""
homepage = "https://github.com/TooManyBees/engiffen"
repository = "https://github.com/TooManyBees/engiffen"
readme = "README.md"
documentation = "https://docs.rs/engiffen"
keywords = ["gif", "stream", "image", "cli"]
categories = ["multimedia", "command-line-utilities"]
license = "MIT"
exclude = [
"tests/*"
]
[features]
default = ["globbing"]
debug-stderr = []
globbing = ["glob"]
[dependencies]
lab = "~0.4"
image = "~0.13"
gif = "~0.9"
color_quant = "~1.0.0"
getopts = "0.2.14"
rayon = "~0.7"
rand = "~0.3"
fnv = "~1.0"
glob = { version = "~0.2", optional = true }
[lib]
name = "engiffen"
path = "src/lib.rs"
[[bin]]
name = "engiffen"
path = "src/main.rs"
doc = false