| Crates.io | uwu-rs |
| lib.rs | uwu-rs |
| version | 1.0.0 |
| created_at | 2024-02-25 16:27:20.591665+00 |
| updated_at | 2024-03-02 13:41:09.894191+00 |
| description | uwuifying library |
| homepage | |
| repository | https://github.com/SandroHc/uwu-rs |
| max_upload_size | |
| id | 1152599 |
| size | 83,960 |
A uwu implementation inspired by Daniel Liu's uwu that runs on all machines and on the web.
This repository is divided into the following crates:
Add the uwu library to your project with:
cargo add uwu-rs
Then use it:
let uwuified = uwu_rs::Uwu::new().uwuify("Hello world!");
Add the uwu library to your project with:
npm install uwu-rs
Then use as follows in your code:
import init, {uwuify} from 'uwu-rs';
init().then(() => {
console.log(uwuify('I have been uwuified!'));
});
Install the executable with:
cargo install uwu_cli
Then use it:
# directly from the arguments
uwu Hello world!
# from a file
uwu --file uwu.txt
# from stdin
uwu <<EOF
Life in uwu land,
Is fantastic!
EOF
# to a file
uwu --output uwu.out Hello world!