crosvm/common/p9/fuzz/Cargo.toml
Dennis Kempin 5097b46a62 Fix p9/fuzz build
A search/replace broke the toml file. Fuzz builds are currently
not included in upstream builds.

BUG=None
TEST= USE=fuzzer emerge-amd64-generic dev-rust/p9

Change-Id: I9a42d8a18bc60d137f50fb44581e2e47db259f87
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3999265
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
2022-11-02 17:24:51 +00:00

17 lines
345 B
TOML

[package]
name = "p9-fuzz"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
[dependencies]
p9 = { path = "../" }
cros_fuzz = { path = "../../cros-fuzz" } # provided by ebuild
[[bin]]
name = "p9_tframe_decode_fuzzer"
path = "tframe_decode.rs"
[patch.crates-io]
wire_format_derive = { path = "../wire_format_derive" }