File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 118
118
//! | `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 |
119
119
#![ warn( rust_2018_idioms, clippy:: all, missing_docs) ]
120
120
121
- use std:: sync:: Arc ;
122
-
123
- use simple_query:: SimpleColumn ;
124
-
125
121
pub use crate :: cancel_token:: CancelToken ;
126
122
pub use crate :: client:: Client ;
127
123
pub use crate :: config:: Config ;
@@ -134,7 +130,7 @@ pub use crate::generic_client::GenericClient;
134
130
pub use crate :: portal:: Portal ;
135
131
pub use crate :: query:: RowStream ;
136
132
pub use crate :: row:: { Row , SimpleQueryRow } ;
137
- pub use crate :: simple_query:: SimpleQueryStream ;
133
+ pub use crate :: simple_query:: { SimpleQueryStream , SimpleColumn } ;
138
134
#[ cfg( feature = "runtime" ) ]
139
135
pub use crate :: socket:: Socket ;
140
136
pub use crate :: statement:: { Column , Statement } ;
@@ -145,6 +141,7 @@ pub use crate::to_statement::ToStatement;
145
141
pub use crate :: transaction:: Transaction ;
146
142
pub use crate :: transaction_builder:: { IsolationLevel , TransactionBuilder } ;
147
143
use crate :: types:: ToSql ;
144
+ use std:: sync:: Arc ;
148
145
149
146
pub mod binary_copy;
150
147
mod bind;
You can’t perform that action at this time.
0 commit comments