aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock20
-rw-r--r--Cargo.toml2
-rw-r--r--output.gifbin17079984 -> 17012193 bytes
-rw-r--r--src/main.rs6
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
@@ -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",
+]
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
--- a/output.gif
+++ b/output.gif
Binary files 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);
}