diff options
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | output.gif | bin | 17079984 -> 17012193 bytes | |||
-rw-r--r-- | src/main.rs | 6 |
4 files changed, 14 insertions, 14 deletions
@@ -26,16 +26,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] -name = "bubbles" -version = "0.1.0" -dependencies = [ - "clap", - "gif", - "rand", - "termsize", -] - -[[package]] name = "cfg-if" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -391,3 +381,13 @@ name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "writhing_mass_of_flesh" +version = "0.1.0" +dependencies = [ + "clap", + "gif", + "rand", + "termsize", +] @@ -1,5 +1,5 @@ [package] -name = "bubbles" +name = "writhing_mass_of_flesh" version = "0.1.0" edition = "2021" authors = ["Jacob Janzen"] Binary files differdiff --git a/src/main.rs b/src/main.rs index 49eee78..a9c5992 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,8 +19,8 @@ use std::fs::File; use std::process; -use bubbles::Args; -use bubbles::Image; +use writhing_mass_of_flesh::Args; +use writhing_mass_of_flesh::Image; fn main() { let args = Args::read(); // the arguments passed into the program @@ -38,5 +38,5 @@ fn main() { } // create the image - bubbles::create_image(&mut data, &mut encoder); + writhing_mass_of_flesh::create_image(&mut data, &mut encoder); } |