File tree Expand file tree Collapse file tree 5 files changed +2
-7
lines changed Expand file tree Collapse file tree 5 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ sudo: required
3
3
rust :
4
4
- nightly
5
5
- beta
6
- - 1.8 .0
6
+ - 1.9 .0
7
7
addons :
8
8
postgresql : 9.4
9
9
before_script :
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ byteorder = "0.5"
29
29
log = " 0.3"
30
30
phf = " =0.7.15"
31
31
hex = " 0.2"
32
- net2 = " 0.2.16"
33
32
rustc-serialize = { version = " 0.3" , optional = true }
34
33
chrono = { version = " 0.2.14" , optional = true }
35
34
openssl = { version = " >= 0.6.4, < 0.8" , optional = true }
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ fn main() {
51
51
```
52
52
53
53
## Requirements
54
- * ** Rust** - Rust-Postgres is developed against the 1.7 release of Rust
54
+ * ** Rust** - Rust-Postgres is developed against the 1.9 release of Rust
55
55
available on http://www.rust-lang.org . It should also compile against more
56
56
recent releases.
57
57
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ extern crate log;
51
51
extern crate phf;
52
52
#[ cfg( feature = "unix_socket" ) ]
53
53
extern crate unix_socket;
54
- extern crate net2;
55
54
56
55
use bufstream:: BufStream ;
57
56
use md5:: Md5 ;
Original file line number Diff line number Diff line change 1
1
use byteorder:: ReadBytesExt ;
2
- // this import needs to stay to support pre 1.9 users
3
- #[ allow( unused_imports) ]
4
- use net2:: TcpStreamExt ;
5
2
use std:: error:: Error ;
6
3
use std:: io;
7
4
use std:: io:: prelude:: * ;
You can’t perform that action at this time.
0 commit comments