Skip to content

Commit

Permalink
bump rust version to 1.67
Browse files Browse the repository at this point in the history
Handling the following error:
```
error: package `serde_with v3.8.2` cannot be built because it requires
rustc 1.67 or newer
```
  • Loading branch information
junhochoi authored Jul 2, 2024
1 parent 0a7b6c4 commit 5c2c82a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.66 as build
FROM rust:1.67 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 @@ -308,7 +308,7 @@ is disabled by default), by passing ``--features ffi`` to ``cargo``.
Building
--------

quiche requires Rust 1.66 or later to build. The latest stable Rust release can
quiche requires Rust 1.67 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 quiche/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
keywords = ["quic", "http3"]
categories = ["network-programming"]
license = "BSD-2-Clause"
rust-version = "1.66"
rust-version = "1.67"
include = [
"/*.md",
"/*.toml",
Expand Down

0 comments on commit 5c2c82a

Please sign in to comment.