-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 717 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 717 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
[package]
name = "docgraph"
version = "0.4.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.58", features = ["derive"] }
ignore = "0.4.25"
regex = "1.12.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
thiserror = "2.0"
toml = "1.0.1"
lsp-server = "0.7.6"
lsp-types = "0.97.0"
pest = "2.7"
pest_derive = "2.7"
dashmap = "6.1.0"
pulldown-cmark = "0.13.0"
crossbeam-channel = "0.5.15"
url = "2.5.8"
comfy-table = "7.2.2"
[dev-dependencies]
tempfile = "3.25.0"
assert_cmd = "2"
predicates = "3"
criterion = { version = "0.8", features = ["html_reports"] }
tokio = { version = "1.37.0", features = ["full"] }
[[bench]]
name = "performance"
harness = false