From baa0aef8e3307f9a8575f8e36a59db221b18eaff Mon Sep 17 00:00:00 2001 From: vac Date: Wed, 1 Jan 2025 23:13:11 +0800 Subject: [PATCH] bump axum-core version to make it compatible with axum 0.8 --- askama_axum/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/askama_axum/Cargo.toml b/askama_axum/Cargo.toml index 229d8cff..2067806c 100644 --- a/askama_axum/Cargo.toml +++ b/askama_axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_axum" -version = "0.5.0" +version = "0.6.0" edition = "2021" rust-version = "1.65" description = "Axum integration for Askama templates" @@ -15,11 +15,11 @@ readme = "README.md" [dependencies] askama = { version = "0.13", path = "../askama", default-features = false, features = ["with-axum"] } -axum-core = "0.4" +axum-core = "0.5" http = "1.0" [dev-dependencies] -axum = { version = "0.7", default-features = false } +axum = { version = "0.8", default-features = false } http-body-util = "0.1" tokio = { version = "1.0", features = ["macros", "rt"] } tower = "0.5"