From 98e80d4d2863028a86a0c95616ad1efdaafd35d2 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 31 Mar 2023 01:42:21 +0900 Subject: [PATCH] Bump MSRV of utility crates to 1.56 (#2733) 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 07a39cc1ce..9d1be25f68 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 4caea4e27f..0c1119a112 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-channel" version = "0.3.27" 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 d1a44011e7..0347d1f6d8 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-executor" version = "0.3.27" 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 d865c1e3b6..38e4229b21 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-macro" version = "0.3.27" 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 34f66e4eab..2fc9b25461 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-task" version = "0.3.27" 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 7d9cecab4d..4e0b774c5e 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-test" version = "0.3.27" 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 ca05fe43a9..db43936dba 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -2,7 +2,7 @@ name = "futures-util" version = "0.3.27" 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 f2832f27b3..976e83873f 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -2,7 +2,7 @@ name = "futures" version = "0.3.27" edition = "2018" -rust-version = "1.45" +rust-version = "1.56" license = "MIT OR Apache-2.0" readme = "../README.md" keywords = ["futures", "async", "future"]