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
pub use std::prelude::v1::*;
pub use std::cell::RefCell;
pub use std::rc::Rc;
pub use std::num::Wrapping;
pub use std::fmt;
pub use std::fmt::format as format_to_string;
pub use std::fmt::Formatter;
pub use std::fmt::{Debug, Display};
pub use std::fmt::Write as FmtWrite;
pub use std::fmt::Error as FmtError;
pub use std::mem;
pub use std::marker::PhantomData;
pub use std::ops::Range;
pub use std::cmp::{min, max};
pub use std::ptr::write_bytes;
pub use std::iter;
pub use std::borrow::Cow;
pub use std::str::FromStr;
pub use std::io;
pub use std::io::Write;
pub use std::str;
pub use std::ops::Index;
pub use std::ops::{Deref, DerefMut};