-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (48 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
61 lines (48 loc) · 1.51 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
[package]
name = "mcplex"
version = "0.3.0"
edition = "2021"
description = "MCPlex - The MCP Smart Gateway. Semantic tool routing, security guardrails, and real-time observability for AI agents."
license = "MIT"
repository = "https://github.com/modernops888/mcplex"
readme = "README.md"
keywords = ["mcp", "ai-agents", "gateway", "tool-routing", "observability"]
categories = ["command-line-utilities", "network-programming", "web-programming"]
authors = ["ModernOps888"]
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Web framework for dashboard + HTTP transport
axum = { version = "0.8", features = ["default"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# CLI
clap = { version = "4", features = ["derive"] }
# Logging & tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# File watching for hot-reload
notify = "7"
# HTTP client for streamable HTTP transport
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# SSE streaming for Streamable HTTP transport
async-stream = "0.3"
tokio-stream = "0.1"
# UUID for trace IDs
uuid = { version = "1", features = ["v4"] }
# Glob pattern matching for allowlists
glob = "0.3"
# Error handling
anyhow = "1"
# Process spawning for stdio transport
which = "7"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"