forked from radiosilence/codeowners-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (59 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
69 lines (59 loc) · 1.33 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
65
66
67
68
69
[package]
name = "codeowners-lsp"
version = "0.17.3"
edition = "2021"
description = "Language server providing CODEOWNERS information via hover and inlay hints"
repository = "https://github.com/radiosilence/codeowners-lsp"
license = "MIT"
keywords = ["codeowners", "language-server", "lsp"]
categories = ["development-tools"]
[lib]
name = "codeowners_lsp"
path = "src/lib.rs"
[[bin]]
name = "codeowners-lsp"
path = "src/main.rs"
[[bin]]
name = "codeowners-cli"
path = "src/cli.rs"
[[bench]]
harness = false
name = "parsing"
[[bench]]
harness = false
name = "pattern_matching"
[[bench]]
harness = false
name = "diagnostics"
[[bench]]
harness = false
name = "file_cache"
[[bench]]
harness = false
name = "lsp_handlers"
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4"
codeowners = "0.1"
colored = "3"
fast-glob = "1.0"
futures = "0.3"
glob = "0.3"
indicatif = "0.18"
once_cell = "1"
rayon = "1.10"
regex = "1.12"
reqwest = { version = "0.13", default-features = false, features = [
"json",
"rustls"
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
toml = "0.9"
tower-lsp = { version = "0.20", features = ["proposed"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
rand = "0.8"
tempfile = "3"
wiremock = "0.6"