From c677cba06b69510585e7ce1f21523857679f08b8 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 28 Aug 2022 17:53:36 +0000 Subject: [PATCH] More uniform imports --- build_system/abi_checker.rs | 9 +++++---- build_system/config.rs | 3 ++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/build_system/abi_checker.rs b/build_system/abi_checker.rs index faff081745f..053198b6993 100644 --- a/build_system/abi_checker.rs +++ b/build_system/abi_checker.rs @@ -1,11 +1,12 @@ -use super::build_sysroot; -use super::config; -use super::utils::spawn_and_wait; -use build_system::SysrootKind; use std::env; use std::path::Path; use std::process::Command; +use super::build_sysroot; +use super::config; +use super::utils::spawn_and_wait; +use super::SysrootKind; + pub(crate) fn run( channel: &str, sysroot_kind: SysrootKind, diff --git a/build_system/config.rs b/build_system/config.rs index ef540cf1f82..c31784e1097 100644 --- a/build_system/config.rs +++ b/build_system/config.rs @@ -1,4 +1,5 @@ -use std::{fs, process}; +use std::fs; +use std::process; fn load_config_file() -> Vec<(String, Option)> { fs::read_to_string("config.txt") -- 2.44.0