chore(cli): remove deprecated --no-bindings flag from generate command

This commit is contained in:
WillLillis 2025-03-15 20:51:35 -04:00 committed by Christian Clason
parent e08fe3b993
commit f0e7ac2f18

View file

@ -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();
}