48 lines
915 B
TOML
48 lines
915 B
TOML
|
|
[package]
|
||
|
|
name = "vapora-mcp-server"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "vapora-mcp-server"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
# Internal crates
|
||
|
|
vapora-shared = { workspace = true }
|
||
|
|
|
||
|
|
# Async runtime
|
||
|
|
tokio = { workspace = true }
|
||
|
|
futures = { workspace = true }
|
||
|
|
async-trait = { workspace = true }
|
||
|
|
|
||
|
|
# Serialization
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
|
||
|
|
# Error handling
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
|
||
|
|
# Utilities
|
||
|
|
uuid = { workspace = true }
|
||
|
|
|
||
|
|
# Logging
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
|
||
|
|
# CLI
|
||
|
|
clap = { workspace = true }
|
||
|
|
|
||
|
|
# Web framework
|
||
|
|
axum = { workspace = true }
|
||
|
|
tower = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tempfile = { workspace = true }
|
||
|
|
axum-test = { workspace = true }
|