-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 1.45 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "mcp-execution-server"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "MCP server for progressive loading TypeScript code generation"
keywords = ["mcp", "server", "codegen", "progressive-loading"]
categories = ["development-tools"]
[[bin]]
name = "mcp-execution"
path = "src/main.rs"
[dependencies]
anyhow = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
dirs = { workspace = true }
mcp-execution-codegen = { workspace = true }
mcp-execution-core = { workspace = true }
mcp-execution-files = { workspace = true }
mcp-execution-introspector = { workspace = true }
mcp-execution-skill = { workspace = true }
regex = { workspace = true }
rmcp = { workspace = true, features = ["server", "transport-io", "macros"] }
schemars = { workspace = true, features = ["uuid1", "chrono04"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = [
"fs",
"macros",
"rt-multi-thread",
"sync",
] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
uuid = { workspace = true, features = ["v4", "serde"] }
[dev-dependencies]
tempfile = { workspace = true }
tokio = { workspace = true, features = ["test-util"] }
[lints]
workspace = true