diff --git a/.cargo/config.toml b/.cargo/config.toml index 40aea3e3..4f520f28 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,12 +1,6 @@ [alias] -xtask = "run --package xtask --bin xtask --quiet --" +xtask = "run --package xtask --bin xtask --" [build] target-dir = ".target" incremental = true - -[profile.dev] -# Disabling debug info speeds up builds a bunch, -# and we don't rely on it for debugging that much. -debug = 0 - diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 0553647a..d3f16d35 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -20,6 +20,7 @@ fn main() { let matches = Command::new("xtask") .about("Hipcheck development task runner.") .version(crate_version!()) + .disable_version_flag(true) .arg( Arg::new("help") .short('h')