A bevy plugin to parse command line arguments with clap.
```rust
struct Context {
/// More verbose output
#[clap(long)]
verbose: bool,
/// An optional name
#[clap(short, long)]
name: Option
fn main() {
App::new()
// ...
.add_plugin(ClapPlugin::
The Context
value will be added as a clap resource on startup.