renamed project
This commit is contained in:
parent
a8cf2c052a
commit
e9c219042b
4 changed files with 14 additions and 14 deletions
20
Cargo.lock
generated
20
Cargo.lock
generated
|
@ -25,16 +25,6 @@ version = "1.3.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "bubbles"
|
|
||||||
version = "0.1.0"
|
|
||||||
dependencies = [
|
|
||||||
"clap",
|
|
||||||
"gif",
|
|
||||||
"rand",
|
|
||||||
"termsize",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cfg-if"
|
name = "cfg-if"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
|
@ -391,3 +381,13 @@ name = "winapi-x86_64-pc-windows-gnu"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "writhing_mass_of_flesh"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"clap",
|
||||||
|
"gif",
|
||||||
|
"rand",
|
||||||
|
"termsize",
|
||||||
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bubbles"
|
name = "writhing_mass_of_flesh"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Jacob Janzen"]
|
authors = ["Jacob Janzen"]
|
||||||
|
|
BIN
output.gif
BIN
output.gif
Binary file not shown.
Before Width: | Height: | Size: 16 MiB After Width: | Height: | Size: 16 MiB |
|
@ -19,8 +19,8 @@
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::process;
|
use std::process;
|
||||||
|
|
||||||
use bubbles::Args;
|
use writhing_mass_of_flesh::Args;
|
||||||
use bubbles::Image;
|
use writhing_mass_of_flesh::Image;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let args = Args::read(); // the arguments passed into the program
|
let args = Args::read(); // the arguments passed into the program
|
||||||
|
@ -38,5 +38,5 @@ fn main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// create the image
|
// create the image
|
||||||
bubbles::create_image(&mut data, &mut encoder);
|
writhing_mass_of_flesh::create_image(&mut data, &mut encoder);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue