We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e4e25b commit e8f0daeCopy full SHA for e8f0dae
1 file changed
crates/cli/src/subcommands/build.rs
@@ -23,11 +23,13 @@ pub fn cli() -> clap::Command {
23
.help("The directory to lint for nonfunctional print statements. If set to the empty string, skips linting.")
24
)
25
.arg(
26
+ // TODO: Make this into --extra-build-args (or something similar) that will get passed along to the language's compiler.
27
Arg::new("features")
28
.long("features")
29
.value_parser(clap::value_parser!(OsString))
30
.required(false)
31
.help("Additional features to pass to the build process (e.g. `--features feature1,feature2` for Rust modules).")
32
+ // We're hiding this because we think it deserves a refactor first (see the TODO above)
33
.hide(true)
34
35
0 commit comments