1
0
shell/Cargo.toml
2025-06-02 00:32:00 +09:00

34 lines
818 B
TOML

[package]
name = "aishell"
version = "0.1.0"
edition = "2021"
authors = ["syui"]
description = "AI-powered shell for code generation and automation"
repository = "https://git.syui.ai/ai/shell"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.40", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
colored = "2.1"
dirs = "5.0"
toml = "0.8"
uuid = { version = "1.6", features = ["v4", "serde"] }
# For future TUI support
# ratatui = { version = "0.28", optional = true }
# crossterm = { version = "0.28", optional = true }
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
[features]
default = []
# tui = ["ratatui", "crossterm"]
[[bin]]
name = "aishell"
path = "src/main.rs"