From e9c219042bde7c1e2eb6f5be8cbe9f9407d88d46 Mon Sep 17 00:00:00 2001 From: jacob janzen Date: Sun, 28 Aug 2022 13:01:21 -0500 Subject: renamed project --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- output.gif | Bin 17079984 -> 17012193 bytes src/main.rs | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index db7af99..ad36baa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,16 +25,6 @@ version = "1.3.2" 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" @@ -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", +] diff --git a/Cargo.toml b/Cargo.toml index adb4781..1f928e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "bubbles" +name = "writhing_mass_of_flesh" version = "0.1.0" edition = "2021" authors = ["Jacob Janzen"] diff --git a/output.gif b/output.gif index 115c935..b49fb9d 100644 Binary files a/output.gif and b/output.gif differ diff --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); } -- cgit v1.2.3