Skip to content

docker: update Rust version to 1.82 #2051

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.81 AS build
FROM rust:1.82 AS build

WORKDIR /build

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ is disabled by default), by passing ``--features ffi`` to ``cargo``.
Building
--------

quiche requires Rust 1.81 or later to build. The latest stable Rust release can
quiche requires Rust 1.82 or later to build. The latest stable Rust release can
be installed using [rustup](https://rustup.rs/).

Once the Rust build environment is setup, the quiche source code can be fetched
Expand Down
2 changes: 1 addition & 1 deletion h3i/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
"Evan Rittenhouse <[email protected]>",
]
description = "Low-level HTTP/3 debugging and testing"
rust-version = "1.81"
rust-version = "1.82"
edition = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion quiche/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.24.2"
authors = ["Alessandro Ghedini <[email protected]>"]
description = "🥧 Savoury implementation of the QUIC transport protocol and HTTP/3"
build = "src/build.rs"
rust-version = "1.81"
rust-version = "1.82"
edition = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion quiche/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3101,7 +3101,7 @@ impl<F: BufFactory> Connection<F> {
if !self.crypto_ctx[epoch]
.key_update
.as_ref()
.map_or(true, |prev| prev.update_acked)
.is_none_or(|prev| prev.update_acked)
{
// Peer has updated keys twice without awaiting confirmation.
return Err(Error::KeyUpdate);
Expand Down
Loading