staticrustator/Cargo.toml

22 lines
530 B
TOML
Raw Normal View History

2024-08-29 15:04:04 +00:00
[package]
name = "rusty_duck"
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]
ascii = "1.1.0"
askama = { version = "0.12.1" }
2024-08-29 15:04:04 +00:00
comrak = "0.27.0"
markdown-parser = "0.1.2"
rand = "0.8.5"
serde = { version = "1.0.209", features = ["derive"] }
serde_yaml = "0.9.34"
tiny_http = "0.12.0"