forked from ndhkaeru/codeloupe-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (54 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (54 loc) · 1.28 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
49
50
51
52
53
54
55
56
57
[package]
name = "codebase-mcp"
version = "1.3.2"
edition = "2024"
license = "Apache-2.0"
description = "High-performance MCP server for filesystem and code intelligence workflows"
readme = "README.md"
[dependencies]
anyhow = "1.0.102"
async-trait = "0.1.89"
bytecount = "0.6.9"
dashmap = "6.1.0"
encoding_rs = "0.8.35"
flate2 = "1.1.9"
futures = "0.3.32"
fuzzy-matcher = "0.3.7"
glob = "0.3.3"
grep-regex = "0.1.14"
grep-searcher = "0.1.16"
heed = "0.22.1"
ignore = "0.4.25"
lazy_static = "1.5.0"
mcp-sdk = "0.0.3"
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
similar = "2.7.0"
tantivy = "0.26.1"
tar = "0.4.46"
tokio = { version = "1.49.0", features = ["full"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
tree-sitter = "0.26.6"
tree-sitter-c = "0.24.2"
tree-sitter-c-sharp = "0.23.5"
tree-sitter-cpp = "0.23.4"
tree-sitter-go = "0.25.0"
tree-sitter-java = "0.23.5"
tree-sitter-javascript = "0.25.0"
tree-sitter-nix = "0.3.0"
tree-sitter-objc = "3.0.2"
tree-sitter-php = "0.24.2"
tree-sitter-python = "0.25.0"
tree-sitter-ruby = "0.23.1"
tree-sitter-rust = "0.24.0"
tree-sitter-swift = "0.7.2"
tree-sitter-typescript = "0.23.2"
zip = "8.1.0"
[dev-dependencies]
tempfile = "3.26.0"
[profile.release]
codegen-units = 1
lto = "thin"
strip = "symbols"