-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo-dev.toml
More file actions
25 lines (22 loc) · 942 Bytes
/
Cargo-dev.toml
File metadata and controls
25 lines (22 loc) · 942 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
# Development version using local paths
# Copy this to Cargo.toml when developing with local framework
[workspace]
members = [
"template-mcp-server"
]
resolver = "2"
[workspace.dependencies]
# Core dependencies for MCP servers
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1.0"
async-trait = "0.1"
rand = "0.8"
# PulseEngine MCP Framework - Local development versions
pulseengine-mcp-server = { path = "../mcp-loxone-seperation/pulseengine-mcp/mcp-server", features = ["stdio-logging"] }
pulseengine-mcp-macros = { path = "../mcp-loxone-seperation/pulseengine-mcp/mcp-macros" }
pulseengine-mcp-protocol = { path = "../mcp-loxone-seperation/pulseengine-mcp/mcp-protocol" }
pulseengine-mcp-transport = { path = "../mcp-loxone-seperation/pulseengine-mcp/mcp-transport" }