From 4d7c28d4b1f2421a011e6f4d4fc6419258c098cb Mon Sep 17 00:00:00 2001 From: Carla Kirk-Cohen Date: Wed, 20 Nov 2024 14:31:54 -0500 Subject: [PATCH] sim-cli/refactor: sort imports using cargo fmt --- sim-cli/src/main.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/sim-cli/src/main.rs b/sim-cli/src/main.rs index 2ec66a3..14cdf46 100644 --- a/sim-cli/src/main.rs +++ b/sim-cli/src/main.rs @@ -1,10 +1,5 @@ -use bitcoin::secp256k1::PublicKey; -use std::collections::HashMap; -use std::path::PathBuf; -use std::sync::Arc; -use tokio::sync::Mutex; - use anyhow::anyhow; +use bitcoin::secp256k1::PublicKey; use clap::builder::TypedValueParser; use clap::Parser; use log::LevelFilter; @@ -13,6 +8,10 @@ use simln_lib::{ NodeId, SimParams, Simulation, SimulationCfg, WriteResults, }; use simple_logger::SimpleLogger; +use std::collections::HashMap; +use std::path::PathBuf; +use std::sync::Arc; +use tokio::sync::Mutex; /// The default directory where the simulation files are stored and where the results will be written to. pub const DEFAULT_DATA_DIR: &str = ".";