-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (30 loc) · 914 Bytes
/
Cargo.toml
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
[package]
name = "bazelrc-lsp"
version = "0.2.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.11.1"
tokio = { version = "1.43.0", features = ["full"] }
tower-lsp = { version = "0.20.0", features = ["proposed"] }
serde = { version = "1.0", features = ["derive"] }
chumsky = "0.9.3"
dashmap = "6.1.0"
ropey = "1.6.1"
prost = "0.13.4"
phf = { version = "0.11.3", features = ["macros"] }
lz4_flex = "0.11"
once_cell = "1.20.2"
base64 = "0.22.1"
clap = { version = "4.5.28", features = ["derive"] }
serde_json = "1.0.136"
walkdir = "2"
[build-dependencies]
prost = "0.13.4"
base64 = "0.22.1"
lz4_flex = { version = "0.11" }
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*