staticrustator/Cargo.toml

21 lines
553 B
TOML
Raw Permalink Normal View History

2024-08-29 15:04:04 +00:00
[package]
name = "staticrustator"
2024-08-29 15:04:04 +00:00
version = "0.1.0"
edition = "2021"
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimisation
codegen-units = 1 # Reduced to increase optimisations.
panic = 'abort' # Abort on panic
strip = "symbols" # Strip symbols from binary
[dependencies]
askama = { version = "0.12.1" }
2024-08-31 19:56:15 +00:00
comrak = { version = "0.27.0", features = ["syntect"] }
2024-08-29 15:04:04 +00:00
markdown-parser = "0.1.2"
rand = "0.8.5"
serde = { version = "1.0.209", features = ["derive"] }
serde_yaml = "0.9.34"
2024-08-31 17:26:43 +00:00
syntect = "5.2.0"