Static site generator + my presonnal website written in rust for some reason.
1[package]
2name = "rusty_duck"
3version = "0.1.0"
4edition = "2021"
5
6[profile.release]
7opt-level = 'z' # Optimize for size.
8lto = true # Enable Link Time Optimisation
9codegen-units = 1 # Reduced to increase optimisations.
10panic = 'abort' # Abort on panic
11strip = "symbols" # Strip symbols from binary
12
13[dependencies]
14askama = { version = "0.12.1", features = ["with-axum"] }
15askama_axum = "0.4.0"
16axum = "0.7.5"
17comrak = "0.27.0"
18markdown-parser = "0.1.2"
19rand = "0.8.5"
20serde = { version = "1.0.209", features = ["derive"] }
21serde_yaml = "0.9.34"
22tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
23tower-http = { version = "0.5.2", features = ["fs"] }