Skip to content

Commit 7afead9

Browse files
committed
Formatting updates
1 parent 6cd4652 commit 7afead9

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

tokio-postgres/src/lib.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,6 @@
118118
//! | `with-time-0_3` | Enable support for the 0.3 version of the `time` crate. | [time](https://crates.io/crates/time/0.3.0) 0.3 | no |
119119
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
120120

121-
use std::sync::Arc;
122-
123-
use simple_query::SimpleColumn;
124-
125121
pub use crate::cancel_token::CancelToken;
126122
pub use crate::client::Client;
127123
pub use crate::config::Config;
@@ -134,7 +130,7 @@ pub use crate::generic_client::GenericClient;
134130
pub use crate::portal::Portal;
135131
pub use crate::query::RowStream;
136132
pub use crate::row::{Row, SimpleQueryRow};
137-
pub use crate::simple_query::SimpleQueryStream;
133+
pub use crate::simple_query::{SimpleQueryStream, SimpleColumn};
138134
#[cfg(feature = "runtime")]
139135
pub use crate::socket::Socket;
140136
pub use crate::statement::{Column, Statement};
@@ -145,6 +141,7 @@ pub use crate::to_statement::ToStatement;
145141
pub use crate::transaction::Transaction;
146142
pub use crate::transaction_builder::{IsolationLevel, TransactionBuilder};
147143
use crate::types::ToSql;
144+
use std::sync::Arc;
148145

149146
pub mod binary_copy;
150147
mod bind;

0 commit comments

Comments
 (0)