From a15cc52c9bff492b95b55a88a08cc53aca80e6ce Mon Sep 17 00:00:00 2001 From: "@brodycj - C. Jonathan Brody" Date: Mon, 6 Jan 2025 20:59:02 -0500 Subject: [PATCH] Bump MSRV of main crates to 1.63 --- .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 3f9c8b3d2..89a998f49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,7 +104,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.56' + - '1.63' runs-on: ubuntu-latest timeout-minutes: 60 steps: diff --git a/README.md b/README.md index 355d6078e..1ddedca89 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.56 or later. +The current `futures` requires Rust 1.63 or later. ### Feature `std` diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 9808d661c..9f591aa7d 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.56" +rust-version = "1.63" 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 e886bd1ca..e465482ac 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.56 or later. +The current `futures-channel` requires Rust 1.63 or later. ## License diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index 8e142e9b9..d74bf7567 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.56" +rust-version = "1.63" 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 724ff5bb3..bc4a3fcb0 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.56 or later. +The current `futures-executor` requires Rust 1.63 or later. ## License diff --git a/futures-macro/Cargo.toml b/futures-macro/Cargo.toml index c6fe91cd1..ced4016a3 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.56" +rust-version = "1.63" 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 7dbf85fad..4e58a5703 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.56" +rust-version = "1.63" 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 1ebec2d73..6a8ca2dd4 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.56 or later. +The current `futures-task` requires Rust 1.63 or later. ## License diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index 4dce6e615..62b8eae27 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.56" +rust-version = "1.63" 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 34595aaf3..078457d87 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.56 or later. +The current `futures-test` requires Rust 1.63 or later. ## License diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index 0fbd3d090..228a21155 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.56" +rust-version = "1.63" 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 60e2c2109..fc1b6d6b0 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.56 or later. +The current `futures-util` requires Rust 1.63 or later. ## License diff --git a/futures/Cargo.toml b/futures/Cargo.toml index d709a80ad..fdc8b2581 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.56" +rust-version = "1.63" license = "MIT OR Apache-2.0" readme = "../README.md" keywords = ["futures", "async", "future"]