diff options
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r-- | cli/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml new file mode 100644 index 0000000..84587ba --- /dev/null +++ b/cli/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "wearecli" +version = "0.1.0" +edition = "2024" + +[[bin]] +name = "wearecontrolling" +path = "src/main.rs" + +[dependencies] +anyhow = "1.0.95" +clap = { version = "4.5.23", features = ["derive"] } +env_logger = "0.11.6" +weareshared = { path = "../shared" } |