Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ jobs:
- name: Install cargo-fuzz
run: |
if ! command -v cargo-fuzz >/dev/null 2>&1; then
cargo +nightly install cargo-fuzz --locked
# cargo-fuzz's lockfile can lag nightly compatibility; fall back to
# unlocked dependency resolution when --locked fails.
cargo +nightly install cargo-fuzz --locked || cargo +nightly install cargo-fuzz
fi

- name: Cargo fuzz (${{ matrix.target }})
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
import platform
import subprocess
import sys
from collections.abc import Callable
from pathlib import Path

from setuptools import Command, Extension, setup
from setuptools.command.build import build
from setuptools.command.build_ext import build_ext

BUILD_HOOKS = []
BUILD_HOOKS: list[Callable[..., None]] = []


def add_build_hook(hook):
Expand Down
Loading