-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
43 lines (35 loc) · 794 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
[package]
authors = ["jD91mZM2 <[email protected]>"]
description = "Play images/videos in your terminal"
homepage = "https://jD91mZM2.github.io/termplay/"
license-file = "LICENSE"
name = "termplay"
readme = "README.md"
version = "2.0.6"
[dependencies]
image = "0.23"
[dependencies.clap]
# only used by binary
optional = true
version = "2.33.0"
[dependencies.failure]
optional = true
version = "0.1.6"
[dependencies.gstreamer]
optional = true
version = "0.16.0"
[dependencies.gstreamer-app]
optional = true
version = "0.16.0"
[dependencies.termion]
optional = true
version = "1.5.4"
[features]
bin = ["clap", "failure"]
default = ["gst", "sixel"]
gst = ["failure", "gstreamer", "gstreamer-app", "termion"]
sixel = []
[[bin]]
name = "termplay"
path = "src/main.rs"
required-features = ["bin"]