eth-blockies 1.1.0

A pure Rust lightweight library/binary to get raw data of Ethereum-style blocky identicon, which can be used for generating blockies icon images, printing to terminal, etc.
Documentation
1
2
3
4
5
6
7
8
pub type BinResult<T> = std::result::Result<T, BinError>;

#[derive(Debug)]
pub enum BinError {
    NoArgument,
    HelpArgument,
    InvalidInput(String),
}