From 01e26a16baf02976a8fec1a7e4bd7f890099e008 Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Sat, 26 Aug 2023 17:13:15 -0700 Subject: [PATCH] Bump MSRV to 1.67 --- .github/workflows/rust.yml | 2 +- bench/Cargo.toml | 2 +- perf/Cargo.toml | 2 +- quinn-proto/Cargo.toml | 2 +- quinn-udp/Cargo.toml | 2 +- quinn/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e56359a21..7506cb9b2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,7 +58,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@1.63.0 + - uses: dtolnay/rust-toolchain@1.67.0 - uses: Swatinem/rust-cache@v2 - run: cargo check --lib --all-features -p quinn-udp -p quinn-proto -p quinn diff --git a/bench/Cargo.toml b/bench/Cargo.toml index 81b3430f7..e8a96e9ab 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -2,7 +2,7 @@ name = "bench" version = "0.1.0" edition = "2021" -rust-version = "1.63" +rust-version = "1.67" license = "MIT OR Apache-2.0" publish = false diff --git a/perf/Cargo.toml b/perf/Cargo.toml index 4f4f68df6..e127316bb 100644 --- a/perf/Cargo.toml +++ b/perf/Cargo.toml @@ -2,7 +2,7 @@ name = "perf" version = "0.1.0" edition = "2021" -rust-version = "1.63" +rust-version = "1.67" license = "MIT OR Apache-2.0" publish = false diff --git a/quinn-proto/Cargo.toml b/quinn-proto/Cargo.toml index 3ef0376c7..1ccfebbab 100644 --- a/quinn-proto/Cargo.toml +++ b/quinn-proto/Cargo.toml @@ -2,7 +2,7 @@ name = "quinn-proto" version = "0.11.0" edition = "2021" -rust-version = "1.63" +rust-version = "1.67" license = "MIT OR Apache-2.0" repository = "https://github.com/quinn-rs/quinn" description = "State machine for the QUIC transport protocol" diff --git a/quinn-udp/Cargo.toml b/quinn-udp/Cargo.toml index 4258d9e1a..cc7b988e3 100644 --- a/quinn-udp/Cargo.toml +++ b/quinn-udp/Cargo.toml @@ -2,7 +2,7 @@ name = "quinn-udp" version = "0.5.0" edition = "2021" -rust-version = "1.63" +rust-version = "1.67" license = "MIT OR Apache-2.0" repository = "https://github.com/quinn-rs/quinn" description = "UDP sockets with ECN information for the QUIC transport protocol" diff --git a/quinn/Cargo.toml b/quinn/Cargo.toml index e7e76a728..d81cbf10e 100644 --- a/quinn/Cargo.toml +++ b/quinn/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["quic"] categories = [ "network-programming", "asynchronous" ] workspace = ".." edition = "2021" -rust-version = "1.63" +rust-version = "1.67" [package.metadata.docs.rs] all-features = true