-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1015 Bytes
/
Cargo.toml
File metadata and controls
38 lines (36 loc) · 1015 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
27
28
29
30
31
32
33
34
35
36
37
38
[workspace.package]
version = "0.3.1"
authors = ["Siraaj Khandkar <siraaj@khandkar.net>"]
license = "GPL-3.0-or-later"
edition = "2024"
[workspace]
members = [
"src/gen",
"src/lib",
"src/pub",
"src/srv",
]
resolver = "2"
[workspace.dependencies]
anyhow = { version = "1.0.97", features = ["backtrace"] }
askama = "0.12.1"
axum = "0.7.5"
chrono = { version = "0.4.40", features = ["serde"] }
clap = { version = "4.5.32", features = ["derive"] }
css-minify = "0.3.1" # Alt: https://github.com/parcel-bundler/lightningcss
directories = "6.0.0"
image = "0.25.6"
infer = "0.19.0"
minify-html = "0.10.7"
pulldown-cmark = "0.13.0"
rand = "0.9.0"
rayon = "1.10.0"
rstest = "0.16.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json5 = "0.2.1"
sha2 = "0.10.8"
tokio = { version = "1.44.2", features = ["full", "tracing"] }
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = "2.5.4"