style: format TOML and Rust files

This commit is contained in:
2025-12-26 03:41:37 +03:00
parent 4bee36eb50
commit 13a91ae437
8 changed files with 34 additions and 29 deletions
+6 -1
View File
@@ -192,7 +192,12 @@ fn invoke_build(current_dir: &Path) -> Result<()> {
.env("RUSTUP_HOME", env::var("RUSTUP_HOME").unwrap_or_default())
// Support compilation on stable rust
.env("RUSTC_BOOTSTRAP", "1")
.args(["build", "--release", "-Zbuild-std=core", "-Zbuild-std-features=panic_immediate_abort"])
.args([
"build",
"--release",
"-Zbuild-std=core",
"-Zbuild-std-features=panic_immediate_abort",
])
.arg("--target")
.arg(polkavm_linker::target_json_path(args).unwrap());