Just what the world needs, another silly Rust re-write! But it was a good exercise in learning. There's a lot of messy things, which is why this is 0.2.0-pre.1. Going to make some cleaning passes after landing this.
This commit is contained in:
parent
94a5e30a8f
commit
9945b9eb7f
41 changed files with 2975 additions and 1376 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
name = "photojawn"
|
||||
version = "0.2.0-pre.1"
|
||||
description = "A static site generator for photo albums"
|
||||
authors = ["Nick Pegg <nick@nickpegg.com>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/nickpegg/photojawn"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "^1.0"
|
||||
clap = { version = "^4.5", features = ["derive"] }
|
||||
env_logger = "^0.11.8"
|
||||
fs_extra = "^1.3.0"
|
||||
image = "^0.25.6"
|
||||
indicatif = "^0.17.11"
|
||||
log = "^0.4.27"
|
||||
pulldown-cmark = "^0.13.0"
|
||||
rayon = "^1.10.0"
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
serde_yml = "^0.0.12"
|
||||
tera = { version = "^1.20", default-features = false }
|
||||
thiserror = "^2.0"
|
||||
|
||||
[dev-dependencies]
|
||||
mktemp = "^0.5.1"
|
||||
Loading…
Add table
Add a link
Reference in a new issue