renamed project

This commit is contained in:
jacob janzen 2022-08-28 13:01:21 -05:00
parent a8cf2c052a
commit e9c219042b
4 changed files with 14 additions and 14 deletions

20
Cargo.lock generated
View file

@ -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",
]

View file

@ -1,5 +1,5 @@
[package]
name = "bubbles"
name = "writhing_mass_of_flesh"
version = "0.1.0"
edition = "2021"
authors = ["Jacob Janzen"]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 MiB

After

Width:  |  Height:  |  Size: 16 MiB

View file

@ -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);
}