clap icon indicating copy to clipboard operation
clap copied to clipboard

A full featured, fast Command Line Argument Parser for Rust

Results 314 clap issues
Sort by recently updated
recently updated
newest added

Original request: #1603 Original PR: https://github.com/clap-rs/clap/pull/1697 Feature flag: `unstable-replace` Known issues: - [ ] https://github.com/clap-rs/clap/issues/2011 - [ ] No presence in `--help`

A-builder
C-tracking-issue
S-blocked

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the existing issues ### Clap Version master ### Describe your use case...

C-enhancement
A-validators
S-waiting-on-mentor

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the existing issues ### Clap Version 3.0.7 ### Describe your use case...

C-enhancement
M-breaking-change
S-waiting-on-decision
A-builder

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Rust Version rustc 1.58.1 (db9d1b20b 2022-01-20)...

C-bug
A-help
A-parsing
S-waiting-on-design

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Clap Version 3.1.13 ### Describe your...

C-enhancement
A-docs
E-help-wanted
E-easy

### Feature Request Summary Would it be possible to split clap argument parsing logic into a `no_std` "clap_core" crate or allow crates to toggle a `no_std` style feature. This would...

C-enhancement
S-waiting-on-decision
A-meta

[](https://issuehunt.io/r/clap-rs/clap/issues/1794) ### Rust Version `rustc 1.42.0 (b8cedc004 2020-03-09)` ### Code ```rust use clap; use clap::Arg; use clap::ArgGroup; fn main() { let app = clap::App::new("hello") .bin_name("deno") .arg( Arg::with_name("option1") .long("option1") .takes_value(false), )...

C-bug
S-waiting-on-decision
A-help
:dollar: Funded on Issuehunt

Maintainers notes: - Assuming this is custom completion on top of clap-driven completion, this is blocked on #3166 - Open question: does the completion function accept just the arg and...

C-enhancement
A-completion
S-blocked

Transferred from: https://github.com/TeXitoi/structopt/issues/349 It would be even better if fixed sized arrays or tuples with different value types would be supported directly: ```rust #[derive(Clap)] struct Args { #[clap(long)] range: [u32;...

C-enhancement
A-derive
S-waiting-on-mentor

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the existing issues ### Rust Version rustc 1.58.0-nightly (8b09ba6a5 2021-11-09) ### Clap...

C-bug
E-medium
A-completion