summaryrefslogtreecommitdiff
path: root/plugins
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
parent2ba29fd5fc09a78dd5e16a8706bbb8aa6468eb1d (diff)
[Rust] Misc formatting fixes
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dwarf/dwarf_export/build.rs5
-rw-r--r--plugins/dwarf/dwarf_import/build.rs5
-rw-r--r--plugins/idb_import/build.rs5
-rw-r--r--plugins/pdb-ng/build.rs5
-rw-r--r--plugins/svd/build.rs5
-rw-r--r--plugins/warp/build.rs5
6 files changed, 24 insertions, 6 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
+ );
}
}
diff --git a/plugins/idb_import/build.rs b/plugins/idb_import/build.rs
index 97e3e7f5..9006f16a 100644
--- a/plugins/idb_import/build.rs
+++ b/plugins/idb_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
+ );
}
}
diff --git a/plugins/pdb-ng/build.rs b/plugins/pdb-ng/build.rs
index 97e3e7f5..9006f16a 100644
--- a/plugins/pdb-ng/build.rs
+++ b/plugins/pdb-ng/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/svd/build.rs b/plugins/svd/build.rs
index bfb84d94..ce38f539 100644
--- a/plugins/svd/build.rs
+++ b/plugins/svd/build.rs
@@ -19,7 +19,10 @@ 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
+ );
}
let out_dir = std::env::var("OUT_DIR").expect("OUT_DIR specified");
diff --git a/plugins/warp/build.rs b/plugins/warp/build.rs
index 4afc410f..ba8cbb65 100644
--- a/plugins/warp/build.rs
+++ b/plugins/warp/build.rs
@@ -19,7 +19,10 @@ 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
+ );
}
let out_dir = std::env::var("OUT_DIR").expect("OUT_DIR specified");