From adc50a9e2be70c99617017036fb1d922d22506cf Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Wed, 18 Sep 2024 10:21:24 +0200 Subject: [PATCH] Make `zenoh::session::ZenohId` stable (#1437) * Make `zenoh::session::ZenohId` stable * Make `zenoh::session::EntityId` stable * Fix formatting --- zenoh/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zenoh/src/lib.rs b/zenoh/src/lib.rs index e09ca91f34..94c34a2802 100644 --- a/zenoh/src/lib.rs +++ b/zenoh/src/lib.rs @@ -186,7 +186,9 @@ pub mod key_expr { /// Zenoh [`Session`] and associated types pub mod session { #[zenoh_macros::unstable] - pub use zenoh_config::wrappers::{EntityGlobalId, ZenohId}; + pub use zenoh_config::wrappers::EntityGlobalId; + pub use zenoh_config::wrappers::ZenohId; + #[zenoh_macros::unstable] pub use zenoh_protocol::core::EntityId; #[zenoh_macros::internal]