This commit is contained in:
Djairo Hougee 2025-01-25 21:04:45 +01:00
parent 520d8ddd00
commit 2f15088081
6 changed files with 5 additions and 5 deletions

0
.gitignore vendored Normal file → Executable file
View File

2
Cargo.toml Normal file → Executable file
View File

@ -11,5 +11,5 @@ dotenvy = "0.15.*"
log = "0.4.*" log = "0.4.*"
clap = { version = "4.1.*", features = ["derive"] } clap = { version = "4.1.*", features = ["derive"] }
image = { version = "0.24.*", features = ["webp-encoder"] } image = { version = "0.24.*", features = ["webp-encoder"] }
#termion = "2.0.*"
crossterm = "0.26.*" crossterm = "0.26.*"

0
LICENSE Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
src/a Normal file
View File

View File

@ -1,18 +1,18 @@
//! Driver module. //! Driver module.
#![feature(file_create_new)] #![feature(file_create_new)]
use clap::Parser;
use crate::ascii_manipulation::*; use crate::ascii_manipulation::*;
use crate::cli::Cli; use crate::cli::Cli;
use crate::output::*;
use crate::image_manipulation::*; use crate::image_manipulation::*;
use crate::model_rgb_ascii::Ascii; use crate::model_rgb_ascii::Ascii;
use crate::output::*;
use clap::Parser;
mod ascii_manipulation;
mod cli; mod cli;
mod image_manipulation; mod image_manipulation;
mod ascii_manipulation;
mod output;
mod model_rgb_ascii; mod model_rgb_ascii;
mod output;
/// This is the main function. /// This is the main function.
/// ///