owlz

Crates.ioowlz
lib.rsowlz
version0.1.2
created_at2022-08-20 17:46:06.887838+00
updated_at2025-03-31 20:18:15.070742+00
description"Owlz" ascii emojis, created randomly or by design.
homepage
repositoryhttps://github.com/justanothercell/owlz-rs
max_upload_size
id649415
size6,571
dragoπ (justanothercell)

documentation

README

Owlz >(^v^)<

Crate

A rust library for creating cute ascii emoji owl faces, featuring:

  • 7560 unique owls
  • Random generation

Why do I need this?

Do you want to sign your emails, bot messages, pull requests or memos with lil owlz that improve the day of the people around you? Then this is exactly what you need!

Usage

Add this to your Cargo.toml:

[dependencies]
owlz = "0.1.2"

Example:

use owlz::Owl;

fn main() {
    println!("{}", Owl::default());
    println!("{}", Owl::random());
    println!("{}", 
        Owl {
            beak: Beak::Happy,
            eyes: Eyes::Happy,
            head: Head::Curly,
            wing_shape: WingShape::None,
            wings: Wings::Outward
        }
    );
}

Todo (Optional)

  • string to owl conversion
  • weighted randomness
  • tooling for creation
  • owl descriptors
  • see if any libs can be removed to reduce dependencies
<\*o*/>

Changes

  • 0.1.0
    • initial publish
  • 0.1.1
    • improve readme + documentation
Commit count: 5

cargo fmt