From 0c96ead9d15998492cb1a84a7138bd849e8ce273 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sun, 28 Sep 2025 21:46:54 +0200 Subject: [PATCH 1/2] Remove unused rustversion dependency of axum-core (#3502) --- Cargo.lock | 1 - axum-core/CHANGELOG.md | 6 ++++++ axum-core/Cargo.toml | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 12822616..3213bfd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -352,7 +352,6 @@ dependencies = [ "hyper 1.7.0", "mime", "pin-project-lite", - "rustversion", "sync_wrapper 1.0.2", "tokio", "tower-http 0.6.6", diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index f60f82b4..7783a750 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# Unreleased + +- **fixed:** Removed unused `rustversion` dependency ([#3502]) + +[#3502]: https://github.com/tokio-rs/axum/pull/3502 + # 0.5.3 - **added:** `DefaultBodyLimit::apply` for changing the `DefaultBodyLimit` inside extractors. diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 3b3b2f8a..1946a0f6 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -25,7 +25,6 @@ http-body = "1.0.0" http-body-util = "0.1.0" mime = "0.3.16" pin-project-lite = "0.2.7" -rustversion = "1.0.9" sync_wrapper = "1.0.0" tower-layer = "0.3" tower-service = "0.3" From c720f568da42909580a7876af1b8f50438cb1834 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sun, 28 Sep 2025 22:12:48 +0200 Subject: [PATCH 2/2] Release axum-core v0.5.4 --- Cargo.lock | 2 +- axum-core/CHANGELOG.md | 2 +- axum-core/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3213bfd9..ee914b1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.3" +version = "0.5.4" dependencies = [ "axum", "axum-extra", diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 7783a750..b6697115 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# Unreleased +# 0.5.4 - **fixed:** Removed unused `rustversion` dependency ([#3502]) diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 1946a0f6..a9b0c779 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-core" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.5.3" # remember to bump the version that axum and axum-extra depend on +version = "0.5.4" # remember to bump the version that axum and axum-extra depend on [features] tracing = ["dep:tracing"]