From 5c4ddab68f6ac60855b83055d0943746f2166d79 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 27 Nov 2022 13:25:51 +0900 Subject: [PATCH 1/2] Remove msrv field from .clippy.toml Since Rust 1.64, Clippy respects `rust-version` field in Cargo.toml. rust-lang/rust@b776fb8 --- .clippy.toml | 1 - .github/workflows/ci.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 .clippy.toml diff --git a/.clippy.toml b/.clippy.toml deleted file mode 100644 index eb66960..0000000 --- a/.clippy.toml +++ /dev/null @@ -1 +0,0 @@ -msrv = "1.46" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32b87d7..5f1ee7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: matrix: # When updating this, the reminder to update the minimum supported - # Rust version in Cargo.toml and .clippy.toml. + # Rust version in Cargo.toml. rust: ['1.46'] steps: - uses: actions/checkout@v3 From ce1a8bfc3df090db54b295f55307fc098d019071 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 27 Nov 2022 13:26:28 +0900 Subject: [PATCH 2/2] Fix build failure with minimal-versions --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f6a6ce0..f27903e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ futures-lite = "1.11.0" autocfg = "1" [target.'cfg(unix)'.dependencies] -async-io = "1.0.0" +async-io = "1.8" libc = "0.2.88" [target.'cfg(unix)'.dependencies.signal-hook]