Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b7709 commit 0bc8a6eCopy full SHA for 0bc8a6e
src/lib.rs
@@ -1,4 +1,4 @@
1
-//! A pure-Rust frontend for the popular `PostgreSQL` database.
+//! A pure-Rust frontend for the popular PostgreSQL database.
2
//!
3
//! ```rust,no_run
4
//! extern crate postgres;
src/priv_io.rs
@@ -1,4 +1,7 @@
use byteorder::ReadBytesExt;
+// this import needs to stay to support pre 1.9 users
+#[allow(unused_imports)]
+use net2::TcpStreamExt;
5
use std::error::Error;
6
use std::io;
7
use std::io::prelude::*;
0 commit comments