Skip to content

Commit 0eba870

Browse files
authored
Rollup merge of rust-lang#64384 - mati865:tools_hack, r=alexcrichton
Trim rustc-workspace-hack Those dependencies seem no longer necessary. `./x.py test` and `x86_64-gnu-tools` container passed locally so I think this won't hurt.
2 parents fc8a4bd + 612c394 commit 0eba870

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

Cargo.lock

-4
Original file line numberDiff line numberDiff line change
@@ -3256,13 +3256,9 @@ version = "1.0.0"
32563256
dependencies = [
32573257
"byteorder",
32583258
"crossbeam-utils 0.6.5",
3259-
"parking_lot 0.7.1",
3260-
"rand 0.6.1",
3261-
"scopeguard 0.3.3",
32623259
"serde",
32633260
"serde_json",
32643261
"smallvec",
3265-
"syn 0.15.35",
32663262
"winapi 0.3.6",
32673263
]
32683264

src/tools/rustc-workspace-hack/Cargo.toml

-10
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ path = "lib.rs"
1414
# For documentation about what this is and why in the world these dependencies
1515
# are appearing, see `README.md`.
1616

17-
[build-dependencies]
18-
# Currently Cargo/RLS depend on `failure` which depends on `synstructure` which
19-
# enables this feature. Clippy, however, does not depend on anything that
20-
# enables this feature. Enable it unconditionally.
21-
syn = { version = "0.15", features = ['extra-traits'] }
22-
2317
[target.'cfg(windows)'.dependencies.winapi]
2418
version = "0.3"
2519
features = [
@@ -65,14 +59,10 @@ features = [
6559
[dependencies]
6660
curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true }
6761
crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
68-
parking_lot = { version = "0.7", features = ['nightly'] }
69-
rand = { version = "0.6.1", features = ["i128_support"] }
7062
serde = { version = "1.0.82", features = ['derive'] }
7163
serde_json = { version = "1.0.31", features = ["raw_value"] }
7264
smallvec = { version = "0.6", features = ['union', 'may_dangle'] }
73-
scopeguard = { version = "0.3.3", features = ["use_std", "default"] }
7465
byteorder = { version = "1.2.7", features = ["i128"] }
75-
syn = { version = "0.15.35", features = ["extra-traits", "full"] }
7666

7767

7868
[target.'cfg(not(windows))'.dependencies]

0 commit comments

Comments
 (0)