aios
This commit is contained in:
34
Cargo.toml
34
Cargo.toml
@@ -1,9 +1,9 @@
|
||||
[package]
|
||||
name = "aishell"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["syui"]
|
||||
description = "AI-powered shell automation tool - A generic alternative to Claude Code"
|
||||
description = "aios shell - AI and commands in one stream"
|
||||
|
||||
[lib]
|
||||
name = "aishell"
|
||||
@@ -14,34 +14,4 @@ name = "aishell"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
# CLI and async (following aigpt pattern)
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
tokio = { version = "1.40", features = ["rt", "rt-multi-thread", "macros", "io-std", "process", "fs"] }
|
||||
async-trait = "0.1"
|
||||
|
||||
# HTTP client for LLM APIs
|
||||
reqwest = { version = "0.12", features = ["json", "stream"] }
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
||||
# Error handling
|
||||
thiserror = "1.0"
|
||||
anyhow = "1.0"
|
||||
|
||||
# Utilities
|
||||
dirs = "5.0"
|
||||
|
||||
# Shell execution
|
||||
duct = "0.13"
|
||||
|
||||
# Configuration
|
||||
toml = "0.8"
|
||||
|
||||
# Logging
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
|
||||
# Interactive REPL
|
||||
rustyline = "14.0"
|
||||
|
||||
Reference in New Issue
Block a user