pow_sha256/fuzz/Cargo.toml
Renovate Bot c363d1e517
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
fix(deps): update rust crate sha2 to 0.10
2024-06-04 08:06:05 +00:00

28 lines
480 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.10"
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