Go to file
Agatha Lovelace 3eb1aec47e Update author and repository info 2020-09-22 17:52:42 +03:00
src Remove redundant clone 2020-03-29 21:56:27 +03:00
.gitignore Generate docs 2019-08-01 17:20:58 +03:00
Cargo.toml Update author and repository info 2020-09-22 17:52:42 +03:00
LICENSE Update author and repository info 2020-09-22 17:52:42 +03:00
README.md Update version numbers 2019-12-30 03:00:26 +02:00

README.md

owoify

A simple rust library for string owoification.
Inspired by:

Credits

Usage

Add this to Cargo.toml:

[dependencies]
owoify = "0.1.5"

example.rs:

use owoify::OwOifiable;

fn main() {
    let text = String::from("euthanize me senpai!!");
    println!("{}", text.owoify());
}

Documentation