aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-07-08 17:11:46 -0400
committerdiogo464 <[email protected]>2021-07-08 17:11:46 -0400
commited0baec0a3f953c99445f6842dadc5566e89cb75 (patch)
tree9f988c41db34907283dd126dc57d29b3d0792bd9 /dotup_cli/Cargo.toml
Initial commit
Diffstat (limited to 'dotup_cli/Cargo.toml')
-rw-r--r--dotup_cli/Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/dotup_cli/Cargo.toml b/dotup_cli/Cargo.toml
new file mode 100644
index 0000000..891d32a
--- /dev/null
+++ b/dotup_cli/Cargo.toml
@@ -0,0 +1,20 @@
1[package]
2edition = "2018"
3name = "dotup_cli"
4version = "0.1.0"
5
6[[bin]]
7name = "dotup"
8path = "src/main.rs"
9
10[dependencies]
11anyhow = "*"
12clap = "3.0.0-beta.2"
13log = "*"
14
15[dependencies.dotup]
16path = "../dotup"
17
18[dependencies.flexi_logger]
19features = ["colors"]
20version = "*"