cargo-rx 0.3.0

A simple fuzzy finder that allows you to search and run examples from the command line. It comes with the `rx` command.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Simple example which demonstrates the ideal approach
//! to printing out log output and messages via the
//! ubiquitous `logging` crate.
//!
#[macro_use]
extern crate log;

fn main() {
    sensible_env_logger::init!();

    trace!("Hello, world!");
    info!("This is an {} message!", "INFO");
}