arglite 0.1.0

A lightweight argument parser for command-line applications.
Documentation
# ArgLite

A lightweight argument parser for Rust command-line applications.

## Features

- Simple API for parsing command-line arguments
- Support for flags (e.g., `--verbose`)
- Support for positional arguments
- Zero dependencies
- Error handling for unknown flags and missing arguments

## Installation

Add this to your `Cargo.toml`:
```toml
[dependencies]
arglite = "0.1.0"
```
Or, to automatically pull in the latest version:
```toml
[dependencies]
arglite = "*"
```