File tree 7 files changed +0
-20
lines changed
7 files changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -3079,8 +3079,6 @@ dependencies = [
3079
3079
" graphviz" ,
3080
3080
" jobserver" ,
3081
3081
" log" ,
3082
- " measureme" ,
3083
- " num_cpus" ,
3084
3082
" parking_lot" ,
3085
3083
" polonius-engine" ,
3086
3084
" rustc-rayon" ,
@@ -3090,7 +3088,6 @@ dependencies = [
3090
3088
" rustc_error_codes" ,
3091
3089
" rustc_errors" ,
3092
3090
" rustc_feature" ,
3093
- " rustc_fs_util" ,
3094
3091
" rustc_hir" ,
3095
3092
" rustc_index" ,
3096
3093
" rustc_macros" ,
@@ -3278,7 +3275,6 @@ dependencies = [
3278
3275
" jemalloc-sys" ,
3279
3276
" rustc_codegen_ssa" ,
3280
3277
" rustc_driver" ,
3281
- " rustc_target" ,
3282
3278
]
3283
3279
3284
3280
[[package ]]
@@ -3409,7 +3405,6 @@ dependencies = [
3409
3405
" rustc_codegen_utils" ,
3410
3406
" rustc_data_structures" ,
3411
3407
" rustc_errors" ,
3412
- " rustc_expand" ,
3413
3408
" rustc_feature" ,
3414
3409
" rustc_fs_util" ,
3415
3410
" rustc_hir" ,
@@ -3497,7 +3492,6 @@ name = "rustc_driver"
3497
3492
version = " 0.0.0"
3498
3493
dependencies = [
3499
3494
" env_logger 0.7.1" ,
3500
- " graphviz" ,
3501
3495
" lazy_static 1.3.0" ,
3502
3496
" log" ,
3503
3497
" rustc" ,
@@ -3513,7 +3507,6 @@ dependencies = [
3513
3507
" rustc_mir" ,
3514
3508
" rustc_parse" ,
3515
3509
" rustc_plugin_impl" ,
3516
- " rustc_resolve" ,
3517
3510
" rustc_save_analysis" ,
3518
3511
" rustc_span" ,
3519
3512
" rustc_target" ,
@@ -3660,7 +3653,6 @@ dependencies = [
3660
3653
" log" ,
3661
3654
" rustc" ,
3662
3655
" rustc_data_structures" ,
3663
- " rustc_error_codes" ,
3664
3656
" rustc_feature" ,
3665
3657
" rustc_hir" ,
3666
3658
" rustc_index" ,
@@ -4462,8 +4454,6 @@ dependencies = [
4462
4454
name = " syntax"
4463
4455
version = " 0.0.0"
4464
4456
dependencies = [
4465
- " bitflags" ,
4466
- " lazy_static 1.3.0" ,
4467
4457
" log" ,
4468
4458
" rustc_data_structures" ,
4469
4459
" rustc_error_codes" ,
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ bitflags = "1.2.1"
15
15
fmt_macros = { path = " ../libfmt_macros" }
16
16
graphviz = { path = " ../libgraphviz" }
17
17
jobserver = " 0.1"
18
- num_cpus = " 1.0"
19
18
scoped-tls = " 1.0"
20
19
log = { version = " 0.4" , features = [" release_max_level_info" , " std" ] }
21
20
rustc-rayon = " 0.3.0"
@@ -36,8 +35,6 @@ backtrace = "0.3.40"
36
35
parking_lot = " 0.9"
37
36
byteorder = { version = " 1.3" }
38
37
chalk-engine = { version = " 0.9.0" , default-features =false }
39
- rustc_fs_util = { path = " ../librustc_fs_util" }
40
38
smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
41
- measureme = " 0.5"
42
39
rustc_error_codes = { path = " ../librustc_error_codes" }
43
40
rustc_session = { path = " ../librustc_session" }
Original file line number Diff line number Diff line change @@ -31,5 +31,4 @@ rustc_session = { path = "../librustc_session" }
31
31
rustc_target = { path = " ../librustc_target" }
32
32
smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
33
33
syntax = { path = " ../libsyntax" }
34
- rustc_expand = { path = " ../librustc_expand" }
35
34
rustc_span = { path = " ../librustc_span" }
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ path = "lib.rs"
10
10
crate-type = [" dylib" ]
11
11
12
12
[dependencies ]
13
- graphviz = { path = " ../libgraphviz" }
14
13
lazy_static = " 1.0"
15
14
log = " 0.4"
16
15
env_logger = { version = " 0.7" , default-features = false }
@@ -30,7 +29,6 @@ rustc_codegen_utils = { path = "../librustc_codegen_utils" }
30
29
rustc_error_codes = { path = " ../librustc_error_codes" }
31
30
rustc_interface = { path = " ../librustc_interface" }
32
31
rustc_serialize = { path = " ../libserialize" , package = " serialize" }
33
- rustc_resolve = { path = " ../librustc_resolve" }
34
32
syntax = { path = " ../libsyntax" }
35
33
rustc_span = { path = " ../librustc_span" }
36
34
Original file line number Diff line number Diff line change @@ -19,5 +19,4 @@ rustc_span = { path = "../librustc_span" }
19
19
rustc_data_structures = { path = " ../librustc_data_structures" }
20
20
rustc_feature = { path = " ../librustc_feature" }
21
21
rustc_index = { path = " ../librustc_index" }
22
- rustc_error_codes = { path = " ../librustc_error_codes" }
23
22
rustc_session = { path = " ../librustc_session" }
Original file line number Diff line number Diff line change @@ -10,11 +10,9 @@ path = "lib.rs"
10
10
doctest = false
11
11
12
12
[dependencies ]
13
- bitflags = " 1.2.1"
14
13
rustc_serialize = { path = " ../libserialize" , package = " serialize" }
15
14
log = " 0.4"
16
15
scoped-tls = " 1.0"
17
- lazy_static = " 1.0.0"
18
16
rustc_span = { path = " ../librustc_span" }
19
17
errors = { path = " ../librustc_errors" , package = " rustc_errors" }
20
18
rustc_data_structures = { path = " ../librustc_data_structures" }
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ name = "rustc_binary"
9
9
path = " rustc.rs"
10
10
11
11
[dependencies ]
12
- rustc_target = { path = " ../librustc_target" }
13
12
rustc_driver = { path = " ../librustc_driver" }
14
13
15
14
# Make sure rustc_codegen_ssa ends up in the sysroot, because this
You can’t perform that action at this time.
0 commit comments