summaryrefslogtreecommitdiff
path: root/support/texlab/crates/completion/Cargo.toml
blob: 5bcebea435ee9f532db584349b54fb40e361f95c (plain)
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
[package]
name = "completion"
version = "0.0.0"
license.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true

[dependencies]
base-db = { path = "../base-db" }
completion-data = { path = "../completion-data" }
fuzzy-matcher = { version = "0.3.7", features = ["compact"] }
line-index = { path = "../line-index" }
rayon = "1.7.0"
rowan = "0.15.15"
rustc-hash = "1.1.0"
syntax = { path = "../syntax" }
url = "2.5.0"

[dev-dependencies]
criterion = "0.5.1"
distro = { path = "../distro" }
expect-test = "1.4.1"
test-utils = { path = "../test-utils" }

[lib]
doctest = false

[[bench]]
name = "bench_main"
path = "benches/bench_main.rs"
harness = false