michalvankodev-site/Cargo.toml

49 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2024-01-09 19:54:25 +01:00
[package]
name = "axum_server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-11 20:43:47 +01:00
askama = { version = "0.12", features = ["with-axum", "mime", "mime_guess"] }
askama_axum = "0.4.0"
2024-01-09 19:54:25 +01:00
axum = "0.7.3"
chrono = { version = "0.4.31", features = ["serde"] }
2024-03-02 22:08:03 +01:00
pulldown-cmark = { version = "0.10" }
2024-01-09 19:54:25 +01:00
gray_matter = "0.2.6"
2024-01-30 22:19:36 +01:00
rss = "2.0.7"
2024-01-09 19:54:25 +01:00
serde = "1.0.195"
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["full"] }
2024-02-22 20:13:23 +01:00
tower-http = { version = "0.5.0", features = ["trace", "fs"] }
2024-02-27 22:53:08 +01:00
tower-livereload = "0.9.2"
2024-01-09 19:54:25 +01:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2024-08-28 22:24:56 +02:00
image = "0.25.2"
anyhow = "1.0.86"
2024-09-05 21:23:28 +02:00
rayon = "1.10.0"
2024-09-11 13:15:00 +02:00
syntect = "5.2.0"
2024-09-18 18:36:54 +02:00
indoc = "2.0.5"
askama_escape = "0.10.3"
2024-03-13 19:14:10 +01:00
[build]
rustflags = ["-Z", "threads=8"]
2024-09-17 21:02:05 +02:00
# [target.x86_64-unknown-linux-gnu]
# rustflags = [
# "-C", "link-arg=-fuse-ld=lld"
# ]
2024-09-06 22:32:12 +02:00
2024-03-13 19:14:10 +01:00
[profile.dev]
2024-09-27 11:52:25 +02:00
debug = true
2024-09-06 11:23:44 +02:00
opt-level = 0
2024-09-06 22:32:12 +02:00
# codegen-units = 16
# lto = "thin"
2024-03-13 19:14:10 +01:00
panic = "unwind"
strip = false
2024-09-06 11:23:44 +02:00
incremental = true
2024-08-16 20:22:19 +02:00
[profile.dev.package.askama_derive]
opt-level = 3