From 69bbd4ed3804833b15285cf8637e96e59135f223 Mon Sep 17 00:00:00 2001 From: Julian T Date: Tue, 20 Jul 2021 22:30:45 +0200 Subject: Switch from python to rust Rust implementation can parse flags, load config and iterate image files --- Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5b0a26f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "gallery" +version = "0.1.0" +authors = ["Julian T "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tera = "1.12" +image = "0.23" +serde = { version = "1.0", features = ["derive"] } +serde_yaml = "0.8" +structopt = "0.3" +glob = "0.3" -- cgit v1.2.3