about summary refs log tree commit diff
path: root/build_system
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-09-22 19:05:04 -0400
committerMichael Goulet <michael@errs.io>2024-09-22 19:11:29 -0400
commitd3903c8de3c347ac5fe40ea9a3c8a766565534da (patch)
tree3ccc48dde069d722dc517e29a18736b0acc4fa16 /build_system
parent6c69e2f6272f08358a499852ec9e146088565e3f (diff)
downloadrust-d3903c8de3c347ac5fe40ea9a3c8a766565534da.tar.gz
rust-d3903c8de3c347ac5fe40ea9a3c8a766565534da.zip
Reformat using the new identifier sorting from rustfmt
Diffstat (limited to 'build_system')
-rw-r--r--build_system/src/config.rs2
-rw-r--r--build_system/src/test.rs2
-rw-r--r--build_system/src/utils.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/build_system/src/config.rs b/build_system/src/config.rs
index 15ba1612167..a7980dec83b 100644
--- a/build_system/src/config.rs
+++ b/build_system/src/config.rs
@@ -3,8 +3,8 @@ use std::ffi::OsStr;
 use std::path::{Path, PathBuf};
 use std::{env as std_env, fs};
 
-use boml::types::TomlValue;
 use boml::Toml;
+use boml::types::TomlValue;
 
 use crate::utils::{
     create_dir, create_symlink, get_os_name, get_sysroot_dir, run_command_with_output,
diff --git a/build_system/src/test.rs b/build_system/src/test.rs
index 83fa8059b1a..50e27736aac 100644
--- a/build_system/src/test.rs
+++ b/build_system/src/test.rs
@@ -1,6 +1,6 @@
 use std::collections::HashMap;
 use std::ffi::OsStr;
-use std::fs::{remove_dir_all, File};
+use std::fs::{File, remove_dir_all};
 use std::io::{BufRead, BufReader};
 use std::path::{Path, PathBuf};
 use std::str::FromStr;
diff --git a/build_system/src/utils.rs b/build_system/src/utils.rs
index e338d1b4992..401c23948e5 100644
--- a/build_system/src/utils.rs
+++ b/build_system/src/utils.rs
@@ -1,7 +1,7 @@
 use std::collections::HashMap;
+use std::ffi::OsStr;
 #[cfg(unix)]
 use std::ffi::c_int;
-use std::ffi::OsStr;
 use std::fmt::Debug;
 use std::fs;
 #[cfg(unix)]