forked from rust-lang/rls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 857 Bytes
/
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
[package]
name = "rls"
version = "0.1.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" }
derive-new = "0.3"
env_logger = "0.4"
languageserver-types = "0.10.0"
log = "0.3"
racer = "2.0.6"
rls-analysis = "0.3.2"
rls-data = "= 0.4.1"
rls-span = { version = "0.4", features = ["serialize-serde"] }
rls-vfs = { version = "0.4.2", features = ["racer-impls"] }
rustfmt-nightly = "0.1"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
toml = "0.4"
url = "1.1.0"
url_serde = "0.2.0"