pretty-bytes 0.2.2

Convert bytes to a human readable string
Documentation
1
2
3
4
5
6
7
8
9
extern crate pretty_bytes;

use std::env;
use pretty_bytes::cli;

#[cfg_attr(test, allow(dead_code))]
fn main() {
    cli::run(env::args());
}