Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

bump axum-core version to make it compatible with axum 0.8 #1116

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions askama_axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down