-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (56 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
65 lines (56 loc) · 1.54 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
[workspace]
members = ["crates/*", "xtask"]
resolver = "2"
[workspace.package]
rust-version = "1.95.0"
edition = "2024"
license = "MIT"
[profile.dev.package]
# These speed up local tests.
rowan.opt-level = 3
text-size.opt-level = 3
serde.opt-level = 3
salsa.opt-level = 3
dissimilar.opt-level = 3
# This speeds up `cargo xtask dist`.
miniz_oxide.opt-level = 3
[profile.dev]
debug = "line-tables-only"
[profile.dist]
inherits = "release"
lto = "fat"
[workspace.dependencies]
rowan = "=0.15.15"
lsp-types = { version = "=0.95.1" }
itertools = "0.14.0"
line-index = "^0.1.2"
crossbeam-channel = "^0.5.15"
serde = "^1.0.217"
serde_derive = { version = "^1.0.192" }
serde_json = "^1.0.108"
anyhow = "^1.0.95"
clap = { version = "^4.5.28", features = ["derive"] }
indexmap = "^2.7.1"
toml = "0.9.7"
walkdir = "^2.5.0"
regex = "1.11.1"
camino = { version = "1.2.0", features = ["serde1"] }
memchr = "2.7.4"
tracing = "0.1.41"
tracing-tree = "0.4.0"
tracing-subscriber = { version = "0.3.20", default-features = false, features = [
"registry",
"fmt",
"local-time",
"std",
"time",
"tracing-log",
"env-filter"
] }
dashmap = "6.1.0"
salsa = "0.26.0"
salsa-macros = "0.26.0"
stdx = { git = "https://github.com/rust-lang/rust-analyzer.git", rev = "2026-03-30" }
paths = { git = "https://github.com/rust-lang/rust-analyzer.git", rev = "2026-03-30", features = ["serde1"] }
vfs = { git = "https://github.com/rust-lang/rust-analyzer.git", rev = "2026-03-30" }
vfs-notify = { git = "https://github.com/rust-lang/rust-analyzer.git", rev = "2026-03-30" }