fix: runtime typo candite from shell

This commit is contained in:
iff 2024-11-16 17:36:16 +01:00
parent 8740d01f12
commit 5428a7182d
3 changed files with 16 additions and 11 deletions

View file

@ -62,9 +62,13 @@ fn print_help() {
}
fn print_version() {
println!("version: {}", option_env!("CARGO_PKG_VERSION").unwrap_or("unknown"));
println!(
"version: {}",
option_env!("CARGO_PKG_VERSION").unwrap_or("unknown")
);
println!("compile features:");
#[cfg(feature = "runtime-rules")] {
#[cfg(feature = "runtime-rules")]
{
println!(" - runtime-rules");
}
std::process::exit(0);