File tree Expand file tree Collapse file tree 7 files changed +0
-20
lines changed Expand file tree Collapse file tree 7 files changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -3079,8 +3079,6 @@ dependencies = [
30793079 " graphviz" ,
30803080 " jobserver" ,
30813081 " log" ,
3082- " measureme" ,
3083- " num_cpus" ,
30843082 " parking_lot" ,
30853083 " polonius-engine" ,
30863084 " rustc-rayon" ,
@@ -3090,7 +3088,6 @@ dependencies = [
30903088 " rustc_error_codes" ,
30913089 " rustc_errors" ,
30923090 " rustc_feature" ,
3093- " rustc_fs_util" ,
30943091 " rustc_hir" ,
30953092 " rustc_index" ,
30963093 " rustc_macros" ,
@@ -3278,7 +3275,6 @@ dependencies = [
32783275 " jemalloc-sys" ,
32793276 " rustc_codegen_ssa" ,
32803277 " rustc_driver" ,
3281- " rustc_target" ,
32823278]
32833279
32843280[[package ]]
@@ -3409,7 +3405,6 @@ dependencies = [
34093405 " rustc_codegen_utils" ,
34103406 " rustc_data_structures" ,
34113407 " rustc_errors" ,
3412- " rustc_expand" ,
34133408 " rustc_feature" ,
34143409 " rustc_fs_util" ,
34153410 " rustc_hir" ,
@@ -3497,7 +3492,6 @@ name = "rustc_driver"
34973492version = " 0.0.0"
34983493dependencies = [
34993494 " env_logger 0.7.1" ,
3500- " graphviz" ,
35013495 " lazy_static 1.3.0" ,
35023496 " log" ,
35033497 " rustc" ,
@@ -3513,7 +3507,6 @@ dependencies = [
35133507 " rustc_mir" ,
35143508 " rustc_parse" ,
35153509 " rustc_plugin_impl" ,
3516- " rustc_resolve" ,
35173510 " rustc_save_analysis" ,
35183511 " rustc_span" ,
35193512 " rustc_target" ,
@@ -3660,7 +3653,6 @@ dependencies = [
36603653 " log" ,
36613654 " rustc" ,
36623655 " rustc_data_structures" ,
3663- " rustc_error_codes" ,
36643656 " rustc_feature" ,
36653657 " rustc_hir" ,
36663658 " rustc_index" ,
@@ -4462,8 +4454,6 @@ dependencies = [
44624454name = " syntax"
44634455version = " 0.0.0"
44644456dependencies = [
4465- " bitflags" ,
4466- " lazy_static 1.3.0" ,
44674457 " log" ,
44684458 " rustc_data_structures" ,
44694459 " rustc_error_codes" ,
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ bitflags = "1.2.1"
1515fmt_macros = { path = " ../libfmt_macros" }
1616graphviz = { path = " ../libgraphviz" }
1717jobserver = " 0.1"
18- num_cpus = " 1.0"
1918scoped-tls = " 1.0"
2019log = { version = " 0.4" , features = [" release_max_level_info" , " std" ] }
2120rustc-rayon = " 0.3.0"
@@ -36,8 +35,6 @@ backtrace = "0.3.40"
3635parking_lot = " 0.9"
3736byteorder = { version = " 1.3" }
3837chalk-engine = { version = " 0.9.0" , default-features =false }
39- rustc_fs_util = { path = " ../librustc_fs_util" }
4038smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
41- measureme = " 0.5"
4239rustc_error_codes = { path = " ../librustc_error_codes" }
4340rustc_session = { path = " ../librustc_session" }
Original file line number Diff line number Diff line change @@ -31,5 +31,4 @@ rustc_session = { path = "../librustc_session" }
3131rustc_target = { path = " ../librustc_target" }
3232smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
3333syntax = { path = " ../libsyntax" }
34- rustc_expand = { path = " ../librustc_expand" }
3534rustc_span = { path = " ../librustc_span" }
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ path = "lib.rs"
1010crate-type = [" dylib" ]
1111
1212[dependencies ]
13- graphviz = { path = " ../libgraphviz" }
1413lazy_static = " 1.0"
1514log = " 0.4"
1615env_logger = { version = " 0.7" , default-features = false }
@@ -30,7 +29,6 @@ rustc_codegen_utils = { path = "../librustc_codegen_utils" }
3029rustc_error_codes = { path = " ../librustc_error_codes" }
3130rustc_interface = { path = " ../librustc_interface" }
3231rustc_serialize = { path = " ../libserialize" , package = " serialize" }
33- rustc_resolve = { path = " ../librustc_resolve" }
3432syntax = { path = " ../libsyntax" }
3533rustc_span = { path = " ../librustc_span" }
3634
Original file line number Diff line number Diff line change @@ -19,5 +19,4 @@ rustc_span = { path = "../librustc_span" }
1919rustc_data_structures = { path = " ../librustc_data_structures" }
2020rustc_feature = { path = " ../librustc_feature" }
2121rustc_index = { path = " ../librustc_index" }
22- rustc_error_codes = { path = " ../librustc_error_codes" }
2322rustc_session = { path = " ../librustc_session" }
Original file line number Diff line number Diff line change @@ -10,11 +10,9 @@ path = "lib.rs"
1010doctest = false
1111
1212[dependencies ]
13- bitflags = " 1.2.1"
1413rustc_serialize = { path = " ../libserialize" , package = " serialize" }
1514log = " 0.4"
1615scoped-tls = " 1.0"
17- lazy_static = " 1.0.0"
1816rustc_span = { path = " ../librustc_span" }
1917errors = { path = " ../librustc_errors" , package = " rustc_errors" }
2018rustc_data_structures = { path = " ../librustc_data_structures" }
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ name = "rustc_binary"
99path = " rustc.rs"
1010
1111[dependencies ]
12- rustc_target = { path = " ../librustc_target" }
1312rustc_driver = { path = " ../librustc_driver" }
1413
1514# Make sure rustc_codegen_ssa ends up in the sysroot, because this
You can’t perform that action at this time.
0 commit comments