jaarg 0.2.1

It can parse your arguments you should use it it's called jaarg
Documentation
/* jaarg - Argument parser
 * SPDX-FileCopyrightText: (C) 2025 Gay Pizza Specifications
 * SPDX-License-Identifier: MIT OR Apache-2.0
 */

#![no_std]

mod const_utf8;
mod ordered_bitset;

include!("option.rs");
include!("options.rs");
include!("argparse.rs");
include!("help.rs");

#[cfg(feature = "alloc")]
pub mod alloc;
#[cfg(feature = "std")]
pub mod std;