noshell-parser 0.5.0

noshell, a no_std argument parser and a shell for constrained systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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.
pub mod lexer;

/// Parser for collecting argument flags and values from a token stream.
pub mod parser;

/// Utilities.
pub mod utils;

pub use parser::{ArgLookupTable, AtMost, Error, ParsedArgs};