forked from second-state/echokit_server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.32 KB
/
Cargo.toml
File metadata and controls
52 lines (44 loc) · 1.32 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
[package]
name = "echokit_server"
version = "0.1.0"
edition = "2021"
[dependencies]
env_logger = "0.11.6"
log = "0.4.25"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
rmp-serde = "1"
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"
rand = "0.9.0"
uuid = { version = "1.14", features = [
"v4", # Lets you generate random UUIDs
"fast-rng",
] }
bytes = "1.10.0"
aho-corasick = "1.1.3"
hanconv = "0.3.4"
fon = { git = "https://github.com/ardaku/fon.git", branch = "v1" }
# 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"