From f4cf488e0b083b5d7b7612c650917233163ee9cb Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 5 Mar 2023 04:15:10 +0100 Subject: Remove generic `Hasher` and `Event` from `subscription::Recipe` --- native/src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'native/src/lib.rs') diff --git a/native/src/lib.rs b/native/src/lib.rs index 0fc4f324..2d2e5b38 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -48,14 +48,11 @@ pub mod command; pub mod font; pub mod keyboard; pub mod program; -pub mod subscription; pub mod system; pub mod user_interface; pub mod widget; pub mod window; -mod runtime; - // We disable debug capabilities on release builds unless the `debug` feature // is explicitly enabled. #[cfg(feature = "debug")] @@ -72,6 +69,4 @@ pub use command::Command; pub use debug::Debug; pub use font::Font; pub use program::Program; -pub use runtime::Runtime; -pub use subscription::Subscription; pub use user_interface::UserInterface; -- cgit