diff --git a/.github/workflows/mldsa.yml b/.github/workflows/mldsa.yml index 083248063..b47bd5ce9 100644 --- a/.github/workflows/mldsa.yml +++ b/.github/workflows/mldsa.yml @@ -101,6 +101,8 @@ jobs: # Benchmarks - name: 🔨 Build Benchmarks + # Comparison benchmarks don't work on intel mac. Re-enable if we think it's worthwhile. + if: ${{ matrix.os != 'macos-13' }} run: | cargo clean cargo bench --no-run diff --git a/libcrux-ml-dsa/Cargo.toml b/libcrux-ml-dsa/Cargo.toml index 230b5d931..e6b967e01 100644 --- a/libcrux-ml-dsa/Cargo.toml +++ b/libcrux-ml-dsa/Cargo.toml @@ -28,7 +28,7 @@ hex = { version = "0.4.3", features = ["serde"] } serde_json = { version = "1.0" } serde = { version = "1.0", features = ["derive"] } criterion = "0.5" -pqcrypto-mldsa = { version = "0.1.0" } #, default-features = false +pqcrypto-mldsa = { version = "0.1.0" } #, default-features = false [features] default = ["std", "mldsa44", "mldsa65", "mldsa87"]