Skip to content

Commit 9e12827

Browse files
authored
Rollup merge of rust-lang#64702 - sinkuu:deps, r=jonas-schievink
Remove unused dependencies
2 parents 0d0f753 + 0423c2a commit 9e12827

File tree

12 files changed

+0
-28
lines changed

12 files changed

+0
-28
lines changed

Cargo.lock

-13
Original file line numberDiff line numberDiff line change
@@ -3324,8 +3324,6 @@ dependencies = [
33243324
"log",
33253325
"rustc",
33263326
"rustc_data_structures",
3327-
"rustc_errors",
3328-
"syntax",
33293327
"syntax_pos",
33303328
]
33313329

@@ -3347,7 +3345,6 @@ dependencies = [
33473345
"log",
33483346
"memmap",
33493347
"num_cpus",
3350-
"parking_lot 0.9.0",
33513348
"rustc",
33523349
"rustc_apfloat",
33533350
"rustc_codegen_utils",
@@ -3366,7 +3363,6 @@ dependencies = [
33663363
name = "rustc_codegen_utils"
33673364
version = "0.0.0"
33683365
dependencies = [
3369-
"flate2",
33703366
"log",
33713367
"punycode",
33723368
"rustc",
@@ -3561,7 +3557,6 @@ name = "rustc_mir"
35613557
version = "0.0.0"
35623558
dependencies = [
35633559
"arena",
3564-
"byteorder",
35653560
"either",
35663561
"graphviz",
35673562
"log",
@@ -3614,7 +3609,6 @@ name = "rustc_plugin_impl"
36143609
version = "0.0.0"
36153610
dependencies = [
36163611
"rustc",
3617-
"rustc_errors",
36183612
"rustc_metadata",
36193613
"syntax",
36203614
"syntax_pos",
@@ -3638,7 +3632,6 @@ version = "0.0.0"
36383632
dependencies = [
36393633
"arena",
36403634
"bitflags",
3641-
"indexmap",
36423635
"log",
36433636
"rustc",
36443637
"rustc_data_structures",
@@ -3660,7 +3653,6 @@ dependencies = [
36603653
"rustc_codegen_utils",
36613654
"rustc_data_structures",
36623655
"rustc_target",
3663-
"rustc_typeck",
36643656
"serde_json",
36653657
"syntax",
36663658
"syntax_pos",
@@ -3691,9 +3683,7 @@ checksum = "b725dadae9fabc488df69a287f5a99c5eaf5d10853842a8a3dfac52476f544ee"
36913683
name = "rustc_traits"
36923684
version = "0.0.0"
36933685
dependencies = [
3694-
"bitflags",
36953686
"chalk-engine",
3696-
"graphviz",
36973687
"log",
36983688
"rustc",
36993689
"rustc_data_structures",
@@ -4056,7 +4046,6 @@ version = "0.0.0"
40564046
dependencies = [
40574047
"alloc",
40584048
"backtrace",
4059-
"cc",
40604049
"cfg-if",
40614050
"compiler_builtins",
40624051
"core",
@@ -4241,7 +4230,6 @@ dependencies = [
42414230
"rustc_data_structures",
42424231
"rustc_errors",
42434232
"rustc_lexer",
4244-
"rustc_macros",
42454233
"rustc_target",
42464234
"scoped-tls",
42474235
"serialize",
@@ -4257,7 +4245,6 @@ dependencies = [
42574245
"log",
42584246
"rustc_data_structures",
42594247
"rustc_errors",
4260-
"rustc_lexer",
42614248
"rustc_target",
42624249
"smallvec",
42634250
"syntax",

src/librustc_ast_borrowck/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ doctest = false
1212

1313
[dependencies]
1414
log = "0.4"
15-
syntax = { path = "../libsyntax" }
1615
syntax_pos = { path = "../libsyntax_pos" }
1716
# for "clarity", rename the graphviz crate to dot; graphviz within `borrowck`
1817
# refers to the borrowck-specific graphviz adapter traits.
1918
dot = { path = "../libgraphviz", package = "graphviz" }
2019
rustc = { path = "../librustc" }
21-
errors = { path = "../librustc_errors", package = "rustc_errors" }
2220
rustc_data_structures = { path = "../librustc_data_structures" }

src/librustc_codegen_ssa/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ memmap = "0.6"
1717
log = "0.4.5"
1818
libc = "0.2.44"
1919
jobserver = "0.1.11"
20-
parking_lot = "0.9"
2120
tempfile = "3.1"
2221

2322
rustc_serialize = { path = "../libserialize", package = "serialize" }

src/librustc_codegen_utils/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ path = "lib.rs"
1010
test = false
1111

1212
[dependencies]
13-
flate2 = "1.0"
1413
log = "0.4"
1514
punycode = "0.4.0"
1615
rustc-demangle = "0.1.16"

src/librustc_mir/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,5 @@ rustc_lexer = { path = "../librustc_lexer" }
2424
rustc_serialize = { path = "../libserialize", package = "serialize" }
2525
syntax = { path = "../libsyntax" }
2626
syntax_pos = { path = "../libsyntax_pos" }
27-
byteorder = { version = "1.3" }
2827
rustc_apfloat = { path = "../librustc_apfloat" }
2928
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

src/librustc_plugin/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ rustc = { path = "../librustc" }
1515
rustc_metadata = { path = "../librustc_metadata" }
1616
syntax = { path = "../libsyntax" }
1717
syntax_pos = { path = "../libsyntax_pos" }
18-
rustc_errors = { path = "../librustc_errors" }

src/librustc_resolve/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ doctest = false
1212

1313
[dependencies]
1414
bitflags = "1.0"
15-
indexmap = "1"
1615
log = "0.4"
1716
syntax = { path = "../libsyntax" }
1817
rustc = { path = "../librustc" }

src/librustc_save_analysis/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ rustc = { path = "../librustc" }
1414
rustc_data_structures = { path = "../librustc_data_structures" }
1515
rustc_codegen_utils = { path = "../librustc_codegen_utils" }
1616
rustc_target = { path = "../librustc_target" }
17-
rustc_typeck = { path = "../librustc_typeck" }
1817
serde_json = "1"
1918
syntax = { path = "../libsyntax" }
2019
syntax_pos = { path = "../libsyntax_pos" }

src/librustc_traits/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ name = "rustc_traits"
99
path = "lib.rs"
1010

1111
[dependencies]
12-
bitflags = "1.0"
13-
graphviz = { path = "../libgraphviz" }
1412
log = { version = "0.4" }
1513
rustc = { path = "../librustc" }
1614
rustc_data_structures = { path = "../librustc_data_structures" }

src/libstd/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ fortanix-sgx-abi = { version = "0.3.2", features = ['rustc-dep-of-std'] }
5353
[target.wasm32-wasi.dependencies]
5454
wasi = { version = "0.7.0", features = ['rustc-dep-of-std', 'alloc'] }
5555

56-
[build-dependencies]
57-
cc = "1.0"
58-
5956
[features]
6057
default = ["std_detect_file_io", "std_detect_dlsym_getauxval"]
6158

src/libsyntax/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ syntax_pos = { path = "../libsyntax_pos" }
1919
errors = { path = "../librustc_errors", package = "rustc_errors" }
2020
rustc_data_structures = { path = "../librustc_data_structures" }
2121
rustc_lexer = { path = "../librustc_lexer" }
22-
rustc_macros = { path = "../librustc_macros" }
2322
rustc_target = { path = "../librustc_target" }
2423
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

src/libsyntax_ext/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ rustc_target = { path = "../librustc_target" }
1818
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
1919
syntax = { path = "../libsyntax" }
2020
syntax_pos = { path = "../libsyntax_pos" }
21-
rustc_lexer = { path = "../librustc_lexer" }

0 commit comments

Comments
 (0)