From ed0baec0a3f953c99445f6842dadc5566e89cb75 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 8 Jul 2021 17:11:46 -0400 Subject: Initial commit --- dotup_cli/Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dotup_cli/Cargo.toml (limited to 'dotup_cli/Cargo.toml') 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 @@ +[package] +edition = "2018" +name = "dotup_cli" +version = "0.1.0" + +[[bin]] +name = "dotup" +path = "src/main.rs" + +[dependencies] +anyhow = "*" +clap = "3.0.0-beta.2" +log = "*" + +[dependencies.dotup] +path = "../dotup" + +[dependencies.flexi_logger] +features = ["colors"] +version = "*" -- cgit