clap_main 0.2.5

A crate to provide a #[clap_main] macro to automatically parse and pass args to your main function
Documentation
# Clap Main

This crate provides an procmacro `#[clap_main]` to decorate your entry point function and automatically 
parse a struct that implements clap::Parser from the cli args. 

## Example Usage
```rust

#[derive(clap::Parse)]
struct CliArgs {
  /// A name to be greeted
  name: String
}

#[clap_main]
pub fn run(args: CliArgs) {
  println!("Hello {name}");  
}
```