mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 08:00:45 +00:00
e31e3c25d8
* draft * clean up mcp logic * cleaning * cleaning * better code * error logging * cleaning
31 lines
1018 B
TOML
31 lines
1018 B
TOML
[package]
|
|
name = "windmill-mcp"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_mcp"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
server = ["rmcp/transport-streamable-http-server", "rmcp/transport-streamable-http-server-session", "rmcp/transport-worker", "dep:sqlx", "dep:async-trait", "dep:http", "dep:tokio-util", "dep:tokio"]
|
|
auth = ["rmcp/auth", "dep:oauth2"]
|
|
|
|
[dependencies]
|
|
oauth2 = { version = "5.0", optional = true }
|
|
windmill-common = { workspace = true, default-features = false }
|
|
anyhow.workspace = true
|
|
reqwest = { version = "=0.12", features = ["json", "stream", "gzip"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
rmcp.workspace = true
|
|
sqlx = { workspace = true, optional = true }
|
|
async-trait = { workspace = true, optional = true }
|
|
http = { workspace = true, optional = true }
|
|
tokio-util = { workspace = true, features = ["rt"], optional = true }
|
|
tokio = { workspace = true, optional = true }
|
|
futures.workspace = true
|