about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-02-27 15:56:16 -0600
committerMark Mansi <markm@cs.wisc.edu>2018-03-05 14:43:44 -0600
commit0fc5daebfb4218312f0f2ee28de7c6bcd40b632c (patch)
tree75241396899d3e34c3f672ab5a11c42ee6747147 /src
parent489f2f1206fbae4da67bdcbae70cd896f0537a46 (diff)
downloadrust-0fc5daebfb4218312f0f2ee28de7c6bcd40b632c.tar.gz
rust-0fc5daebfb4218312f0f2ee28de7c6bcd40b632c.zip
Add a few missing deps
Diffstat (limited to 'src')
-rw-r--r--src/tools/tidy/src/deps.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs
index 8cfba21eb6d..d63926ee3bd 100644
--- a/src/tools/tidy/src/deps.rs
+++ b/src/tools/tidy/src/deps.rs
@@ -108,6 +108,9 @@ static WHITELIST: &'static [Crate] = &[
     Crate("unicode-width"),
     Crate("winapi"),
     Crate("winapi-build"),
+    Crate("proc_macro"),
+    Crate("winapi-i686-pc-windows-gnu"),
+    Crate("winapi-x86_64-pc-windows-gnu"),
 ];
 
 // Some types for Serde to deserialize the output of `cargo metadata` to...