From 2f15088081651dae2c1530a6c9924edd9b6c3a81 Mon Sep 17 00:00:00 2001 From: djairoh Date: Sat, 25 Jan 2025 21:04:45 +0100 Subject: [PATCH] license --- .gitignore | 0 Cargo.toml | 2 +- LICENSE | 0 README.md | 0 src/a | 0 src/main.rs | 8 ++++---- 6 files changed, 5 insertions(+), 5 deletions(-) mode change 100644 => 100755 .gitignore mode change 100644 => 100755 Cargo.toml mode change 100644 => 100755 LICENSE mode change 100644 => 100755 README.md create mode 100644 src/a diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/Cargo.toml b/Cargo.toml old mode 100644 new mode 100755 index 994be27..1872b09 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.*" + diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/src/a b/src/a new file mode 100644 index 0000000..e69de29 diff --git a/src/main.rs b/src/main.rs index aaf27d2..801a4de 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 ascii_manipulation; -mod output; mod model_rgb_ascii; +mod output; /// This is the main function. ///