From a3e031cedc46f53c3610c60a2086062a13cf4ff7 Mon Sep 17 00:00:00 2001 From: tottoto Date: Sat, 4 Nov 2023 00:17:30 +0900 Subject: [PATCH] chore(ci): fix unreachable pub item ci error --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 415e59ed57..670255e127 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -209,7 +209,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: stable override: true - name: Install cbindgen @@ -224,7 +224,7 @@ jobs: RUSTFLAGS: --cfg hyper_unstable_ffi with: command: rustc - args: --features client,http1,http2,ffi -Z unstable-options --crate-type cdylib + args: --features client,http1,http2,ffi --crate-type cdylib - name: Make Examples run: cd capi/examples && make client