fix claude
This commit is contained in:
34
Cargo.toml
Normal file
34
Cargo.toml
Normal file
@ -0,0 +1,34 @@
|
||||
[package]
|
||||
name = "ai-shell"
|
||||
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 = "ai-shell"
|
||||
path = "src/main.rs"
|
Reference in New Issue
Block a user