-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 992 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (43 loc) · 992 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
41
42
43
44
45
46
47
[package]
name = "lexa"
version = "0.6.4"
edition = "2021"
description = "Fast code intelligence engine for AI agents"
license = "MIT"
repository = "https://github.com/anvia-hq/lexa"
readme = "README.md"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
bincode = "1.3"
hashbrown = "0.15"
walkdir = "2"
ignore = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
anyhow = "1"
regex = "1"
notify = "6"
tree-sitter = "0.24"
tree-sitter-zig = "1.1"
tree-sitter-python = "0.23"
tree-sitter-rust = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-go = "0.23"
tree-sitter-c = "0.23"
tree-sitter-cpp = "0.23"
tree-sitter-java = "0.23"
tree-sitter-ruby = "0.23"
tree-sitter-php = "0.23"
[dev-dependencies]
criterion = "0.5"
tempfile = "3"
[[bench]]
name = "engine"
harness = false
[profile.release]
opt-level = 3
lto = true