forked from rust-lang/rls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.17 KB
/
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
35
36
37
38
39
40
41
42
[package]
name = "rls"
version = "0.127.0"
authors = ["Nick Cameron <[email protected]>", "Jonathan Turner <[email protected]>", "The RLS developers"]
description = "Rust Language Server - provides information about Rust programs to IDEs and other tools"
license = "Apache-2.0/MIT"
repository = "https://github.com/rust-lang-nursery/rls"
categories = ["development-tools"]
build = "build.rs"
[dependencies]
cargo = { git = "https://github.com/rust-lang/cargo", rev = "acea5e2f3c3bdd98ae3d1faf36a4499791acbd72" }
cargo_metadata = "0.5.2"
env_logger = "0.5"
failure = "0.1.1"
jsonrpc-core = "8.0.1"
languageserver-types = "0.36"
lazy_static = "1"
log = "0.4"
racer = "2.0.12"
rls-analysis = "0.12"
rls-blacklist = "0.1.2"
rls-data = { version = "0.15", features = ["serialize-serde"] }
rls-rustc = "0.2.1"
rls-span = { version = "0.4", features = ["serialize-serde"] }
rls-vfs = { version = "0.4.5", features = ["racer-impls"] }
rustfmt-nightly = "0.6"
clippy_lints = { version = "0.0.195", optional = true }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
url = "1.1.0"
rayon = "1"
num_cpus = "1"
[dev-dependencies]
json = "0.11"
[features]
default = []
clippy = ["clippy_lints"]