From 38bf6dc05e15403e3b2650a03dac691d4b9dcfc1 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 8 Jul 2022 01:51:58 +0900 Subject: [PATCH] Bump MSRV to Rust 1.47 https://github.com/smol-rs/async-task/releases/tag/v4.3.0 --- .clippy.toml | 2 +- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.clippy.toml b/.clippy.toml index eb66960..7846a3e 100644 --- a/.clippy.toml +++ b/.clippy.toml @@ -1 +1 @@ -msrv = "1.46" +msrv = "1.47" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04f6970..17b61dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: matrix: # When updating this, the reminder to update the minimum supported # Rust version in Cargo.toml and .clippy.toml. - rust: ['1.46'] + rust: ['1.47'] steps: - uses: actions/checkout@v3 - name: Install Rust diff --git a/Cargo.toml b/Cargo.toml index 49b88b3..493e9a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ name = "smol" version = "1.2.5" authors = ["Stjepan Glavina "] edition = "2018" -rust-version = "1.46" +rust-version = "1.47" description = "A small and fast async runtime" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/smol"