-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
29 lines (28 loc) · 874 Bytes
/
Cargo.toml
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
[package]
name = "ppsspp-site-generator"
version = "0.0.1"
authors = ["Henrik Rydgård"]
edition = "2021"
[dependencies]
# IMPORTANT: Do not switch markdown to the suggested version!
markdown = "1.0.0-alpha.16"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
handlebars = "6.0"
env_logger = "0.11"
axum = "0.7.3"
axum-extra = "0.9.1"
hyper = { version = "1.0.0", features = ["full"] }
hyper-util = { version = "0.1.1", features = ["client-legacy"] }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.5.0", features = ["fs", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
regex = "1.0"
notify = "6.1"
natord = "1.0"
minify-js = "0.6"
chrono = { version = "0.4" }
clap = { version = "4.4", features = ["derive"] }