pow_sha256/fuzz/Cargo.toml
2021-06-19 21:05:43 +05:30

28 lines
479 B
TOML

[package]
name = "pow_sha256-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
sha2 = "0.9"
arbitrary = { version = "1", features = ["derive"] }
[dependencies.pow_sha256]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_target_1"
path = "fuzz_targets/fuzz_target_1.rs"
test = false
doc = false