-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 737 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "chev-shell"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "chev"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.100"
arrow = "56.2.0"
arrow-array = "56.2.0"
arrow-schema = "56.2.0"
bincode = "1.3"
clap = { version = "4.5.54", features = ["derive"] }
colored = "3.0.0"
cpal = "0.17.1"
crossterm = "0.29.0"
dirs = "6.0.0"
futures = "0.3.31"
lancedb = "0.23.1"
libc = "0.2.180"
nix = "0.30.1"
nom = "8.0.0"
rand = "0.9.2"
realfft = "3.5.0"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
rustyline = "17.0.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.49.0", features = ["full"] }
which = "8.0.0"
[dev-dependencies]
tempfile = "3.24.0"