Open
Description
Rust Version
rustc 1.36.0 (a53f9df32 2019-07-03)
Affected Version of clap
2.33.0
Bug or Feature Request Summary
I was hoping that I could make an argument required, and also use the global()
function to ensure that a user of my CLI could specify my required option wherever they please.
Expected Behavior Summary
An Arg with both .global()
and .required_unless()
would be usable.
Actual Behavior Summary
I see
thread 'main' panicked at 'Global arguments cannot be required.
'binding' is marked as global and required', /home/gabbi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.0/src/app/parser.rs:204:9
Steps to Reproduce the issue
Create a clap App with the arg below, and attempt to run it.
Sample Code or Link to Sample Code
.arg(
Arg::with_name("binding")
.help("The binding of the namespace this action applies to")
.short("b")
.long("binding")
.value_name("BINDING NAME")
.takes_value(true)
.global(true)
.conflicts_with("namespace-id")
)