-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (52 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
67 lines (52 loc) · 1.62 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "echokit_server"
version = "0.3.2"
edition = "2024"
[dependencies]
env_logger = "0.11.6"
log = "0.4.25"
clap = { version = "4.5", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
rmp-serde = "1"
cached = { version = "0.56.0", features = ["async"] }
anyhow = "1.0"
axum = { version = "0.8.1", features = ["ws"] }
axum-extra = { version = "0.10.0", features = ["typed-header"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["multipart", "json", "stream"] }
hound = "3.5.1"
wav_io = "0.1.15"
opus = "0.3.0"
lip_sync = { version = "0.1", git = "https://github.com/L-jasmine/lip_sync.git" }
rand = "0.9.0"
uuid = { version = "1.14", features = [
"v4", # Lets you generate random UUIDs
"v5", # Lets you generate namespace-based UUIDs
"fast-rng",
] }
bytes = "1.11.0"
aho-corasick = "1.1.3"
lazy-regex = "3.4.2"
hanconv = "0.5.0"
# opencc-rust = { version = "1.1.19", features = ["static-dictionaries"] }
# gemini
rmcp = { version = "0.1.5", features = [
"base64",
"client",
"macros",
"transport-sse-client",
"transport-streamable-http-client",
"reqwest",
], default-features = false, git = "https://github.com/modelcontextprotocol/rust-sdk", rev = "b9d7d61" } # branch = "main"
base64 = "0.22.1"
reqwest-websocket = "0.5.0"
futures-util = "0.3.31"
http = "1.3.1"
tower = { version = "0.5.2", features = ["util"] }
tower-http = { version = "0.6.1", features = ["fs", "trace"] }
chrono = "0.4.41"
# vad
silero_vad_burn = "0.1.1"
burn = { version = "0.20", features = ["ndarray"] }