ignite 0.1.6

ignite serves the role as a "batteries included" addon to stdlib providing useful stuff and higher level functions along with abstractions.
Documentation
use std::fmt;

/// Prints anything that implements the std::fmt::Display trait.
#[inline]
pub fn print<T>(text: T)
where
    T: fmt::Display,
{
    println!("{}", text);
}

/// Prints anything that implements the std::fmt::Debug trait.
#[inline]
pub fn print_debug<T>(data: T)
where
    T: fmt::Debug,
{
    println!("{:?}", data);
}