rabbitsay

Crates.iorabbitsay
lib.rsrabbitsay
version0.1.0
created_at2025-08-26 13:28:49.046698+00
updated_at2025-08-26 13:28:49.046698+00
descriptionSay (possibly mean) things with a cute rabbit
homepage
repositoryhttps://github.com/cbeck527/rabbitsay
max_upload_size
id1811150
size27,624
Chris Becker (Cbeck527)

documentation

https://docs.rs/rabbitsay

README

RabbitSay

Rust CI Release License: MIT

Say (possibly mean) things with a cute rabbit.

Installation

# From source
cargo install rabbitsay

# From source
cargo install --path .

Or download from the releases page.

Usage

$ rabbitsay "Hello, world!"
┌─────────────────┐
│  Hello, world!  │
└─────────────────┘
 (\__/) ||
 (•ㅅ•) ||
 /   づ

CLI Options

Usage: rabbitsay [OPTIONS] <MESSAGE>

Arguments:
  <MESSAGE>  Message on the rabbit's sign

Options:
  -p, --padding <PADDING>      Padding around the message [default: 4]
  -w, --max-width <MAX_WIDTH>  Maximum width of the sign [default: 16]
  -h, --help                   Print help
  -V, --version                Print version

As a Library

Add to your Cargo.toml:

[dependencies]
rabbitsay = { git = "https://github.com/Cbeck527/rabbitsay" }

Use in your code:

use rabbitsay::say;

fn main() {
    let output = say("Hello from Rust!");
    println!("{}", output);
}
Commit count: 17

cargo fmt