Skip to content

Commit f443ae6

Browse files
committed
Remove unused dependencies
1 parent dbcce10 commit f443ae6

File tree

7 files changed

+0
-20
lines changed

7 files changed

+0
-20
lines changed

Cargo.lock

-10
Original file line numberDiff line numberDiff 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"
34973492
version = "0.0.0"
34983493
dependencies = [
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 = [
44624454
name = "syntax"
44634455
version = "0.0.0"
44644456
dependencies = [
4465-
"bitflags",
4466-
"lazy_static 1.3.0",
44674457
"log",
44684458
"rustc_data_structures",
44694459
"rustc_error_codes",

src/librustc/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ bitflags = "1.2.1"
1515
fmt_macros = { path = "../libfmt_macros" }
1616
graphviz = { path = "../libgraphviz" }
1717
jobserver = "0.1"
18-
num_cpus = "1.0"
1918
scoped-tls = "1.0"
2019
log = { version = "0.4", features = ["release_max_level_info", "std"] }
2120
rustc-rayon = "0.3.0"
@@ -36,8 +35,6 @@ backtrace = "0.3.40"
3635
parking_lot = "0.9"
3736
byteorder = { version = "1.3" }
3837
chalk-engine = { version = "0.9.0", default-features=false }
39-
rustc_fs_util = { path = "../librustc_fs_util" }
4038
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
41-
measureme = "0.5"
4239
rustc_error_codes = { path = "../librustc_error_codes" }
4340
rustc_session = { path = "../librustc_session" }

src/librustc_codegen_llvm/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ rustc_session = { path = "../librustc_session" }
3131
rustc_target = { path = "../librustc_target" }
3232
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
3333
syntax = { path = "../libsyntax" }
34-
rustc_expand = { path = "../librustc_expand" }
3534
rustc_span = { path = "../librustc_span" }

src/librustc_driver/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ path = "lib.rs"
1010
crate-type = ["dylib"]
1111

1212
[dependencies]
13-
graphviz = { path = "../libgraphviz" }
1413
lazy_static = "1.0"
1514
log = "0.4"
1615
env_logger = { version = "0.7", default-features = false }
@@ -30,7 +29,6 @@ rustc_codegen_utils = { path = "../librustc_codegen_utils" }
3029
rustc_error_codes = { path = "../librustc_error_codes" }
3130
rustc_interface = { path = "../librustc_interface" }
3231
rustc_serialize = { path = "../libserialize", package = "serialize" }
33-
rustc_resolve = { path = "../librustc_resolve" }
3432
syntax = { path = "../libsyntax" }
3533
rustc_span = { path = "../librustc_span" }
3634

src/librustc_lint/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ rustc_span = { path = "../librustc_span" }
1919
rustc_data_structures = { path = "../librustc_data_structures" }
2020
rustc_feature = { path = "../librustc_feature" }
2121
rustc_index = { path = "../librustc_index" }
22-
rustc_error_codes = { path = "../librustc_error_codes" }
2322
rustc_session = { path = "../librustc_session" }

src/libsyntax/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ path = "lib.rs"
1010
doctest = false
1111

1212
[dependencies]
13-
bitflags = "1.2.1"
1413
rustc_serialize = { path = "../libserialize", package = "serialize" }
1514
log = "0.4"
1615
scoped-tls = "1.0"
17-
lazy_static = "1.0.0"
1816
rustc_span = { path = "../librustc_span" }
1917
errors = { path = "../librustc_errors", package = "rustc_errors" }
2018
rustc_data_structures = { path = "../librustc_data_structures" }

src/rustc/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ name = "rustc_binary"
99
path = "rustc.rs"
1010

1111
[dependencies]
12-
rustc_target = { path = "../librustc_target" }
1312
rustc_driver = { path = "../librustc_driver" }
1413

1514
# Make sure rustc_codegen_ssa ends up in the sysroot, because this

0 commit comments

Comments
 (0)