Skip to content

Commit f45d0f3

Browse files
committed
Removed unused dependencies on rustc_const_math
1 parent a9366aa commit f45d0f3

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

src/librustc_passes/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ crate-type = ["dylib"]
1212
log = "0.4"
1313
rustc = { path = "../librustc" }
1414
rustc_mir = { path = "../librustc_mir"}
15-
rustc_const_math = { path = "../librustc_const_math" }
1615
rustc_data_structures = { path = "../librustc_data_structures" }
1716
syntax = { path = "../libsyntax" }
1817
syntax_pos = { path = "../libsyntax_pos" }

src/librustc_passes/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#[macro_use]
2424
extern crate rustc;
2525
extern crate rustc_mir;
26-
extern crate rustc_const_math;
2726
extern crate rustc_data_structures;
2827

2928
#[macro_use]

src/librustc_typeck/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ syntax = { path = "../libsyntax" }
1515
arena = { path = "../libarena" }
1616
fmt_macros = { path = "../libfmt_macros" }
1717
rustc = { path = "../librustc" }
18-
rustc_const_math = { path = "../librustc_const_math" }
1918
rustc_data_structures = { path = "../librustc_data_structures" }
2019
rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
2120
rustc_target = { path = "../librustc_target" }

src/librustc_typeck/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ extern crate syntax_pos;
9292
extern crate arena;
9393
#[macro_use] extern crate rustc;
9494
extern crate rustc_platform_intrinsics as intrinsics;
95-
extern crate rustc_const_math;
9695
extern crate rustc_data_structures;
9796
extern crate rustc_errors as errors;
9897
extern crate rustc_target;

src/librustdoc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ extern crate getopts;
3131
extern crate env_logger;
3232
extern crate rustc;
3333
extern crate rustc_data_structures;
34-
extern crate rustc_const_math;
3534
extern crate rustc_trans_utils;
3635
extern crate rustc_driver;
3736
extern crate rustc_resolve;

0 commit comments

Comments
 (0)