-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1004 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (35 loc) · 1004 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "codegraph-mcp-core"
version = "1.0.0"
edition = "2021"
authors = ["CodeGraph Team"]
license = "MIT OR Apache-2.0"
[lib]
path = "src/lib.rs"
[dependencies]
codegraph-core = { path = "../codegraph-core" }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
async-trait = { workspace = true }
anyhow = { workspace = true }
regex = { workspace = true }
tokio = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
parking_lot = { workspace = true }
dashmap = { workspace = true }
tokio-tungstenite = { workspace = true }
url = { workspace = true }
toml = { workspace = true }
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["process", "signal"] }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_System_Threading",
] }
[dev-dependencies]
tempfile = { workspace = true }
serial_test = "3.2"