Update prost to 0.13 (#2829)

This commit is contained in:
Shawn 2024-09-20 15:06:41 -04:00 committed by GitHub
parent 42003c08b5
commit 855dc191b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,7 @@ name: CI
env:
CARGO_TERM_COLOR: always
MSRV: '1.66'
MSRV: '1.70'
on:
push:

View File

@ -8,8 +8,11 @@ and this project adheres to [Semantic Versioning].
# Unreleased
- **added:** The `response::Attachment` type ([#2789])
- **breaking:** Update to prost 0.13. Used for the `Protobuf` extractor ([#2829])
- **change:** Update minimum rust version to 1.70 ([#2829])
[#2789]: https://github.com/tokio-rs/axum/pull/2789
[#2829]: https://github.com/tokio-rs/axum/pull/2829
# 0.9.3 (24. March, 2024)

View File

@ -2,7 +2,7 @@
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Extra utilities for axum"
edition = "2021"
rust-version = "1.66"
rust-version = "1.70"
homepage = "https://github.com/tokio-rs/axum"
keywords = ["http", "web", "framework"]
license = "MIT"
@ -60,7 +60,7 @@ form_urlencoded = { version = "1.1.0", optional = true }
headers = { version = "0.4.0", optional = true }
multer = { version = "3.0.0", optional = true }
percent-encoding = { version = "2.1", optional = true }
prost = { version = "0.12", optional = true }
prost = { version = "0.13", optional = true }
serde_html_form = { version = "0.2.0", optional = true }
serde_json = { version = "1.0.71", optional = true }
serde_path_to_error = { version = "0.1.8", optional = true }