-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (43 loc) · 1.57 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
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.5.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/vllm-project/agentic-api"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
[workspace.dependencies]
agentic-core = { package = "agentic-server-core", path = "crates/agentic-server-core", version = "0.5.0" }
async-stream = "0.3"
axum = { version = "0.8", features = ["ws"] }
either = "1"
bytes = "1"
clap = { version = "4", features = ["derive", "env"] }
criterion = { version = "0.5", features = ["async_tokio"] }
dirs = "6"
futures = "0.3"
indexmap = "2"
http = "1"
jsonwebtoken = { version = "=10.3.0", default-features = false, features = ["rust_crypto"] }
percent-encoding = "2"
reqwest = { version = "0.12", default-features = false }
rmcp-reqwest = { package = "reqwest", version = "0.13.2", default-features = false, features = ["json", "stream", "rustls"] }
rmcp = { version = "1.8", default-features = false }
serde = { version = "1", features = ["derive"] }
# Structured Outputs emit object keys in JSON Schema declaration order.
serde_json = { version = "1", features = ["preserve_order", "raw_value"] }
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
toml = "0.8"
tokio-tungstenite = "0.29"
url = "2"