Skip to content

Commit fb9e197

Browse files
committed
Update MSRV for all crates to 1.75
To prepare for use of async fn in traits.
1 parent e784977 commit fb9e197

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
env:
44
CARGO_TERM_COLOR: always
5-
MSRV: '1.70'
5+
MSRV: '1.75'
66

77
on:
88
push:

Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ default-members = ["axum", "axum-*"]
55
# Example has been deleted, but README.md remains
66
exclude = ["examples/async-graphql"]
77
resolver = "2"
8+
9+
[workspace.package]
10+
rust-version = "1.75"

axum-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
categories = ["asynchronous", "network-programming", "web-programming"]
33
description = "Core types and traits for axum"
44
edition = "2021"
5-
rust-version = "1.57"
5+
rust-version.workspace = true
66
homepage = "https://github.com/tokio-rs/axum"
77
keywords = ["http", "web", "framework"]
88
license = "MIT"

axum-extra/CHANGELOG.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ and this project adheres to [Semantic Versioning].
88
# Unreleased
99

1010
- **breaking:** Update to prost 0.13. Used for the `Protobuf` extractor ([#2829])
11-
- **change:** Update minimum rust version to 1.70 ([#2829])
12-
13-
[#2829]: https://github.com/tokio-rs/axum/pull/2829
11+
- **change:** Update minimum rust version to 1.75
1412

1513
# 0.9.4
1614

axum-extra/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
categories = ["asynchronous", "network-programming", "web-programming"]
33
description = "Extra utilities for axum"
44
edition = "2021"
5-
rust-version = "1.70"
5+
rust-version.workspace = true
66
homepage = "https://github.com/tokio-rs/axum"
77
keywords = ["http", "web", "framework"]
88
license = "MIT"

axum-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
categories = ["asynchronous", "network-programming", "web-programming"]
33
description = "Macros for axum"
44
edition = "2021"
5-
rust-version = "1.66"
5+
rust-version.workspace = true
66
homepage = "https://github.com/tokio-rs/axum"
77
keywords = ["axum"]
88
license = "MIT"

axum/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.7.7"
44
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2021"
7-
rust-version = "1.66"
7+
rust-version.workspace = true
88
homepage = "https://github.com/tokio-rs/axum"
99
keywords = ["http", "web", "framework"]
1010
license = "MIT"

0 commit comments

Comments
 (0)