aboutsummaryrefslogtreecommitdiff
path: root/src/stream.rs
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-03-22 21:45:42 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-03-22 21:45:42 +0000
commit85383fa5eab764d04d0d5db6389728486c4b6805 (patch)
tree6c6459a06a2ce46fa3c2ad94d84fbe5d1be8200f /src/stream.rs
parent451853c8078b8b6c16b38638514f8cdb9233477d (diff)
parentca95bfde00c254d109421786d20367d4fa0a0dc4 (diff)
downloadprotobuf-85383fa5eab764d04d0d5db6389728486c4b6805.tar.gz
Merge "Upgrade rust/crates/protobuf to 2.22.0"
Diffstat (limited to 'src/stream.rs')
-rw-r--r--src/stream.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stream.rs b/src/stream.rs
index dc45953..5ec7df2 100644
--- a/src/stream.rs
+++ b/src/stream.rs
@@ -3,8 +3,9 @@
//! `CodedInputStream` and `CodedOutputStream` implementations
use std::io;
+use std::io::BufRead;
+use std::io::Read;
use std::io::Write;
-use std::io::{BufRead, Read};
use std::mem;
use std::slice;