From 2a2c1ee34a94113638612e2aa67ffcf44351ca11 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 28 Dec 2022 12:36:34 +0900 Subject: [PATCH] Bump MSRV to 1.47 On Windows, we depend on blocking and async-task that require Rust 1.47. --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6461de..0da6dab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: os: [ubuntu-latest, windows-latest] # When updating this, the reminder to update the minimum supported # Rust version in Cargo.toml. - rust: ['1.46'] + rust: ['1.47'] steps: - uses: actions/checkout@v3 - name: Install Rust diff --git a/Cargo.toml b/Cargo.toml index 66f3185..32aae52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ name = "async-process" version = "1.6.0" authors = ["Stjepan Glavina "] edition = "2018" -rust-version = "1.46" +rust-version = "1.47" description = "Async interface for working with processes" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/async-process"