From c2c8f8a56a564e635e000d83aeffb92a2a5675e0 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Wed, 3 Oct 2018 14:13:06 +0200 Subject: [PATCH 1/3] Update clippy --- src/Cargo.lock | 1 + src/tools/clippy | 2 +- src/tools/rustc-workspace-hack/Cargo.toml | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Cargo.lock b/src/Cargo.lock index 926016e5f0262..e0dbbfcf7a8c3 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -2074,6 +2074,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "rustc-workspace-hack" version = "1.0.0" dependencies = [ + "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/src/tools/clippy b/src/tools/clippy index e69fe2fb19b7b..c47b9489ab4f2 160000 --- a/src/tools/clippy +++ b/src/tools/clippy @@ -1 +1 @@ -Subproject commit e69fe2fb19b7b2f3b07fe1178c536810dabf896f +Subproject commit c47b9489ab4f2124e2e93a3b1ec8a2eeafe54cf4 diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index 755b172dd1b2c..e8e812e70faa3 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -47,3 +47,7 @@ features = [ "wincon", "wincrypt", ] + +[dependencies.serde_json] +version = "1.0.31" +features = ["raw_value"] \ No newline at end of file From 54c416d84175e033ea884082acbf5b639418022e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20S=CC=B6c=CC=B6h=CC=B6n=CC=B6e=CC=B6i=CC=B6d=CC=B6?= =?UTF-8?q?e=CC=B6r=20Scherer?= Date: Thu, 4 Oct 2018 12:40:04 +0200 Subject: [PATCH 2/3] Add features to the workspace hack --- src/tools/rustc-workspace-hack/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index e8e812e70faa3..77ffe41d7f679 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -50,4 +50,8 @@ features = [ [dependencies.serde_json] version = "1.0.31" -features = ["raw_value"] \ No newline at end of file +features = ["raw_value"] + +[dependencies.rand] +version = "0.5.5" +features = ["i128_support"] From b0643add6daefa678b75ebdb0753772612fdd350 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Thu, 4 Oct 2018 12:51:58 +0200 Subject: [PATCH 3/3] Update Cargo.lock --- src/Cargo.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Cargo.lock b/src/Cargo.lock index e0dbbfcf7a8c3..5d9f84650470d 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -2074,6 +2074,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "rustc-workspace-hack" version = "1.0.0" dependencies = [ + "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",