Compare commits

..

No commits in common. "6693d8917caccb10d38d63eddf9fcfc7f57953d6" and "cf074c87c8006e2f14e8fbf2729dc064e8800360" have entirely different histories.

6 changed files with 5 additions and 5 deletions

0
.gitignore vendored Executable file → Normal file
View File

2
Cargo.toml Executable file → Normal file
View File

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

0
LICENSE Executable file → Normal file
View File

0
README.md Executable file → Normal file
View File

0
src/a
View File

View File

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