From 983de2ef9d5a82e4ff9f18ec1c032190adb39400 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 29 Dec 2018 21:06:24 -0800 Subject: [PATCH] Rustfmt --- postgres/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres/src/lib.rs b/postgres/src/lib.rs index 58237696..d3c68c89 100644 --- a/postgres/src/lib.rs +++ b/postgres/src/lib.rs @@ -3,9 +3,9 @@ use lazy_static::lazy_static; #[cfg(feature = "runtime")] use tokio::runtime::{self, Runtime}; +mod client; #[cfg(feature = "runtime")] mod config; -mod client; mod copy_out_reader; mod portal; mod query; @@ -18,9 +18,9 @@ mod transaction; #[cfg(test)] mod test; +pub use crate::client::*; #[cfg(feature = "runtime")] pub use crate::config::*; -pub use crate::client::*; pub use crate::copy_out_reader::*; pub use crate::portal::*; pub use crate::query::*;