clap_main 0.2.2

A crate to provide a #[clap_main] macro to automatically parse and pass args to your main function
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "clap_main"
version = "0.2.2"
edition = "2021"

description = "A crate to provide a #[clap_main] macro to automatically parse and pass args to your main function"
license = "GPL-3.0-only"
repository = "https://github.com/casually-blue/clap_main"

[lib]
proc-macro = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "1.0.69"
quote = "1.0.33"
syn = { version = "2.0.38", features = ["full"] }