diff --git a/Cargo.lock b/Cargo.lock index 441a43aee6c543dd65b89a18fde2b593763319d5..2ab0be5bfa0312a42909c83555410f7e6e0049ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,6 +72,15 @@ dependencies = [ "winapi", ] +[[package]] +name = "dotacat" +version = "0.1.0" +dependencies = [ + "clap", + "colored", + "rand", +] + [[package]] name = "getrandom" version = "0.1.15" @@ -129,15 +138,6 @@ version = "0.2.77" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f96b10ec2560088a8e76961b00d47107b3a625fecb76dedb29ee7ccbf98235" -[[package]] -name = "lolcatrs" -version = "0.1.0" -dependencies = [ - "clap", - "colored", - "rand", -] - [[package]] name = "os_str_bytes" version = "2.3.2" diff --git a/Cargo.toml b/Cargo.toml index 1a1be1613181a34797fc697f26f59cdc26aac7b6..875e1b26e03d921179c667849c30bf2490a9d4ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,10 @@ [package] -name = "lolcatrs" +name = "dotacat" version = "0.1.0" authors = ["Stephen <stephen@scd31.com>"] description = "Like lolcat, but fast" edition = "2018" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 683f8edd2d169394a770f2384045ee7627a8bd98..d81f4af594dc1ca9d69c2bfb5a072bfcdb1e8295 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,59 @@ -# Lolcat.rs +# dotacat -Why? +dotacat is meant to be a replacement to lolcat. + +## Why? + +Speed! ``` $ time echo hi | lolcat real 0m0.422s user 0m0.393s -sys 0m0.028s +sys 0m0.028s ``` I use lolcat in my `.bashrc` file, so this amount of time is not ideal for me. +In contrast: + +``` +time echo hi | dotacat + +real 0m0.045s +user 0m0.030s +sys 0m0.020s + +``` + +## Why the name? + +Because Dota is better than LoL (According to people - I play neither) + +## Installation + +`cargo install dotacat` + +## Usage + +``` +USAGE: + dotacat [FLAGS] [OPTIONS] [files]... + +ARGS: + <files>... Files to concatenate(`-` for STDIN) + +FLAGS: + -h, --help Prints help information + -i, --invert Invert fg and bg + -V, --version Prints version information + +OPTIONS: + -F, --freq <freq> Rainbow frequency [default: 0.1] + -S, --seed <seed> Rainbow seed, 0 = random [default: 0.0] + -p, --spread <spread> Rainbow spread [default: 1.0] + +Examples: + dotacat f - g Output f's contents, then stdin, then g's contents. + fortune | dotacat Display a rainbow cookie. +``` \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index f649e5b7b99d761ec2c201138b2276106c836c21..a1c4b1319847f18002f25163ebf34b960be2750b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ mod lol; #[derive(Clap)] #[clap(author, about, version)] #[clap( - after_help = "Examples:\n\tlolcatrs f - g\tOutput f's contents, then stdin, then g's contents.\n\tfortune | lolcat\tDisplay a rainbow cookie." + after_help = "Examples:\n\tdotacat f - g\tOutput f's contents, then stdin, then g's contents.\n\tfortune | dotacat\tDisplay a rainbow cookie." )] struct CmdOpts { #[clap(short = 'p', long, default_value = "1.0")]