From 0b39e2f6f236660239f571ede231edcae40b2188 Mon Sep 17 00:00:00 2001 From: Moritz Hoffmann Date: Tue, 12 Nov 2024 09:04:26 +0100 Subject: [PATCH] Public Message type (#599) Currently, it's not possible to access `Message` from dependent crates. Fix it by `pub` using the type. Signed-off-by: Moritz Hoffmann --- timely/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timely/src/lib.rs b/timely/src/lib.rs index c268f17da..e7c2d73db 100644 --- a/timely/src/lib.rs +++ b/timely/src/lib.rs @@ -116,7 +116,7 @@ impl ExchangeData for T { } pub struct ReadmeDoctests; /// A wrapper that indicates a serialization/deserialization strategy. -use encoding::Bincode as Message; +pub use encoding::Bincode as Message; mod encoding {