diff --git a/cli/src/main.rs b/cli/src/main.rs index 7ddc8dcb..2dd5c66c 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -91,9 +91,6 @@ struct Generate { /// Show debug log during generation #[arg(long, short)] pub log: bool, - /// Deprecated (no-op) - #[arg(long)] - pub no_bindings: bool, #[arg( long = "abi", value_name = "VERSION", @@ -749,9 +746,6 @@ impl Init { impl Generate { fn run(self, mut loader: loader::Loader, current_dir: &Path) -> Result<()> { - if self.no_bindings { - eprint!("The --no-bindings flag is no longer used and will be removed in v0.25.0"); - } if self.log { logger::init(); }