-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
34 lines (29 loc) · 963 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
[package]
name = "termimage"
description = "Display images in your terminal, kind of"
documentation = "https://rawcdn.githack.com/nabijaczleweli/termimage/doc/termimage/index.html"
repository = "https://github.com/nabijaczleweli/termimage"
readme = "README.md"
keywords = ["image", "terminal", "picture", "display", "show"]
categories = ["command-line-utilities"]
license = "MIT"
# Remember to also update in appveyor.yml
version = "1.2.1"
# Remember to also update in termimage.md
authors = ["nabijaczleweli <[email protected]>",
"Josh Triplett <[email protected]>",
"Aaron Hill <[email protected]>",
"Orhun Parmaksız <[email protected]>",
"caeklol"]
exclude = ["*.enc"]
[dependencies]
term_size = "0.3"
image = "0.24"
clap = "2.33"
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = ["winbase", "wincon"]
[[bin]]
name = "termimage"
test = false
doc = false