-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.52 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (42 loc) · 1.52 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
[package]
name = "terraphim_mcp_server"
version = "1.0.0"
edition.workspace = true
license = "MIT"
[[bin]]
name = "terraphim_mcp_server"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
base64 = "0.21"
clap = { version = "4.5", features = ["derive"] }
rmcp = { version = "0.9.0", features = ["server", "transport-sse-server", "transport-io"] }
serde_json = "1.0"
terraphim_automata = { path = "../terraphim_automata" }
terraphim_config = { path = "../terraphim_config" }
terraphim_hooks = { path = "../terraphim_hooks" }
terraphim_rolegraph = { path = "../terraphim_rolegraph" }
terraphim_service = { path = "../terraphim_service" }
terraphim_types = { path = "../terraphim_types" }
thiserror = "1.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-util = { version = "0.7" }
axum = { version = "0.8" }
[features]
openrouter = ["terraphim_config/openrouter"]
[dev-dependencies]
ahash = "0.8"
anyhow = "1.0"
regex = "1"
rmcp = { version = "0.9.0", features = ["client", "server", "transport-child-process", "transport-sse-server"] }
serde_json = "1.0"
serial_test = "3.3"
tempfile = "3.27"
terraphim_automata = { path = "../terraphim_automata" } # For AutomataPath
terraphim_config = { path = "../terraphim_config" }
terraphim_middleware = { path = "../terraphim_middleware" } # For Logseq builder
terraphim_persistence = { path = "../terraphim_persistence", features = ["memory"] }
terraphim_test_utils = { path = "../terraphim_test_utils" }
env_logger = "0.11"