-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (74 loc) · 2.37 KB
/
Cargo.toml
File metadata and controls
80 lines (74 loc) · 2.37 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# SPDX-License-Identifier: MIT OR Apache-2.0
[package]
name = "semcode"
version = "0.1.1"
authors = ["Chris Mason <clm@meta.com>"]
description = "Semantic code search for C/C++ codebases"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/facebookexperimental/semcode"
[dependencies]
lancedb = "0.27"
arrow = "57"
arrow-array = "57"
arrow-schema = "57"
tokio = { version = "1.50.0", features = ["full"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_bytes = "0.11"
clap = { version = "4.6", features = ["derive"] }
anyhow = "1.0"
walkdir = "2.5"
indicatif = "0.18.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rustyline = "17.0"
colored = "3.1"
futures = "0.3.32"
ndarray = "0.17"
regex = "1.12"
rayon = "1.11"
dirs = "6.0"
num_cpus = "1.17"
tree-sitter = "0.26"
tree-sitter-c = "0.24"
tree-sitter-rust = "0.24"
tree-sitter-python = "0.25"
streaming-iterator = "0.1"
once_cell = "1.21"
oneshot = "0.2"
crossbeam-channel = "0.5"
sha1 = "0.10"
blake3 = "1.8.3"
hex = "0.4"
dashmap = "6.1"
tempfile = "3.27"
axum = { version = "0.8", features = ["ws"] }
tower = "0.5"
tokio-tungstenite = "0.29"
anstream = "1.0" # Auto TTY/NO_COLOR handling; print!/println! and Write adapters [web:17]
owo-colors = { version = "4", features = ["supports-colors"] } # .red().bold(), optional detection helpers [web:27]
gix = { version = "0.81", features = ["blocking-network-client", "worktree-mutation", "blocking-http-transport-curl-openssl"] }
model2vec-rs = "0.1.4"
tower-lsp-server = "0.23" # Language Server Protocol framework for LSP server
similar = { version = "2.7", features = ["text"] } # Proper diff algorithm for commit diffs
shlex = "1.3" # Shell-like parsing for quoted strings in CLI
reqwest = { version = "0.13", features = ["blocking", "gzip"] } # HTTP client for manifest downloads
flate2 = "1.1" # gzip compression/decompression
chrono = "0.4.44"
chrono-english = "0.1" # Natural language date parsing
base64 = "0.22" # Base64 decoding for MIME-encoded email bodies
[[bin]]
name = "semcode-index"
path = "src/bin/index.rs"
[[bin]]
name = "semcode"
path = "src/bin/query.rs"
[[bin]]
name = "semcode-mcp"
path = "src/bin/semcode-mcp.rs"
[[bin]]
name = "semcode-lsp"
path = "src/bin/semcode-lsp.rs"
[profile.release]
debug = false