diff options
author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2018-08-25 09:47:24 +0100 |
---|---|---|
committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2018-08-25 09:47:24 +0100 |
commit | 70333c8edfd9fd958ceb5669b578a33a289473fe (patch) | |
tree | 8722c1f5db217be94449ed13103e4bf5ca82d5d6 /crates/cli | |
parent | 220d285b4afb250e59a08e9b1ad38c2fc2275782 (diff) |
remove reesports
Diffstat (limited to 'crates/cli')
-rw-r--r-- | crates/cli/Cargo.toml | 1 | ||||
-rw-r--r-- | crates/cli/src/main.rs | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index ac89a48d3..7dbbe3f4e 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml | |||
@@ -7,5 +7,6 @@ publish = false | |||
7 | [dependencies] | 7 | [dependencies] |
8 | clap = "2.32.0" | 8 | clap = "2.32.0" |
9 | failure = "0.1.1" | 9 | failure = "0.1.1" |
10 | libsyntax2 = { path = "../libsyntax2" } | ||
10 | libeditor = { path = "../libeditor" } | 11 | libeditor = { path = "../libeditor" } |
11 | tools = { path = "../tools" } | 12 | tools = { path = "../tools" } |
diff --git a/crates/cli/src/main.rs b/crates/cli/src/main.rs index fc28691fc..bcb0c9b98 100644 --- a/crates/cli/src/main.rs +++ b/crates/cli/src/main.rs | |||
@@ -1,6 +1,7 @@ | |||
1 | extern crate clap; | 1 | extern crate clap; |
2 | #[macro_use] | 2 | #[macro_use] |
3 | extern crate failure; | 3 | extern crate failure; |
4 | extern crate libsyntax2; | ||
4 | extern crate libeditor; | 5 | extern crate libeditor; |
5 | extern crate tools; | 6 | extern crate tools; |
6 | 7 | ||
@@ -10,7 +11,8 @@ use std::{ | |||
10 | }; | 11 | }; |
11 | use clap::{App, Arg, SubCommand}; | 12 | use clap::{App, Arg, SubCommand}; |
12 | use tools::collect_tests; | 13 | use tools::collect_tests; |
13 | use libeditor::{File, syntax_tree, file_structure}; | 14 | use libsyntax2::File; |
15 | use libeditor::{syntax_tree, file_structure}; | ||
14 | 16 | ||
15 | type Result<T> = ::std::result::Result<T, failure::Error>; | 17 | type Result<T> = ::std::result::Result<T, failure::Error>; |
16 | 18 | ||