28 lines
547 B
TOML
28 lines
547 B
TOML
[package]
|
|
name = "aishell"
|
|
version = "0.0.1"
|
|
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]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
libc = "0.2"
|
|
notify = { version = "7", features = ["macos_fsevent"] }
|
|
ratatui = "0.29"
|
|
crossterm = "0.28"
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
rodio = "0.19"
|
|
base64 = "0.22"
|
|
cpal = "0.15"
|
|
webrtc-vad = "0.4"
|