-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (38 loc) · 1.04 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "hachha-dev"
version = "0.10.5"
edition = "2021"
authors = ["Harrison Hall <[email protected]>"]
description = "An (almost) static personal website and blog."
readme = "README.md"
homepage = "https://hachha.dev"
repository = "https://github.com/harrisonhall/hachha.dev"
keywords = ["website", "blog", "hachha"]
[dependencies]
# Server
axum = "0.8"
tower-http = { version = "0.6", features = ["trace"] }
# CLI
clap = { version = "4.1", features = ["derive"] }
colored = "3.0"
log = "0.4"
# Serde
serde = { version = "1.0", features = ["derive"] }
serde_json = { version ="1.0", features = ["preserve_order"] }
toml = "0.8"
# Syndication
atom_syndication = "0.12"
# Markup
handlebars = "4.3" # Updating this may cause whitespace issues
markdown = "1.0.0-alpha.22"
# Util
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
rust-embed = { version = "8.4", features = ["include-exclude"] }
tokio = { version = "1.0", features = ["full"] }
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"