mirror of
https://github.com/chenxiaolong/avbroot.git
synced 2026-07-03 14:05:11 +02:00
39661a994d
Fixes: #506 Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com>
23 lines
665 B
TOML
23 lines
665 B
TOML
[package]
|
|
name = "fuzz"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
# There's currently no good way to exclude a workspace member for a specific
|
|
# platform, so we just compile empty stubs on Windows (which isn't supported by
|
|
# honggfuzz).
|
|
# https://github.com/rust-lang/cargo/issues/5220
|
|
# https://github.com/rust-lang/cargo/issues/6179
|
|
[target.'cfg(unix)'.dependencies]
|
|
avbroot = { path = "../avbroot" }
|
|
honggfuzz = "0.5.55"
|
|
|
|
[lints]
|
|
workspace = true
|