File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ log = "0.3"
30
30
rustc-serialize = " 0.3"
31
31
byteorder = " 0.3"
32
32
debug-builders = " 0.1"
33
+ bufstream = " 0.1"
33
34
uuid = { version = " 0.1" , optional = true }
34
35
unix_socket = { version = " 0.3" , optional = true }
35
36
time = { version = " 0.1.14" , optional = true }
Original file line number Diff line number Diff line change 45
45
#![ doc( html_root_url="https://sfackler.github.io/rust-postgres/doc" ) ]
46
46
#![ warn( missing_docs) ]
47
47
48
+ extern crate bufstream;
48
49
extern crate byteorder;
49
50
#[ macro_use]
50
51
extern crate log;
@@ -55,6 +56,7 @@ extern crate rustc_serialize as serialize;
55
56
extern crate unix_socket;
56
57
extern crate debug_builders;
57
58
59
+ use bufstream:: BufStream ;
58
60
use debug_builders:: DebugStruct ;
59
61
use openssl:: crypto:: hash:: { self , Hasher } ;
60
62
use openssl:: ssl:: { SslContext , MaybeSslStream } ;
@@ -65,7 +67,7 @@ use std::cell::{Cell, RefCell};
65
67
use std:: collections:: { VecDeque , HashMap } ;
66
68
use std:: fmt;
67
69
use std:: iter:: IntoIterator ;
68
- use std:: io:: { self , BufStream } ;
70
+ use std:: io;
69
71
use std:: io:: prelude:: * ;
70
72
use std:: mem;
71
73
use std:: slice;
You can’t perform that action at this time.
0 commit comments