-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 848 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 848 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
[package]
name = "pbe"
description = "Personal Blog Engine. Gered's umpteenth take on a custom blog."
version = "0.3.1"
edition = "2021"
[dependencies]
actix-web = "4.3.1"
actix-files = "0.6.2"
anyhow = "1.0.71"
async-watcher = "0.1.1"
chrono = "0.4.26"
itertools = "0.11.0"
log = "0.4.19"
notify = "5.1.0"
pulldown-cmark = "0.9.3"
rss = "2.0.4"
serde = { version = "1.0.164", features = ["derive"]}
serde_yaml = "0.9.22"
simple-log = "1.6.0"
syntect = "5.0.0"
tera = "1.19.0"
thiserror = "1.0.40"
tokio = "1"
url = "2.4.0"
[build-dependencies]
chrono = "0.4.26"
[profile.release]
# settings that are mainly intended to reduce the size of the release binary while keeping the release binary tuned
# for performance. these alone reduce the binary size by over 50%, which is good enough in my opinion ...
strip = true
lto = true
codegen-units = 1