Fix fuzz Cargo.toml regression

This commit is contained in:
Joshua Warner 2024-12-01 16:00:39 -08:00
parent edcdd99f59
commit b79d387b46
No known key found for this signature in database
GPG key ID: 89AD497003F93FDD

View file

@ -10,9 +10,9 @@ edition = "2021"
cargo-fuzz = true cargo-fuzz = true
[dependencies] [dependencies]
test_syntax.workspace = true test_syntax = { path = "../../test_syntax" }
roc_parse.workspace = true roc_parse = { path = "../../parse" }
bumpalo = { workspace = true, features = ["collections"] } bumpalo = { version = "3.12.0", features = ["collections"] }
libfuzzer-sys = "0.4" libfuzzer-sys = "0.4"
# Prevent this from interfering with workspaces # Prevent this from interfering with workspaces