From 68e5e629d03a55acfbe463d78b2827c8c3d6ee8c Mon Sep 17 00:00:00 2001 From: jamesbt365 Date: Thu, 23 May 2024 18:58:25 +0100 Subject: [PATCH] Remove RUSTFLAGS from .cargo/config.toml (#2875) This isn't needed anymore because simd-json has been removed on `next`. --- .cargo/config.toml | 2 -- .github/workflows/ci.yml | 3 --- 2 files changed, 5 deletions(-) delete mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml deleted file mode 100644 index 943198092c4..00000000000 --- a/.cargo/config.toml +++ /dev/null @@ -1,2 +0,0 @@ -[build] -rustflags = ["-C", "target-cpu=haswell"] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52cfca9bf90..7726b2d18fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,9 +128,6 @@ jobs: - name: Cache uses: Swatinem/rust-cache@v2 - - name: Remove cargo build config - run: rm .cargo/config.toml - - name: Build run: cargo build