-
Notifications
You must be signed in to change notification settings - Fork 279
/
Cargo.toml
55 lines (45 loc) · 1.08 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
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "racer"
version = "2.2.2"
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"
edition = "2018"
[lib]
name = "racer"
path = "src/racer/lib.rs"
[[bin]]
name = "racer"
path = "src/bin/main.rs"
doc = false
required-features = ["metadata"]
[profile.release]
debug = false # because of #1005
[dependencies]
bitflags = "1.0"
log = "0.4"
env_logger = "0.7.1"
clap = "2.32"
lazy_static = "1.2"
humantime = "2.0.0"
derive_more = "0.99.2"
rls-span = "0.5.1"
lazycell = { version = "1.2", 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"]
[package.metadata.rust-analyzer]
# This package uses #[feature(rustc_private)]
rustc_private = true