-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (43 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (43 loc) · 1.16 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
[package]
name = "agent-cli"
version = "0.9.0"
edition = "2024"
[features]
default = ["napcat"]
napcat = ["onebot_v11"]
[dependencies]
rmcp = { version = "0.6.0", features = [
"client",
"reqwest",
"transport-streamable-http-client",
"transport-child-process",
"transport-sse-client",
] }
tokio = { version = "1.47.1", features = ["rt-multi-thread", "sync"] }
tokio-stream = "0.1"
futures = "0.3.31"
futures-util = "0.3.31"
toml = "0.9.5"
anyhow = "1.0.99"
log = "0.4"
clap = { version = "4.5.45", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-stream = "0.3"
thiserror = "2.0.15"
reqwest = { version = "0.12", features = ["json"] }
log4rs = "1.3.0"
async-trait = "0.1.89"
async-recursion = "1.1.1"
tokio-util = { version = "0.7.16", features = ["compat"] }
ratatui = "0.29.0"
color-eyre = "0.6.5"
unicode-width = "0.2.0"
onebot_v11 = {version = "0.1.5", optional = true}
chrono = "0.4.38"
tokio-tungstenite = "0.21"
tungstenite = "0.21"
eventsource-client = "0.16.0"
agent-client-protocol = {version = "0.9.3", features = ["unstable_session_model"]}
uuid = { version = "1.0", features = ["v4", "serde"] }
dirs = "5.0"