From f0e7ac2f189416f2d1648d6d7297cf3594ca1e53 Mon Sep 17 00:00:00 2001 From: WillLillis Date: Sat, 15 Mar 2025 20:51:35 -0400 Subject: [PATCH] chore(cli): remove deprecated `--no-bindings` flag from `generate` command --- cli/src/main.rs | 6 ------ 1 file changed, 6 deletions(-) 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(); }