mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
style: rustfmt
This commit is contained in:
parent
1a7480774b
commit
33ab2b9049
1 changed files with 4 additions and 2 deletions
|
@ -1,9 +1,11 @@
|
|||
use futures::TryStreamExt;
|
||||
use sqlx::postgres::PgRow;
|
||||
use std::env;
|
||||
use sqlx::postgres::{PgConnection, PgConnectOptions, PgDatabaseError, PgErrorPosition, PgSeverity};
|
||||
use sqlx::postgres::{
|
||||
PgConnectOptions, PgConnection, PgDatabaseError, PgErrorPosition, PgSeverity,
|
||||
};
|
||||
use sqlx::{postgres::Postgres, Connect, Connection, Executor, PgPool, Row};
|
||||
use sqlx_test::new;
|
||||
use std::env;
|
||||
use std::time::Duration;
|
||||
|
||||
#[sqlx_macros::test]
|
||||
|
|
Loading…
Reference in a new issue