diff options
author | Julian T <julian@jtle.dk> | 2021-07-20 22:30:45 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-07-20 22:30:45 +0200 |
commit | 69bbd4ed3804833b15285cf8637e96e59135f223 (patch) | |
tree | 59a055788f80827ae03e73938e0036bf927ea7f4 /Cargo.toml | |
parent | 4f44cabf637dd9962ccf66b1d5add8c67950eb6e (diff) |
Switch from python to rust
Rust implementation can parse flags, load config and iterate image files
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
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 <julian@jtle.dk>"] +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" |