summaryrefslogtreecommitdiffstats
path: root/xtask/src/flags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/flags.rs')
-rw-r--r--xtask/src/flags.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/xtask/src/flags.rs b/xtask/src/flags.rs
index 4630a8938..75ef19e4d 100644
--- a/xtask/src/flags.rs
+++ b/xtask/src/flags.rs
@@ -69,6 +69,8 @@ xflags::xflags! {
optional --data-dir path: PathBuf
/// Enable the singlepass compiler for WASM plugins
optional --singlepass
+ /// Disable optimizing dependencies
+ optional --disable-deps-optimize
/// Arguments to pass after `cargo run --`
repeated args: OsString
}
@@ -182,6 +184,7 @@ pub struct Run {
pub data_dir: Option<PathBuf>,
pub singlepass: bool,
+ pub disable_deps_optimize: bool,
}
#[derive(Debug)]