diff options
| author | Caleb Cartwright <caleb.cartwright@outlook.com> | 2022-06-12 22:03:05 -0500 |
|---|---|---|
| committer | Caleb Cartwright <caleb.cartwright@outlook.com> | 2022-06-12 22:03:05 -0500 |
| commit | ecddc26b0ec4fcf23e066f2f892c40c1beb2f5ad (patch) | |
| tree | 1b94fc48d14662c5c21e1fe5ccc614a197a6da16 /src/tools/rustfmt/tests/source/configs | |
| parent | 1fb9603022fe20814d3b7980a3c88299b8e1f747 (diff) | |
| parent | 7b73b60faca71d01d900e49831fcb84553e93019 (diff) | |
| download | rust-ecddc26b0ec4fcf23e066f2f892c40c1beb2f5ad.tar.gz rust-ecddc26b0ec4fcf23e066f2f892c40c1beb2f5ad.zip | |
Merge commit '7b73b60faca71d01d900e49831fcb84553e93019' into sync-rustfmt
Diffstat (limited to 'src/tools/rustfmt/tests/source/configs')
| -rw-r--r-- | src/tools/rustfmt/tests/source/configs/group_imports/StdExternalCrate-non_consecutive.rs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/configs/group_imports/StdExternalCrate-non_consecutive.rs b/src/tools/rustfmt/tests/source/configs/group_imports/StdExternalCrate-non_consecutive.rs new file mode 100644 index 00000000000..f239a0efa08 --- /dev/null +++ b/src/tools/rustfmt/tests/source/configs/group_imports/StdExternalCrate-non_consecutive.rs @@ -0,0 +1,27 @@ +// rustfmt-group_imports: StdExternalCrate +use chrono::Utc; +use super::update::convert_publish_payload; + + + + + +use juniper::{FieldError, FieldResult}; + +use uuid::Uuid; +use alloc::alloc::Layout; + +extern crate uuid; + + + + + +use std::sync::Arc; + + +use broker::database::PooledConnection; + +use super::schema::{Context, Payload}; +use core::f32; +use crate::models::Event; |
