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")