From 03a6495522143570581c8f678ae97a03549e13c5 Mon Sep 17 00:00:00 2001 From: Denis Kolodin Date: Tue, 11 Oct 2016 20:28:21 +0300 Subject: [PATCH] Pub crates types are used --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 090b574..1c115df 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,8 +1,8 @@ //! Postgres support for the `r2d2` connection pool. #![doc(html_root_url="https://sfackler.github.io/r2d2-postgres/doc/v0.10.1")] #![warn(missing_docs)] -extern crate r2d2; -extern crate postgres; +pub extern crate r2d2; +pub extern crate postgres; use std::error; use std::error::Error as _StdError;