-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 798 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 798 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
[package]
name = "code-mcp"
version = "0.4.3"
edition = "2024"
repository = "https://github.com/devfire/code-mcp.git"
[dependencies]
rmcp = { version = "0.16.0", features = ["server", "transport-streamable-http-server"] }
tokio = { version = "1.43", features = ["full"] }
tokio-util = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
schemars = "0.8"
ignore = "0.4.23"
regex = "1.11"
thiserror = "2.0"
grep-searcher = "0.1.14"
grep-regex = "0.1.13"
axum = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4", features = ["derive"] }
[dev-dependencies]
tempfile = "3"
tower = { version = "0.5", features = ["util"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"