about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2018-08-12 23:26:54 +0200
committerGitHub <noreply@github.com>2018-08-12 23:26:54 +0200
commit0903b18e9f867a5a8e2418b1dd7212ccdb0c3816 (patch)
tree78bf79ddbd8a7b6ad04e15d0c042298ae1c189f0
parentd509e31b93db22041617f691f3df4d64bb646dd3 (diff)
parent6c7473d0248602060d764cd355363ac6b69b8ae3 (diff)
downloadrust-0903b18e9f867a5a8e2418b1dd7212ccdb0c3816.tar.gz
rust-0903b18e9f867a5a8e2418b1dd7212ccdb0c3816.zip
Rollup merge of #53210 - alexcrichton:deny-rustc-syntax, r=nrc
Deny future duplication of rustc-ap-syntax

Enable the tidy check to forbid this!

Closes #53006
-rw-r--r--src/tools/tidy/src/deps.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs
index 42f4e46085e..d63f479f29d 100644
--- a/src/tools/tidy/src/deps.rs
+++ b/src/tools/tidy/src/deps.rs
@@ -353,7 +353,7 @@ fn check_crate_duplicate(resolve: &Resolve, bad: &mut bool) {
         // versions of them accidentally sneak into our dependency graph to
         // ensure we keep our CI times under control
         // "cargo", // FIXME(#53005)
-        // "rustc-ap-syntax", // FIXME(#53006)
+        "rustc-ap-syntax",
     ];
     let mut name_to_id = HashMap::new();
     for node in resolve.nodes.iter() {