Skip to content

Commit 0b39e2f

Browse files
authored
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 <[email protected]>
1 parent 5c33a63 commit 0b39e2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timely/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl<T: Data + encoding::Data> ExchangeData for T { }
116116
pub struct ReadmeDoctests;
117117

118118
/// A wrapper that indicates a serialization/deserialization strategy.
119-
use encoding::Bincode as Message;
119+
pub use encoding::Bincode as Message;
120120

121121
mod encoding {
122122

0 commit comments

Comments
 (0)