feat(rust)!: remove deprecated functions
This commit is contained in:
parent
821cf797f2
commit
d60ef9ad0a
4 changed files with 8 additions and 221 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue