Add DebuggingPackage.

This commit is contained in:
Stephen Chung
2022-01-25 14:32:42 +08:00
parent 0e5f62574d
commit aee35e5f20
5 changed files with 121 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ pub(crate) mod arithmetic;
pub(crate) mod array_basic;
mod bit_field;
pub(crate) mod blob_basic;
mod debugging;
mod fn_basic;
mod iter_basic;
mod lang_core;
@@ -24,6 +25,8 @@ pub use array_basic::BasicArrayPackage;
pub use bit_field::BitFieldPackage;
#[cfg(not(feature = "no_index"))]
pub use blob_basic::BasicBlobPackage;
#[cfg(feature = "debugging")]
pub use debugging::DebuggingPackage;
pub use fn_basic::BasicFnPackage;
pub use iter_basic::BasicIteratorPackage;
pub use lang_core::LanguageCorePackage;