Set up fuzz infrastructure

This commit is contained in:
Arthur Carcano
2026-04-28 15:46:17 +02:00
committed by Alex
parent 0a5282d918
commit ade4d07bb5
8 changed files with 78 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
target
corpus
artifacts
coverage
+20
View File
@@ -0,0 +1,20 @@
[package]
name = "garage-fuzz"
version = "0.0.0"
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1.4.2", features = ["derive"] }
libfuzzer-sys = "0.4"
[dependencies.garage_table]
path = "../src/table"
[dependencies.garage_model]
path = "../src/model"
features = ["arbitrary"]