-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 1.06 KB
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
26
27
28
29
30
[package]
name = "cutlass-mcp"
description = "Cutlass MCP server: validated project reads and edits for external agents"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
anyhow = "1"
base64 = "0.22"
cutlass-ai = { path = "../cutlass-ai" }
cutlass-commands = { path = "../cutlass-commands" }
cutlass-engine = { path = "../cutlass-engine" }
cutlass-models = { path = "../cutlass-models" }
# encode_png / decode_png — not re-exported from cutlass-engine.
cutlass-render = { path = "../cutlass-render" }
rmcp = { version = "2", features = ["transport-io"] }
# Same major as rmcp's schemars (re-export alone isn't enough for the derive).
schemars = "1"
serde.workspace = true
serde_json.workspace = true
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "io-util"] }
tracing.workspace = true
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
rmcp = { version = "2", features = ["client", "transport-async-rw"] }
tempfile = "3"