forked from sharkdp/pastel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (33 loc) · 874 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
[package]
authors = ["David Peter <[email protected]>"]
categories = ["command-line-utilities"]
description = "A command-line tool to generate, analyze, convert and manipulate colors"
homepage = "https://github.com/sharkdp/pastel"
license = "MIT/Apache-2.0"
name = "pastel"
readme = "README.md"
repository = "https://github.com/sharkdp/pastel"
version = "0.5.2"
edition = "2018"
build = "build.rs"
exclude = ["doc/pastel.gif"]
[dependencies]
# library dependencies
lazy_static = "1.3.0"
rand = "0.7"
atty = "0.2"
output_vt100 = "0.1"
# binary-only dependencies (see https://github.com/rust-lang/cargo/issues/1982)
regex = "1"
[dependencies.clap]
version = "2"
features = ["suggestions", "color", "wrap_help"]
[build-dependencies]
clap = "2"
[[bin]]
name = "pastel"
path = "src/cli/main.rs"
[dev-dependencies]
approx = "0.3"
assert_cmd = "0.11.1"
escargot = "0.5.0"