aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src
diff options
context:
space:
mode:
authorZac Pullar-Strecker <[email protected]>2020-06-15 03:47:33 +0100
committerZac Pullar-Strecker <[email protected]>2020-06-30 09:10:23 +0100
commit6bba4158cb8938af6e9b128c2c01b15415d502ad (patch)
treecf8fc40c791e3f7259e4a6b7cafacb433b56552f /crates/ra_hir/src
parent1d6f291335c58aac95c1124f55d7fb0834baff2a (diff)
Switch to pulldown-cmark, tidy imports
Diffstat (limited to 'crates/ra_hir/src')
-rw-r--r--crates/ra_hir/src/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/ra_hir/src/lib.rs b/crates/ra_hir/src/lib.rs
index 3364a822f..fe34b30bc 100644
--- a/crates/ra_hir/src/lib.rs
+++ b/crates/ra_hir/src/lib.rs
@@ -66,12 +66,14 @@ pub use hir_def::{
66 body::scope::ExprScopes, 66 body::scope::ExprScopes,
67 builtin_type::BuiltinType, 67 builtin_type::BuiltinType,
68 docs::Documentation, 68 docs::Documentation,
69 item_scope::ItemInNs,
69 nameres::ModuleSource, 70 nameres::ModuleSource,
70 path::{ModPath, Path, PathKind}, 71 path::{ModPath, Path, PathKind},
71 type_ref::Mutability, 72 type_ref::Mutability,
72}; 73};
73pub use hir_expand::{ 74pub use hir_expand::{
74 hygiene::Hygiene, name::Name, HirFileId, InFile, MacroCallId, MacroCallLoc, MacroDefId, 75 hygiene::Hygiene,
75 MacroFile, Origin, 76 name::{AsName, Name},
77 HirFileId, InFile, MacroCallId, MacroCallLoc, MacroDefId, MacroFile, Origin,
76}; 78};
77pub use hir_ty::{display::HirDisplay, CallableDef}; 79pub use hir_ty::{display::HirDisplay, CallableDef};