-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (33 loc) · 1001 Bytes
/
Cargo.toml
File metadata and controls
44 lines (33 loc) · 1001 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
37
38
39
40
41
42
43
44
[package]
name = "vibetty"
version = "0.2.0"
edition = "2024"
[dependencies]
flexi_logger = "0.31"
env_logger = "0.11.6"
log = "0.4.25"
clap = { version = "4.5", features = ["derive", "env"] }
dotenv = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rmp-serde = "1"
anyhow = "1.0"
wav_io = "0.1.15"
axum = { version = "0.8.1", features = ["ws"] }
axum-extra = { version = "0.12.0", features = ["typed-header"] }
tower-http = { version = "0.5", features = ["fs"] }
tokio = { version = "1", features = ["full"] }
futures-util = "0.3.32"
reqwest = { version = "0.13", features = ["multipart", "json", "stream"] }
reqwest-websocket = "0.6.0"
hanconv = "0.5.0"
bytes = "1.11.1"
uuid = { version = "1.21.0", features = ["v4"] }
pty-process = { version = "0.5.3", features = ["async"] }
linemux = "0.3"
strip-ansi-escapes = "0.2.1"
# TUI
ratatui = "0.30"
crossterm = { version = "0.28", features = ["event-stream", "bracketed-paste"] }
tui-term = "0.3"
vt100 = "0.16"