dicebear 0.1.4

An unofficial dicebear wrapper for Rust
Documentation

Dicebear Wrapper for Rust

A simple Dicebear Wrapper for Rust. Example usage:

use dicebear::generate;

#[tokio::main]
async fn main() {
    let result = generate(
	String::from("pixel-art"), // REQUIRED: Style
	Some(String::from("dunno")), // OPTIONAL: Seed
	String::from("256"), // REQUIRED: Size
	Some(false), // OPTIONAL: Flip (bool)
	None, // OPTIONAL: Additional options, in a vector
    ).await;
    // Returns a DynamicImage
}