1
0
This commit is contained in:
2026-02-27 11:59:53 +09:00
commit 995fd2b9ab
10 changed files with 828 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "aishell"
version = "0.3.0"
edition = "2021"
authors = ["syui"]
description = "aios shell - AI and commands in one stream"
[lib]
name = "aishell"
path = "src/lib.rs"
[[bin]]
name = "aishell"
path = "src/main.rs"
[dependencies]
rustyline = "14.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
terminal_size = "0.4"