clap-cargo

Crates.ioclap-cargo
lib.rsclap-cargo
version0.17.1
created_at2019-04-08 23:48:24.278326+00
updated_at2025-09-08 17:10:34.864843+00
descriptionRe-usable CLI flags for `cargo` plugins
homepage
repositoryhttps://github.com/crate-ci/clap-cargo
max_upload_size
id126675
size68,083
Maintainers (github:rust-cli:maintainers)

documentation

README

clap-cargo

Re-usable CLI flags for cargo plugins

codecov Documentation License Crates Status

Examples

// ...
#[derive(Debug, clap::Parser)]
#[command(styles = clap_cargo::style::CLAP_STYLING)]
struct Cli {
    #[command(flatten)]
    manifest: clap_cargo::Manifest,
    #[command(flatten)]
    workspace: clap_cargo::Workspace,
    #[command(flatten)]
    features: clap_cargo::Features,
}

Relevant crates

Other crates that might be useful for cargo plugins:

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual-licensed as above, without any additional terms or conditions.

Commit count: 395

cargo fmt