-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 743 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "clutterlog"
version = "0.1.1"
edition = "2024"
description = "really simple gallery SSG aimed at displaying project WIPs without much context"
authors = [ "Bruno Croci <bruno@croci.me>" ]
rust-version = "1.90"
include = ["src/**/*", "template/**/*", "Cargo.toml", "Cargo.lock", "README.md"]
repository = "https://github.com/CrociDB/clutterlog"
readme = "README.md"
license = "BSD-3-Clause"
homepage = "https://github.com/CrociDB/clutterlog"
[dependencies]
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
kamadak-exif = "0.5"
image = "0.25"
rayon = "1.10"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"