From 4f7f0a34aaa25b4c7ae6f078ffd6f9cedac9c2aa Mon Sep 17 00:00:00 2001 From: Broderick Carlin Date: Mon, 30 Oct 2023 00:50:33 -0500 Subject: [PATCH] fix: Fix async builds and CI --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e468382..30f3fae 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build Async - run: cargo build --verbose --features = ["async"] + run: cargo build --verbose --features "async" --no-default-features - name: Build Blocking run: cargo build --verbose - name: Run tests