*****************************
* Dicebear Wrapper for Rust *
*****************************
- This is 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
}
----------------------------------------------------------