Skip to content

Commit 7001479

Browse files
committed
rename rustc_attr to rustc_attr_parsing and create rustc_attr_data_structures
1 parent 2da770e commit 7001479

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ extern crate tracing;
5858
extern crate rustc_abi;
5959
extern crate rustc_apfloat;
6060
extern crate rustc_ast;
61-
extern crate rustc_attr;
61+
extern crate rustc_attr_parsing;
6262
extern crate rustc_const_eval;
6363
extern crate rustc_data_structures;
6464
extern crate rustc_errors;

src/machine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::{fmt, process};
1111
use rand::rngs::StdRng;
1212
use rand::{Rng, SeedableRng};
1313
use rustc_abi::{Align, ExternAbi, Size};
14-
use rustc_attr::InlineAttr;
14+
use rustc_attr_parsing::InlineAttr;
1515
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
1616
#[allow(unused)]
1717
use rustc_data_structures::static_assert_size;

0 commit comments

Comments
 (0)