File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ extern crate rustc_next_trait_solver;
39
39
#[ cfg( not( feature = "in-rust-tree" ) ) ]
40
40
extern crate ra_ap_rustc_next_trait_solver as rustc_next_trait_solver;
41
41
42
+ #[ cfg( feature = "in-rust-tree" ) ]
43
+ extern crate rustc_data_structures as ena;
44
+
42
45
mod builder;
43
46
mod chalk_db;
44
47
mod chalk_ext;
Original file line number Diff line number Diff line change @@ -40,5 +40,8 @@ pub type AliasTy<'db> = rustc_type_ir::AliasTy<DbInterner<'db>>;
40
40
pub type PolyFnSig < ' db > = Binder < ' db , rustc_type_ir:: FnSig < DbInterner < ' db > > > ;
41
41
pub type TypingMode < ' db > = rustc_type_ir:: TypingMode < DbInterner < ' db > > ;
42
42
43
+ #[ cfg( feature = "in-rust-tree" ) ]
44
+ use rustc_data_structure:: sorted_map:: index_map as indexmap;
45
+
43
46
pub type FxIndexMap < K , V > =
44
47
indexmap:: IndexMap < K , V , std:: hash:: BuildHasherDefault < rustc_hash:: FxHasher > > ;
You can’t perform that action at this time.
0 commit comments