Include unsafety and abi in bare fn types
diff --git a/src/lib.rs b/src/lib.rs
index 3af64bf..a59e8b6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -54,9 +54,9 @@
#[cfg(feature = "full")]
mod item;
#[cfg(feature = "full")]
-pub use item::{Abi, Constness, Defaultness, FnArg, FnDecl, ForeignItemKind, ForeignItem,
+pub use item::{Constness, Defaultness, FnArg, FnDecl, ForeignItemKind, ForeignItem,
ForeignMod, ImplItem, ImplItemKind, ImplPolarity, Item, ItemKind, MethodSig,
- PathListItem, TraitItem, TraitItemKind, Unsafety, ViewPath};
+ PathListItem, TraitItem, TraitItemKind, ViewPath};
mod lit;
pub use lit::{FloatTy, IntTy, Lit, StrStyle};
@@ -81,9 +81,9 @@
mod space;
mod ty;
-pub use ty::{AngleBracketedParameterData, BareFnArg, BareFnTy, FunctionRetTy, MutTy, Mutability,
- ParenthesizedParameterData, Path, PathParameters, PathSegment, PolyTraitRef, QSelf,
- Ty, TypeBinding};
+pub use ty::{Abi, AngleBracketedParameterData, BareFnArg, BareFnTy, FunctionRetTy, MutTy,
+ Mutability, ParenthesizedParameterData, Path, PathParameters, PathSegment,
+ PolyTraitRef, QSelf, Ty, TypeBinding, Unsafety};
#[cfg(feature = "aster")]
pub mod aster;