mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 20:00:29 +01:00
23 lines
530 B
TOML
23 lines
530 B
TOML
[package]
|
|
name = "yaak-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "yaakcli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
dirs = "6"
|
|
env_logger = "0.11"
|
|
log = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
yaak-crypto = { workspace = true }
|
|
yaak-http = { workspace = true }
|
|
yaak-models = { workspace = true }
|
|
yaak-plugins = { workspace = true }
|
|
yaak-templates = { workspace = true }
|