From 6f9a15f6e30cb3a2a79aabb9386dfaf282ef174d Mon Sep 17 00:00:00 2001 From: tison Date: Sat, 5 Apr 2025 17:53:01 +0800 Subject: [PATCH] bump msrv to 1.68 Signed-off-by: tison --- .github/workflows/ci.yml | 2 +- README.md | 2 +- futures-channel/Cargo.toml | 2 +- futures-channel/README.md | 2 +- futures-executor/Cargo.toml | 2 +- futures-executor/README.md | 2 +- futures-macro/Cargo.toml | 2 +- futures-task/Cargo.toml | 2 +- futures-task/README.md | 2 +- futures-test/Cargo.toml | 2 +- futures-test/README.md | 2 +- futures-util/Cargo.toml | 2 +- futures-util/README.md | 2 +- futures/Cargo.toml | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1299559b..8bdd6320 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,7 @@ jobs: rust: # This is the minimum Rust version supported by futures, futures-util, futures-task, futures-macro, futures-executor, futures-channel, futures-test. # When updating this, the reminder to update the minimum required version in README.md and Cargo.toml. - - '1.63' + - '1.68' runs-on: ubuntu-latest timeout-minutes: 60 steps: diff --git a/README.md b/README.md index 1ddedca8..a2c622a8 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Add this to your `Cargo.toml`: futures = "0.3" ``` -The current `futures` requires Rust 1.63 or later. +The current `futures` requires Rust 1.68 or later. ### Feature `std` diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 9f591aa7..6443709c 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-channel" version = "0.4.0-alpha.0" edition = "2018" -rust-version = "1.63" +rust-version = "1.68" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-channel/README.md b/futures-channel/README.md index e465482a..f3868392 100644 --- a/futures-channel/README.md +++ b/futures-channel/README.md @@ -11,7 +11,7 @@ Add this to your `Cargo.toml`: futures-channel = "0.3" ``` -The current `futures-channel` requires Rust 1.63 or later. +The current `futures-channel` requires Rust 1.68 or later. ## License diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index d74bf756..0b9730be 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-executor" version = "0.4.0-alpha.0" edition = "2018" -rust-version = "1.63" +rust-version = "1.68" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-executor/README.md b/futures-executor/README.md index bc4a3fcb..b3906543 100644 --- a/futures-executor/README.md +++ b/futures-executor/README.md @@ -11,7 +11,7 @@ Add this to your `Cargo.toml`: futures-executor = "0.3" ``` -The current `futures-executor` requires Rust 1.63 or later. +The current `futures-executor` requires Rust 1.68 or later. ## License diff --git a/futures-macro/Cargo.toml b/futures-macro/Cargo.toml index ced4016a..25ee040f 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-macro" version = "0.4.0-alpha.0" edition = "2018" -rust-version = "1.63" +rust-version = "1.68" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-task/Cargo.toml b/futures-task/Cargo.toml index 4e58a570..be1a6c6c 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-task" version = "0.4.0-alpha.0" edition = "2018" -rust-version = "1.63" +rust-version = "1.68" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-task/README.md b/futures-task/README.md index 6a8ca2dd..40296f03 100644 --- a/futures-task/README.md +++ b/futures-task/README.md @@ -11,7 +11,7 @@ Add this to your `Cargo.toml`: futures-task = "0.3" ``` -The current `futures-task` requires Rust 1.63 or later. +The current `futures-task` requires Rust 1.68 or later. ## License diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index 62b8eae2..245df303 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-test" version = "0.4.0-alpha.0" edition = "2018" -rust-version = "1.63" +rust-version = "1.68" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-test/README.md b/futures-test/README.md index 078457d8..407ec0e2 100644 --- a/futures-test/README.md +++ b/futures-test/README.md @@ -11,7 +11,7 @@ Add this to your `Cargo.toml`: futures-test = "0.3" ``` -The current `futures-test` requires Rust 1.63 or later. +The current `futures-test` requires Rust 1.68 or later. ## License diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index d2876cc7..b7260a9b 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-util" version = "0.4.0-alpha.0" edition = "2018" -rust-version = "1.63" +rust-version = "1.68" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" diff --git a/futures-util/README.md b/futures-util/README.md index fc1b6d6b..d4bcad34 100644 --- a/futures-util/README.md +++ b/futures-util/README.md @@ -11,7 +11,7 @@ Add this to your `Cargo.toml`: futures-util = "0.3" ``` -The current `futures-util` requires Rust 1.63 or later. +The current `futures-util` requires Rust 1.68 or later. ## License diff --git a/futures/Cargo.toml b/futures/Cargo.toml index eecb07ce..d8111b74 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -2,7 +2,7 @@ name = "futures" version = "0.4.0-alpha.0" edition = "2018" -rust-version = "1.63" +rust-version = "1.68" license = "MIT OR Apache-2.0" readme = "../README.md" keywords = ["futures", "async", "future"]