43 lines
854 B
TOML
43 lines
854 B
TOML
|
|
[package]
|
||
|
|
name = "vapora-cli"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
homepage.workspace = true
|
||
|
|
keywords.workspace = true
|
||
|
|
categories.workspace = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "vapora"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
vapora-shared = { workspace = true }
|
||
|
|
|
||
|
|
# CLI framework
|
||
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
||
|
|
|
||
|
|
# HTTP client
|
||
|
|
reqwest = { workspace = true, features = ["json"] }
|
||
|
|
|
||
|
|
# Async runtime
|
||
|
|
tokio = { workspace = true, features = ["full"] }
|
||
|
|
|
||
|
|
# Serialization
|
||
|
|
serde = { workspace = true, features = ["derive"] }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
|
||
|
|
# Error handling
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
|
||
|
|
# Utilities
|
||
|
|
chrono = { workspace = true }
|
||
|
|
|
||
|
|
# Terminal UI
|
||
|
|
colored = "2.1"
|
||
|
|
comfy-table = "7.1"
|