From ab13bd7043d2519abcbb6f317e75d0caffaf2f18 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 31 Mar 2023 01:19:02 +0900 Subject: [PATCH] Bump MSRV of utility crates to 1.56 syn 2.0 requires 1.56. --- .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 cb47109964..a20945b66f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,7 +108,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.45' + - '1.56' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 45e1f5b320..355d6078e3 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.45 or later. +The current `futures` requires Rust 1.56 or later. ### Feature `std` diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 2bd0cc1597..bb80ed680c 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.45" +rust-version = "1.56" 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 3287be924c..e886bd1cad 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.45 or later. +The current `futures-channel` requires Rust 1.56 or later. ## License diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index e071de9251..b522fd1f9e 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.45" +rust-version = "1.56" 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 67086851e4..724ff5bb33 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.45 or later. +The current `futures-executor` requires Rust 1.56 or later. ## License diff --git a/futures-macro/Cargo.toml b/futures-macro/Cargo.toml index 17361cbfbd..87b3a99c33 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.45" +rust-version = "1.56" 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 b98e13f834..75d6e08449 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.45" +rust-version = "1.56" 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 8ceeba9d57..1ebec2d73d 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.45 or later. +The current `futures-task` requires Rust 1.56 or later. ## License diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index 324dbfbe3e..ed46dd1242 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.45" +rust-version = "1.56" 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 b3c30e5d6c..34595aaf30 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.45 or later. +The current `futures-test` requires Rust 1.56 or later. ## License diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index 235a3b5620..fadd30404c 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.45" +rust-version = "1.56" 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 6e0aaed847..60e2c2109a 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.45 or later. +The current `futures-util` requires Rust 1.56 or later. ## License diff --git a/futures/Cargo.toml b/futures/Cargo.toml index 84774cf1ce..95f5d22ba4 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.45" +rust-version = "1.56" license = "MIT OR Apache-2.0" readme = "../README.md" keywords = ["futures", "async", "future"]