aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cli
diff options
context:
space:
mode:
authorAlexander Ekdahl <[email protected]>2019-11-30 00:35:03 +0000
committerAlexander Ekdahl <[email protected]>2019-11-30 00:35:03 +0000
commiteb4e70fc676a97a7b411f372be1727df51a8906a (patch)
treefdd4a2893dcab15a3c72ed2c814070cb8f5541e4 /crates/ra_cli
parent9c01c0dcb5308d8d50ddf2d3fad6599fbff7d3dd (diff)
Remove flexi_logger from ra_lsp_server
Diffstat (limited to 'crates/ra_cli')
-rw-r--r--crates/ra_cli/Cargo.toml6
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/ra_cli/Cargo.toml b/crates/ra_cli/Cargo.toml
index 9718b4b54..f63f40c99 100644
--- a/crates/ra_cli/Cargo.toml
+++ b/crates/ra_cli/Cargo.toml
@@ -8,6 +8,7 @@ publish = false
8[dependencies] 8[dependencies]
9pico-args = "0.3.0" 9pico-args = "0.3.0"
10log = "0.4" 10log = "0.4"
11env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] }
11 12
12ra_syntax = { path = "../ra_syntax" } 13ra_syntax = { path = "../ra_syntax" }
13ra_ide = { path = "../ra_ide" } 14ra_ide = { path = "../ra_ide" }
@@ -19,8 +20,3 @@ ra_db = { path = "../ra_db" }
19path = "../ra_prof" 20path = "../ra_prof"
20# features = [ "cpu_profiler" ] 21# features = [ "cpu_profiler" ]
21# features = [ "jemalloc" ] 22# features = [ "jemalloc" ]
22
23[dependencies.env_logger]
24version = "0.7.1"
25default-features = false
26features = ["humantime"]