about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-01-13 15:58:39 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-01-13 16:13:26 +0000
commita3468770e3ee0b357df1c0f5ec194b0fea425da1 (patch)
tree514eabf7fe0f28da0f75d19c48ca3cfecf27b3ec
parent288c0678632b3a36e595c1a21f546b2559e028f5 (diff)
downloadrust-a3468770e3ee0b357df1c0f5ec194b0fea425da1.tar.gz
rust-a3468770e3ee0b357df1c0f5ec194b0fea425da1.zip
Rustfmt
-rw-r--r--build_system/abi_cafe.rs3
-rw-r--r--build_system/build_sysroot.rs3
2 files changed, 4 insertions, 2 deletions
diff --git a/build_system/abi_cafe.rs b/build_system/abi_cafe.rs
index 3f93c14a0fb..63f2efd8e1e 100644
--- a/build_system/abi_cafe.rs
+++ b/build_system/abi_cafe.rs
@@ -10,7 +10,8 @@ use super::SysrootKind;
 pub(crate) static ABI_CAFE_REPO: GitRepo =
     GitRepo::github("Gankra", "abi-cafe", "4c6dc8c9c687e2b3a760ff2176ce236872b37212", "abi-cafe");
 
-pub(crate) static ABI_CAFE: CargoProject = CargoProject::new(&ABI_CAFE_REPO.source_dir(), "abi_cafe");
+pub(crate) static ABI_CAFE: CargoProject =
+    CargoProject::new(&ABI_CAFE_REPO.source_dir(), "abi_cafe");
 
 pub(crate) fn run(
     channel: &str,
diff --git a/build_system/build_sysroot.rs b/build_system/build_sysroot.rs
index c7d80789f8a..b7228968f63 100644
--- a/build_system/build_sysroot.rs
+++ b/build_system/build_sysroot.rs
@@ -153,7 +153,8 @@ pub(crate) static ORIG_BUILD_SYSROOT: RelPath = RelPath::SOURCE.join("build_sysr
 pub(crate) static BUILD_SYSROOT: RelPath = RelPath::DOWNLOAD.join("sysroot");
 pub(crate) static SYSROOT_RUSTC_VERSION: RelPath = BUILD_SYSROOT.join("rustc_version");
 pub(crate) static SYSROOT_SRC: RelPath = BUILD_SYSROOT.join("sysroot_src");
-pub(crate) static STANDARD_LIBRARY: CargoProject = CargoProject::new(&BUILD_SYSROOT, "build_sysroot");
+pub(crate) static STANDARD_LIBRARY: CargoProject =
+    CargoProject::new(&BUILD_SYSROOT, "build_sysroot");
 
 fn build_clif_sysroot_for_triple(
     dirs: &Dirs,