forked from racer-rust/racer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (33 loc) · 684 Bytes
/
Cargo.toml
File metadata and controls
41 lines (33 loc) · 684 Bytes
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
[package]
name = "racer"
version = "2.0.3"
license = "MIT"
description = "Code completion for Rust"
authors = ["Phil Dawes <phil@phildawes.net>"]
homepage = "https://github.com/phildawes/racer"
repository = "https://github.com/phildawes/racer"
[lib]
name = "racer"
path = "src/racer/lib.rs"
[[bin]]
name = "racer"
path = "src/bin/main.rs"
doc = false
[profile.release]
debug = true
[dependencies]
log = "~0.3.6"
syntex_syntax = "~0.52.0"
syntex_errors = "~0.52.0"
toml = "~0.2.1"
env_logger = "~0.3.4"
typed-arena = "~1.2.0"
clap = "~2.19.0"
[dependencies.clippy]
version = "0.0.103"
optional = true
[dev-dependencies]
rand = "0.3"
lazy_static = "0.2"
[features]
nightly = []