address comments

This commit is contained in:
Oliver Schneider
2016-05-30 12:50:27 +02:00
parent 06b770917b
commit 0bc8a6ec6f
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
//! A pure-Rust frontend for the popular `PostgreSQL` database.
//! A pure-Rust frontend for the popular PostgreSQL database.
//!
//! ```rust,no_run
//! extern crate postgres;

View File

@@ -1,4 +1,7 @@
use byteorder::ReadBytesExt;
// this import needs to stay to support pre 1.9 users
#[allow(unused_imports)]
use net2::TcpStreamExt;
use std::error::Error;
use std::io;
use std::io::prelude::*;