Release axum 0.8.0-alpha.1 and related crates (#2958)

This commit is contained in:
Jonas Platte
2024-10-05 11:20:05 +02:00
committed by GitHub
parent 20a0624795
commit 9a69e415fb
8 changed files with 30 additions and 18 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.7.7"
version = "0.8.0-alpha.1" # remember to bump the version that axum-extra and axum-macros depend on
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
@@ -41,7 +41,7 @@ ws = ["dep:hyper", "tokio", "dep:tokio-tungstenite", "dep:sha1", "dep:base64"]
__private_docs = ["tower/full", "dep:tower-http"]
[dependencies]
axum-core = { path = "../axum-core", version = "0.4.5" }
axum-core = { path = "../axum-core", version = "0.5.0-alpha.1" }
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"
@@ -61,7 +61,7 @@ tower-layer = "0.3.2"
tower-service = "0.3"
# optional dependencies
axum-macros = { path = "../axum-macros", version = "0.4.2", optional = true }
axum-macros = { path = "../axum-macros", version = "0.5.0-alpha.1", optional = true }
base64 = { version = "0.22.1", optional = true }
hyper = { version = "1.1.0", optional = true }
hyper-util = { version = "0.1.3", features = ["tokio", "server", "service"], optional = true }
@@ -111,7 +111,7 @@ features = [
[dev-dependencies]
anyhow = "1.0"
axum-macros = { path = "../axum-macros", version = "0.4.1", features = ["__private"] }
axum-macros = { path = "../axum-macros", version = "0.5.0-alpha.1", features = ["__private"] }
quickcheck = "1.0"
quickcheck_macros = "1.0"
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart"] }