about summary refs log tree commit diff stats
path: root/crates/rocie-cli/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--crates/rocie-cli/Cargo.toml (renamed from crates/rocie/Cargo.toml)19
1 files changed, 9 insertions, 10 deletions
diff --git a/crates/rocie/Cargo.toml b/crates/rocie-cli/Cargo.toml
index a0ae4aa..e68a7b4 100644
--- a/crates/rocie/Cargo.toml
+++ b/crates/rocie-cli/Cargo.toml
@@ -10,10 +10,10 @@
 # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
 
 [package]
-name = "rocie"
+name = "rocie-cli"
 keywords = []
 categories = []
-default-run = "rocie"
+default-run = "rocie-cli"
 version.workspace = true
 edition.workspace = true
 authors.workspace = true
@@ -23,17 +23,16 @@ rust-version.workspace = true
 description.workspace = true
 publish = false
 
-[dependencies]
-
-[[bin]]
-name = "rocie"
-doc = false
-path = "src/main.rs"
-
 [lints]
 workspace = true
 
-[dev-dependencies]
+[dependencies]
+anyhow = "1.0.99"
+clap = { version = "4.5.47", features = ["derive"] }
+rocie-client.workspace = true
+tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
+uuid = "1.18.1"
+
 
 [package.metadata.docs.rs]
 all-features = true