mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
.. | ||
derive_ref | ||
tutorial_builder | ||
tutorial_derive | ||
demo.md | ||
demo.rs | ||
escaped_positional.md | ||
escaped_positional.rs | ||
escaped_positional_derive.md | ||
escaped_positional_derive.rs | ||
git.md | ||
git.rs | ||
git_derive.md | ||
git_derive.rs | ||
keyvalue_derive.md | ||
keyvalue_derive.rs | ||
multicall_busybox.md | ||
multicall_busybox.rs | ||
multicall_hostname.md | ||
multicall_hostname.rs | ||
pacman.md | ||
pacman.rs | ||
README.md |
Examples
- Basic demo: derive
- Key-value pair arguments: derive
- git-like interface: builder, derive
- pacman-like interface: builder
- Escaped positionals with
--
: builder, derive - Multi-call
Contributing
New examples:
- Building: They must be added to Cargo.toml with the appropriate
required-features
. - Testing: Ensure there is a markdown file with trycmd syntax
- Link the
.md
file from here
See also the general CONTRIBUTING.