[package] name = "commonware-runtime-fuzz" version.workspace = true publish = false edition.workspace = true license.workspace = true [package.metadata] cargo-fuzz = true [dependencies] arbitrary = { workspace = true, features = ["derive"] } commonware-cryptography.workspace = true commonware-runtime = { workspace = true, features = ["test-utils"] } commonware-utils.workspace = true libfuzzer-sys.workspace = true [[bin]] name = "buffer" path = "fuzz_targets/buffer.rs" test = false doc = false [[bin]] name = "blob_integrity" path = "fuzz_targets/blob_integrity.rs" test = false doc = false [[bin]] name = "blob_creation" path = "fuzz_targets/blob_creation.rs" test = false doc = false