From d6b32e511db7b7f8b6f223cbe8d61ad767cae6cb Mon Sep 17 00:00:00 2001 From: Corwin Date: Tue, 9 Apr 2024 21:57:26 +0100 Subject: [PATCH] pub them in external mod --- agb/src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/agb/src/lib.rs b/agb/src/lib.rs index 9d5f72ed..26109560 100644 --- a/agb/src/lib.rs +++ b/agb/src/lib.rs @@ -189,6 +189,12 @@ pub use no_game::no_game; pub(crate) mod arena; mod global_asm; +pub mod external { + pub use critical_section; + pub use once_cell; + pub use portable_atomic; +} + pub use {agb_alloc::ExternalAllocator, agb_alloc::InternalAllocator}; #[cfg(not(any(test, feature = "testing")))]