embedded-cli 0.2.1

CLI with autocompletion, help and history for embedded systems (like Arduino or STM32)
Documentation
#![warn(rust_2018_idioms)]

#[cfg(feature = "autocomplete")]
mod autocomplete;
#[cfg(not(feature = "autocomplete"))]
mod autocomplete_disabled;
mod base;
mod defaults;
#[cfg(feature = "help")]
mod help_simple;
#[cfg(feature = "help")]
mod help_subcommand;
#[cfg(feature = "history")]
mod history;
#[cfg(not(feature = "history"))]
mod history_disabled;
mod options;
mod subcommand;
mod terminal;
mod wrapper;
mod writer;