From 3e6e601381e2a368edd9057cb4f263b6308e0b26 Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Wed, 18 Dec 2024 07:54:08 -0500 Subject: [PATCH] Remove `extern crate rustc_attr;` from template The crate was recently renamed: https://github.com/rust-lang/rust/pull/134381 --- internal/template/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/template/src/lib.rs b/internal/template/src/lib.rs index c1fff78ed..5f5d4758c 100644 --- a/internal/template/src/lib.rs +++ b/internal/template/src/lib.rs @@ -5,7 +5,6 @@ extern crate rustc_arena; extern crate rustc_ast; extern crate rustc_ast_pretty; -extern crate rustc_attr; extern crate rustc_data_structures; extern crate rustc_errors; extern crate rustc_hir;