File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ sudo: required
33rust :
44- nightly
55- beta
6- - 1.8 .0
6+ - 1.9 .0
77addons :
88 postgresql : 9.4
99before_script :
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ byteorder = "0.5"
2929log = " 0.3"
3030phf = " =0.7.15"
3131hex = " 0.2"
32- net2 = " 0.2.16"
3332rustc-serialize = { version = " 0.3" , optional = true }
3433chrono = { version = " 0.2.14" , optional = true }
3534openssl = { version = " >= 0.6.4, < 0.8" , optional = true }
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ fn main() {
5151```
5252
5353## 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
5555 available on http://www.rust-lang.org . It should also compile against more
5656 recent releases.
5757
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ extern crate log;
5151extern crate phf;
5252#[ cfg( feature = "unix_socket" ) ]
5353extern crate unix_socket;
54- extern crate net2;
5554
5655use bufstream:: BufStream ;
5756use md5:: Md5 ;
Original file line number Diff line number Diff line change 11use byteorder:: ReadBytesExt ;
2- // this import needs to stay to support pre 1.9 users
3- #[ allow( unused_imports) ]
4- use net2:: TcpStreamExt ;
52use std:: error:: Error ;
63use std:: io;
74use std:: io:: prelude:: * ;
You can’t perform that action at this time.
0 commit comments