-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (40 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
49 lines (40 loc) · 775 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
48
49
[workspace]
resolver = "2"
members = [
"crates/codescope-core",
"crates/codescope-adapters",
"crates/codescope-cli",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
license = "MIT"
[workspace.dependencies]
# Core dependencies
anyhow = "1.0"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Graph
petgraph = "0.6"
# Tree-sitter
tree-sitter = "0.24"
tree-sitter-typescript = "0.23"
tree-sitter-javascript = "0.23"
# CLI
clap = { version = "4.5", features = ["derive"] }
tabled = "0.16"
ctrlc = "3.4"
# File operations
walkdir = "2.5"
ignore = "0.4"
# Hashing & cache
blake3 = "1.5"
# Parallelism
rayon = "1.10"
[profile.release]
lto = true
codegen-units = 1
strip = true