From 3910d02ae3b8d538a1e8de4028511069f33ab107 Mon Sep 17 00:00:00 2001 From: Mathieu Trossevin Date: Fri, 12 Jan 2024 10:51:40 +0100 Subject: [PATCH] Reuse old module names in `use` --- storefd/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storefd/src/lib.rs b/storefd/src/lib.rs index 87b6d19..4a9db89 100644 --- a/storefd/src/lib.rs +++ b/storefd/src/lib.rs @@ -4,7 +4,7 @@ #[cfg(feature = "listenfd")] #[cfg_attr(doc_cfg, doc(cfg(feature = "listenfd")))] -pub use storefd_listen; +pub use storefd_listen as listen; #[cfg(feature = "notify")] #[cfg_attr(doc_cfg, doc(cfg(feature = "notify")))] -pub use storefd_notify; +pub use storefd_notify as notify;