From 9973df77a0f67842664039365721cb2e882d1513 Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Wed, 11 Oct 2023 16:18:39 -0700 Subject: [PATCH] rustfmt --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 0df46361..41f4d7d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,3 @@ -use once_cell::sync::Lazy; use crate::clients::launch_clients; use crate::pubsub::launch_pubsub; use crate::workload::{launch_workload, Generator}; @@ -8,6 +7,7 @@ use clap::{Arg, Command}; use core::sync::atomic::{AtomicBool, Ordering}; use core::time::Duration; use metriken::{AtomicHistogram, Counter, Gauge}; +use once_cell::sync::Lazy; use ringlog::*; use std::collections::HashMap; use std::collections::VecDeque;