aboutsummaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorUMTS at Teleco <crt@teleco.ch>2026-03-08 22:11:52 +0100
committerUMTS at Teleco <crt@teleco.ch>2026-03-08 22:11:52 +0100
commit17c6bd803dbbecb8975b1b98532d25a807a7b3fb (patch)
treebc0e339ca514414261ce211ab0f74101e6d8aefa /build.rs
parentee17cec85d3d9ef2abc0d7a50c980d82b429b59d (diff)
docs and font fix
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs10
1 files changed, 8 insertions, 2 deletions
diff --git a/build.rs b/build.rs
index fe84b39..ebd0855 100644
--- a/build.rs
+++ b/build.rs
@@ -41,7 +41,10 @@ fn main() {
println!("cargo:rustc-env=HOARDOM_WHOIS_CMD={}", whois_cmd);
println!("cargo:rustc-env=HOARDOM_WHOIS_FLAGS={}", whois_flags);
- println!("cargo:rustc-env=HOARDOM_RDAP_BOOTSTRAP_URL={}", rdap_bootstrap_url);
+ println!(
+ "cargo:rustc-env=HOARDOM_RDAP_BOOTSTRAP_URL={}",
+ rdap_bootstrap_url
+ );
// Extract list names from Lists.toml (keys that have array values)
let lists_toml = std::fs::read_to_string("Lists.toml").expect("Could not read Lists.toml");
@@ -56,7 +59,10 @@ fn main() {
}
}
}
- println!("cargo:rustc-env=HOARDOM_LIST_NAMES={}", list_names.join(","));
+ println!(
+ "cargo:rustc-env=HOARDOM_LIST_NAMES={}",
+ list_names.join(",")
+ );
// rerun if Cargo.toml or Lists.toml changes
println!("cargo:rerun-if-changed=Cargo.toml");