Skip to content

Commit 60cacd3

Browse files
authored
Merge pull request #99 from petrochenkov/master
Fix build on nightly rustc
2 parents b6734e1 + a8a7d86 commit 60cacd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ pub enum Stream {
322322
TcpStream(Option<TcpStream>),
323323
}
324324

325-
trait IoPack: io::Read + io::Write + io::BufRead + 'static { }
325+
pub trait IoPack: io::Read + io::Write + io::BufRead + 'static { }
326326

327327
impl<T: io::Read + io::Write + 'static> IoPack for BufStream<T> { }
328328

0 commit comments

Comments
 (0)