26 lines
690 B
TOML
26 lines
690 B
TOML
[package]
|
|
name = "kogral-mcp"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "KOGRAL MCP Server - Model Context Protocol integration for Claude Code"
|
|
|
|
[[bin]]
|
|
name = "kogral-mcp"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
kogral-core = { path = "../kogral-core" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
chrono = { workspace = true }
|