feat(rust)!: remove deprecated functions

This commit is contained in:
Amaan Qureshi 2025-09-11 03:11:07 -04:00 committed by Amaan Qureshi
parent 821cf797f2
commit d60ef9ad0a
4 changed files with 8 additions and 221 deletions

View file

@ -158,9 +158,6 @@ struct Build {
/// Build a Wasm module instead of a dynamic library
#[arg(short, long)]
pub wasm: bool,
/// No longer used.
#[arg(short, long)]
pub docker: bool,
/// The path to output the compiled file
#[arg(short, long)]
pub output: Option<PathBuf>,
@ -904,10 +901,6 @@ impl Build {
fn run(self, mut loader: loader::Loader, current_dir: &Path) -> Result<()> {
let grammar_path = current_dir.join(self.path.unwrap_or_default());
if self.docker {
eprintln!("Warning: --docker flag is no longer used, and will be removed in a future release.");
}
loader.debug_build(self.debug);
if self.wasm {