wena 0.2.0

Wena is a micro-framework that provides an elegant starting point for your console application.
Documentation
pub type Argument = input::Argument;
pub type Command<TInput = ArgvInput, TOutput = ConsoleOutput> =
    commands::Command<TInput, TOutput>;

pub use application::Application;
pub use components::Alert;
pub use input::{InlineInput, Input};
pub use output::{BufferOutput, Output};
pub use support::Terminal;

mod application;
mod commands;
mod components;
mod input;
mod output;
mod runner;
mod support;

use input::ArgvInput;
use output::ConsoleOutput;