This commit is contained in:
Steven Fackler
2017-05-07 19:16:18 -07:00
parent 6b008766bf
commit f7f9e243ce
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ use std::io;
use std::error;
#[doc(inline)]
pub use postgres_shared::error::*;
pub use postgres_shared::error::{DbError, ConnectError, ErrorPosition, Severity, SqlState};
/// An error encountered when communicating with the Postgres server.
#[derive(Debug)]

View File

@@ -1,3 +1,3 @@
//! Connection parameters
pub use postgres_shared::params::*;
pub use postgres_shared::params::{Builder, ConnectParams, User, Host, IntoConnectParams};