diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-09-06 10:31:40 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-09-06 10:31:40 +0200 |
| commit | 9a9d5c5880095adeb43a045dca638243c8f946e4 (patch) | |
| tree | 86e0d23af339b3139efab15749aaf5b59aa0965b /crates/rocie-cli/Cargo.toml | |
| parent | chore: Initial commit (diff) | |
| download | server-9a9d5c5880095adeb43a045dca638243c8f946e4.zip | |
feat: Provide basic API frame
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 |
