24 lines
642 B
TOML
24 lines
642 B
TOML
[package]
|
|
name = "shipote-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
description = "CLI de administración de shipote-daemon."
|
|
|
|
[[bin]]
|
|
name = "shipote"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
shipote-card = { path = "../../modules/shipote/shipote-card" }
|
|
shipote-protocol = { path = "../../modules/shipote/shipote-protocol" }
|
|
brahman-card = { path = "../../core/brahman-card" }
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
ulid = { workspace = true }
|