Skip to content

Commit 0bc8a6e

Browse files
committed
address comments
1 parent 06b7709 commit 0bc8a6e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! A pure-Rust frontend for the popular `PostgreSQL` database.
1+
//! A pure-Rust frontend for the popular PostgreSQL database.
22
//!
33
//! ```rust,no_run
44
//! extern crate postgres;

src/priv_io.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
use byteorder::ReadBytesExt;
2+
// this import needs to stay to support pre 1.9 users
3+
#[allow(unused_imports)]
4+
use net2::TcpStreamExt;
25
use std::error::Error;
36
use std::io;
47
use std::io::prelude::*;

0 commit comments

Comments
 (0)