Skip to content

Commit da42509

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

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
@@ -3325,8 +3325,6 @@ dependencies = [
33253325
"log",
33263326
"rustc",
33273327
"rustc_data_structures",
3328-
"rustc_errors",
3329-
"syntax",
33303328
"syntax_pos",
33313329
]
33323330

@@ -3348,7 +3346,6 @@ dependencies = [
33483346
"log",
33493347
"memmap",
33503348
"num_cpus",
3351-
"parking_lot 0.9.0",
33523349
"rustc",
33533350
"rustc_apfloat",
33543351
"rustc_codegen_utils",
@@ -3367,7 +3364,6 @@ dependencies = [
33673364
name = "rustc_codegen_utils"
33683365
version = "0.0.0"
33693366
dependencies = [
3370-
"flate2",
33713367
"log",
33723368
"punycode",
33733369
"rustc",
@@ -3562,7 +3558,6 @@ name = "rustc_mir"
35623558
version = "0.0.0"
35633559
dependencies = [
35643560
"arena",
3565-
"byteorder",
35663561
"either",
35673562
"graphviz",
35683563
"log",
@@ -3615,7 +3610,6 @@ name = "rustc_plugin_impl"
36153610
version = "0.0.0"
36163611
dependencies = [
36173612
"rustc",
3618-
"rustc_errors",
36193613
"rustc_metadata",
36203614
"syntax",
36213615
"syntax_pos",
@@ -3639,7 +3633,6 @@ version = "0.0.0"
36393633
dependencies = [
36403634
"arena",
36413635
"bitflags",
3642-
"indexmap",
36433636
"log",
36443637
"rustc",
36453638
"rustc_data_structures",
@@ -3661,7 +3654,6 @@ dependencies = [
36613654
"rustc_codegen_utils",
36623655
"rustc_data_structures",
36633656
"rustc_target",
3664-
"rustc_typeck",
36653657
"serde_json",
36663658
"syntax",
36673659
"syntax_pos",
@@ -3692,9 +3684,7 @@ checksum = "b725dadae9fabc488df69a287f5a99c5eaf5d10853842a8a3dfac52476f544ee"
36923684
name = "rustc_traits"
36933685
version = "0.0.0"
36943686
dependencies = [
3695-
"bitflags",
36963687
"chalk-engine",
3697-
"graphviz",
36983688
"log",
36993689
"rustc",
37003690
"rustc_data_structures",
@@ -4057,7 +4047,6 @@ version = "0.0.0"
40574047
dependencies = [
40584048
"alloc",
40594049
"backtrace",
4060-
"cc",
40614050
"cfg-if",
40624051
"compiler_builtins",
40634052
"core",
@@ -4242,7 +4231,6 @@ dependencies = [
42424231
"rustc_data_structures",
42434232
"rustc_errors",
42444233
"rustc_lexer",
4245-
"rustc_macros",
42464234
"rustc_target",
42474235
"scoped-tls",
42484236
"serialize",
@@ -4258,7 +4246,6 @@ dependencies = [
42584246
"log",
42594247
"rustc_data_structures",
42604248
"rustc_errors",
4261-
"rustc_lexer",
42624249
"rustc_target",
42634250
"smallvec",
42644251
"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)