Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit c677cba

Browse files
committed
More uniform imports
1 parent 721668f commit c677cba

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

build_system/abi_checker.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
use super::build_sysroot;
2-
use super::config;
3-
use super::utils::spawn_and_wait;
4-
use build_system::SysrootKind;
51
use std::env;
62
use std::path::Path;
73
use std::process::Command;
84

5+
use super::build_sysroot;
6+
use super::config;
7+
use super::utils::spawn_and_wait;
8+
use super::SysrootKind;
9+
910
pub(crate) fn run(
1011
channel: &str,
1112
sysroot_kind: SysrootKind,

build_system/config.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use std::{fs, process};
1+
use std::fs;
2+
use std::process;
23

34
fn load_config_file() -> Vec<(String, Option<String>)> {
45
fs::read_to_string("config.txt")

0 commit comments

Comments
 (0)