summaryrefslogtreecommitdiff
path: root/plugins/dwarf
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-08-20 13:42:33 -0400
committerMason Reed <mason@vector35.com>2025-08-20 13:42:33 -0400
commit9faef8acb5aaa50199f5aa503f6f5298e3bdc8db (patch)
treedb0ab5bb122b797bdaf9ad6658afd683a556b2f5 /plugins/dwarf
parent2ba29fd5fc09a78dd5e16a8706bbb8aa6468eb1d (diff)
[Rust] Misc formatting fixes
Diffstat (limited to 'plugins/dwarf')
-rw-r--r--plugins/dwarf/dwarf_export/build.rs5
-rw-r--r--plugins/dwarf/dwarf_import/build.rs5
2 files changed, 8 insertions, 2 deletions
diff --git a/plugins/dwarf/dwarf_export/build.rs b/plugins/dwarf/dwarf_export/build.rs
index 97e3e7f5..9006f16a 100644
--- a/plugins/dwarf/dwarf_export/build.rs
+++ b/plugins/dwarf/dwarf_export/build.rs
@@ -17,6 +17,9 @@ fn main() {
{
let crate_name = std::env::var("CARGO_PKG_NAME").expect("CARGO_PKG_NAME not set");
let lib_name = crate_name.replace('-', "_");
- println!("cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib", lib_name);
+ println!(
+ "cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib",
+ lib_name
+ );
}
}
diff --git a/plugins/dwarf/dwarf_import/build.rs b/plugins/dwarf/dwarf_import/build.rs
index 97e3e7f5..9006f16a 100644
--- a/plugins/dwarf/dwarf_import/build.rs
+++ b/plugins/dwarf/dwarf_import/build.rs
@@ -17,6 +17,9 @@ fn main() {
{
let crate_name = std::env::var("CARGO_PKG_NAME").expect("CARGO_PKG_NAME not set");
let lib_name = crate_name.replace('-', "_");
- println!("cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib", lib_name);
+ println!(
+ "cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib",
+ lib_name
+ );
}
}