terminal_cli 0.2.0

A standalone library with no-std support for command line terminal interfaces. With autocomplete support, helpers for commands and properties and a prompt implementation.
Documentation
1
2
3
4
5
6
7
#[cfg(not(feature="std"))]
#[path = "no_std.rs"]
pub mod v1;

#[cfg(feature="std")]
#[path = "std.rs"]
pub mod v1;