aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/Cargo.toml
blob: 89b8c2798a147e974ca282fed561818612d87f42 (plain)
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
[package]
edition = "2018"
name = "dotup_cli"
version = "0.1.0"

[[bin]]
name = "dotup"
path = "src/main.rs"
doc = false

[dependencies]
anyhow = "1.0"
log = "0.4"
ansi_term = "0.12.1"

[dependencies.clap]
features = ["derive"]
version = "3.0.0-rc.7"

[dependencies.dotup]
path = "../dotup"

[dependencies.flexi_logger]
features = ["colors"]
version = "0.22"

[dev-dependencies]
tempfile = "3.2"
assert_cmd = "2.0"