//! noshell parser provides an minimal API for parsing arguments from a byte stream.
#![no_std]#![deny(missing_docs)]/// Lexer for generating tokens from the command line.
pubmodlexer;/// Parser for collecting argument flags and values from a token stream.
pubmodparser;/// Utilities.
pubmodutils;pubuseparser::{ArgLookupTable, AtMost, Error, ParsedArgs};