mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-07-26 07:58:14 +00:00
34 lines
563 B
TOML
34 lines
563 B
TOML
[package]
|
|
name = "garage-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true, features = ["derive"]}
|
|
libfuzzer-sys = { workspace = true }
|
|
|
|
[dependencies.garage_table]
|
|
path = "../src/table"
|
|
|
|
[dependencies.garage_model]
|
|
path = "../src/model"
|
|
features = ["arbitrary"]
|
|
|
|
[[bin]]
|
|
name = "version_crdt"
|
|
path = "fuzz_targets/version_crdt.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "mpu_crdt"
|
|
path = "fuzz_targets/mpu_crdt.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|