forked from racer-rust/racer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (42 loc) · 992 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "racer"
version = "2.1.7"
license = "MIT"
description = "Code completion for Rust"
authors = ["Phil Dawes <[email protected]>", "The Racer developers"]
homepage = "https://github.com/racer-rust/racer"
repository = "https://github.com/racer-rust/racer"
[lib]
name = "racer"
path = "src/racer/lib.rs"
[[bin]]
name = "racer"
path = "src/bin/main.rs"
doc = false
required-features = ["metadata"]
[profile.release]
debug = true
[dependencies]
bitflags = "1.0"
log = "0.4"
rustc-ap-syntax = "263.0.0"
env_logger = "0.5"
clap = "2.32"
lazy_static = "1.0"
humantime = "1.1"
derive_more = "0.11.0"
rls-span = "0.4.0"
lazycell = {version = "1.0", optional = true}
[dependencies.racer-cargo-metadata]
version = "0.1"
optional = true
path = "metadata"
[dev-dependencies.racer-testutils]
version = "0.1"
path = "testutils"
[features]
default = ["metadata"]
metadata = ["lazycell", "racer-cargo-metadata"]
nightly = []
[workspace]
members = ["interner", "metadata", "testutils"]