forked from rust-lang/rls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (40 loc) · 1.28 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
43
44
[package]
name = "rls"
version = "0.126.0"
authors = ["Nick Cameron <ncameron@mozilla.com>", "Jonathan Turner <jturner@mozilla.com>", "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 hash delivered with nightly-2018-03-14
cargo = { git = "https://github.com/rust-lang/cargo", rev = "5f83bb4044f32b60d06717c609610f67411fc671" }
cargo_metadata = "0.5.2"
env_logger = "0.5"
failure = "0.1.1"
jsonrpc-core = "8.0.1"
languageserver-types = "0.31"
lazy_static = "1"
log = "0.4"
racer = "2.0.12"
rls-analysis = "0.11.3"
rls-blacklist = "0.1.0"
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 = { version = "0.4.0", optional = true }
clippy_lints = { version = "0.0.187", 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 = ["rustfmt"]
rustfmt = ["rustfmt-nightly"]
clippy = ["clippy_lints"]