20 lines
503 B
TOML
20 lines
503 B
TOML
[package]
|
|
name = "checkmk-mcp"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
rmcp = { version = "0.11.0", features = ["auth", "schemars", "server", "transport-streamable-http-server"] }
|
|
schemars = "1.1.0"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
|
tokio-util = "0.7.17"
|
|
rmcp-actix-web = "0.9.0"
|
|
actix-web = "4.12.1"
|
|
log = "0.4.29"
|
|
simplelog = "0.12.2"
|
|
|
|
checkmk-api = { path = "checkmk-api" }
|