Skip to content

Commit 5de5281

Browse files
committed
Auto merge of #54784 - Manishearth:clippyup, r=oli-obk
Update clippy None
2 parents 5472b07 + b0643ad commit 5de5281

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

src/Cargo.lock

+2
Original file line numberDiff line numberDiff line change
@@ -2074,6 +2074,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
20742074
name = "rustc-workspace-hack"
20752075
version = "1.0.0"
20762076
dependencies = [
2077+
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
2078+
"serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
20772079
"syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)",
20782080
"winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
20792081
]

src/tools/clippy

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

+8
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,11 @@ features = [
4747
"wincon",
4848
"wincrypt",
4949
]
50+
51+
[dependencies.serde_json]
52+
version = "1.0.31"
53+
features = ["raw_value"]
54+
55+
[dependencies.rand]
56+
version = "0.5.5"
57+
features = ["i128_support"]

0 commit comments

Comments
 (0)