diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2018-06-27 07:05:40 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2018-06-27 07:05:40 -0400 |
| commit | 5bfdb97684546bb3716e11fbd47ebfa8703eb5e5 (patch) | |
| tree | 43e4dea910a80cd1061852dbf14c7edfd1be6b5c /src | |
| parent | 59ea17ed3f598791e241c7e7629c4d67f51d436e (diff) | |
| download | rust-5bfdb97684546bb3716e11fbd47ebfa8703eb5e5.tar.gz rust-5bfdb97684546bb3716e11fbd47ebfa8703eb5e5.zip | |
remove `either` dependency we are not using
Diffstat (limited to 'src')
| -rw-r--r-- | src/Cargo.lock | 1 | ||||
| -rw-r--r-- | src/librustc/Cargo.toml | 1 | ||||
| -rw-r--r-- | src/librustc/lib.rs | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/Cargo.lock b/src/Cargo.lock index f8551dffcf4..b74587e5662 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -1781,7 +1781,6 @@ dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "chalk-engine 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "fmt_macros 0.0.0", "graphviz 0.0.0", diff --git a/src/librustc/Cargo.toml b/src/librustc/Cargo.toml index 542ee9f02c9..457a9f2f625 100644 --- a/src/librustc/Cargo.toml +++ b/src/librustc/Cargo.toml @@ -11,7 +11,6 @@ crate-type = ["dylib"] [dependencies] arena = { path = "../libarena" } bitflags = "1.0" -either = "1.5.0" fmt_macros = { path = "../libfmt_macros" } graphviz = { path = "../libgraphviz" } jobserver = "0.1" diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 7c3d3414846..102efe2bef3 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -79,7 +79,6 @@ extern crate arena; #[macro_use] extern crate bitflags; extern crate core; -extern crate either; extern crate fmt_macros; extern crate getopts; extern crate graphviz; |
