Compare commits

..

12 Commits

Author SHA1 Message Date
134159f79c added logo bg pulsing effect
Some checks failed
test / cargo test (push) Failing after 1m41s
2025-06-15 22:20:00 +02:00
489156fe87 add mastodon 2025-06-15 22:20:00 +02:00
83a24557bd Merge pull request #16 from michalvankodev/renovate/axum-monorepo
Update Rust crate axum to 0.8.0
2025-06-13 20:51:04 +02:00
facb304a52 Merge pull request #19 from michalvankodev/renovate/askama_escape-0.x
Update Rust crate askama_escape to 0.13.0
2025-06-13 20:50:52 +02:00
1e8f48b6fe Merge pull request #18 from michalvankodev/renovate/askama-0.x
Update Rust crate askama to 0.14
2025-06-13 20:50:28 +02:00
1473b676f4 Update Rust crate axum to 0.8.0 2025-06-13 18:50:03 +00:00
74f875460a Update Rust crate askama to 0.14 2025-06-13 18:50:00 +00:00
cd639a830b Merge pull request #20 from michalvankodev/renovate/askama_axum-0.x
Update Rust crate askama_axum to 0.5.0
2025-06-13 20:49:28 +02:00
cde3faa3c6 Update Rust crate askama_axum to 0.5.0 2025-04-18 15:32:49 +00:00
e8f9ecc241 Update Rust crate askama_escape to 0.13.0 2025-03-27 20:15:53 +00:00
1a059a005a Merge pull request #17 from michalvankodev/renovate/pulldown-cmark-0.x
Update Rust crate pulldown-cmark to 0.13
2025-02-12 22:53:34 +01:00
ff087b0577 Update Rust crate pulldown-cmark to 0.13 2025-02-12 18:27:55 +00:00

View File

@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = { version = "0.12", features = ["with-axum", "mime", "mime_guess"] }
askama_axum = "0.4.0"
axum = "0.7.3"
askama = { version = "0.14", features = ["with-axum", "mime", "mime_guess"] }
askama_axum = "0.5.0"
axum = "0.8.0"
chrono = { version = "0.4.31", features = ["serde"] }
pulldown-cmark = { version = "0.12" }
pulldown-cmark = { version = "0.13" }
gray_matter = "0.2.6"
rss = "2.0.7"
serde = "1.0.195"
@ -25,7 +25,7 @@ anyhow = "1.0.86"
rayon = "1.10.0"
syntect = "5.2.0"
indoc = "2.0.5"
askama_escape = "0.10.3"
askama_escape = "0.13.0"
mime_guess = "2.0.5"
[build]