diff options
| author | UMTS at Teleco <crt@teleco.ch> | 2026-03-08 22:11:52 +0100 |
|---|---|---|
| committer | UMTS at Teleco <crt@teleco.ch> | 2026-03-08 22:11:52 +0100 |
| commit | 17c6bd803dbbecb8975b1b98532d25a807a7b3fb (patch) | |
| tree | bc0e339ca514414261ce211ab0f74101e6d8aefa /build.rs | |
| parent | ee17cec85d3d9ef2abc0d7a50c980d82b429b59d (diff) | |
docs and font fix
Diffstat (limited to 'build.rs')
| -rw-r--r-- | build.rs | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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"); |
