We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 721668f commit c677cbaCopy full SHA for c677cba
build_system/abi_checker.rs
@@ -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;
5
use std::env;
6
use std::path::Path;
7
use std::process::Command;
8
+use super::build_sysroot;
+use super::config;
+use super::utils::spawn_and_wait;
+use super::SysrootKind;
9
+
10
pub(crate) fn run(
11
channel: &str,
12
sysroot_kind: SysrootKind,
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<String>)> {
fs::read_to_string("config.txt")
0 commit comments