noshell_parser/lib.rs
1//! noshell parser provides an minimal API for parsing arguments from a byte stream.
2
3#![no_std]
4#![deny(missing_docs)]
5
6/// Lexer for generating tokens from the command line.
7pub mod lexer;
8
9/// Parser for collecting argument flags and values from a token stream.
10pub mod parser;
11
12pub use lexer::Lexer;
13pub use parser::{Error, ParsedArgs};