-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (25 loc) · 867 Bytes
/
Cargo.toml
File metadata and controls
26 lines (25 loc) · 867 Bytes
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
[package]
name = "rustforge-mcp"
version = "0.1.0"
edition = "2024"
license = "MIT"
[dependencies]
rmcp = { version = "1.6.0", features = ["server", "transport-io"] }
tokio = { version = "1.43", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
schemars = "1.0"
anyhow = "1.0"
uuid = { version = "1.13", features = ["v4", "serde"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "json"] }
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
prometheus = "0.13"
jsonwebtoken = "9.3"
async-trait = "0.1"
once_cell = "1.20"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }