From 584aca4c1719462a6c8818e2b246c239f291acdc Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 15 Dec 2019 17:11:39 -0800 Subject: [PATCH] rustfmt --- postgres/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/src/lib.rs b/postgres/src/lib.rs index af112537..b2ff8454 100644 --- a/postgres/src/lib.rs +++ b/postgres/src/lib.rs @@ -72,12 +72,12 @@ pub use crate::row_iter::RowIter; pub use crate::tls::NoTls; pub use crate::transaction::*; +pub mod binary_copy; mod client; pub mod config; mod copy_in_writer; mod copy_out_reader; mod lazy_pin; -pub mod binary_copy; mod row_iter; mod transaction;