mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-07-26 16:08:13 +00:00
34 lines
550 B
TOML
34 lines
550 B
TOML
[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"]
|
|
|
|
[[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
|