palc 0.0.2

WIP: Command Line Argument Parser with several opposite design goal from Clap
Documentation
//! TODO: Suboptimal, see args-flatten-non-args for blockage.

#[derive(palc::Args)]
struct Cli1 {
    #[command(subcommand)]
    deep: Deep,
}

struct Deep {}

#[derive(palc::Args)]
struct Cli2 {
    #[command(subcommand)]
    cmd: Subargs,
}

#[derive(palc::Args)]
struct Subargs {}

fn main() {}