forked from lx-industries/rmcp-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 1.08 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
[workspace]
members = ["crates/rmcp-openapi", "crates/rmcp-openapi-server"]
resolver = "2"
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://gitlab.com/lx-industries/rmcp-openapi"
homepage = "https://gitlab.com/lx-industries/rmcp-openapi"
keywords = ["mcp", "openapi", "llm"]
categories = ["network-programming", "web-programming"]
[workspace.dependencies]
# Shared dependencies
actix-web = "4.9.0"
rmcp = { version = "0.12.0", default-features = false, features = ["server", "base64", "macros", "transport-streamable-http-server", "transport-streamable-http-server-session", "transport-worker"] }
rmcp-actix-web = { version = "0.9.0", default-features = false, features = ["transport-streamable-http"] }
reqwest = { version = "0.13", default-features = false, features = ["http2", "json", "charset", "system-proxy", "rustls", "multipart", "form"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
thiserror = "2.0"
url = "2.5.4"
tracing = "0.1"
http = "1.3.1"
tokio = { version = "1.0", default-features = false, features = [
"fs",
"process",
"time",
] }