aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-07-11 10:07:33 +0100
committerdiogo464 <[email protected]>2021-07-11 10:07:33 +0100
commit29b9f6ecd227e52f5973503dfcf4e4f228a43d80 (patch)
tree2047469b2f00afea666a7a3d1e25ea3a8fbf0c10 /dotup_cli/Cargo.toml
parentfcc5fbe564ee74e5f8434349424cbc4c646597df (diff)
Added some tests to dotup_cli crate.
Diffstat (limited to 'dotup_cli/Cargo.toml')
-rw-r--r--dotup_cli/Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/dotup_cli/Cargo.toml b/dotup_cli/Cargo.toml
index 891d32a..cf92f9e 100644
--- a/dotup_cli/Cargo.toml
+++ b/dotup_cli/Cargo.toml
@@ -6,6 +6,7 @@ version = "0.1.0"
6[[bin]] 6[[bin]]
7name = "dotup" 7name = "dotup"
8path = "src/main.rs" 8path = "src/main.rs"
9doc = false
9 10
10[dependencies] 11[dependencies]
11anyhow = "*" 12anyhow = "*"
@@ -18,3 +19,7 @@ path = "../dotup"
18[dependencies.flexi_logger] 19[dependencies.flexi_logger]
19features = ["colors"] 20features = ["colors"]
20version = "*" 21version = "*"
22
23[dev-dependencies]
24tempfile = "3.2"
25assert_cmd = "1.0"