From d6b15095c51ee3d1d4c8939316b4e4b2c256bbaa Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 21 Oct 2022 10:33:50 -0500 Subject: [PATCH] Add explicit dependency on `libfuzzer-sys` (#96) This fixes a build issue with the most recent version of `libfuzzer-sys` where the prior version of the `fuzz_target!` macro didn't need the crate as an explicit dependency but the latest version does. --- fuzz/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 1df5bd3..3315d02 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -13,6 +13,7 @@ cargo-fuzz = true regalloc2 = { path = "../", features = ["fuzzing"] } log = { version = "0.4.8", default-features = false } env_logger = "0.8.3" +libfuzzer-sys = "0.4.2" # Prevent this from interfering with workspaces [workspace]