miden-crypto/miden-crypto-fuzz/Cargo.toml
2025-03-15 17:13:58 -07:00

20 lines
378 B
TOML

[package]
name = "miden-crypto-fuzz"
version = "0.0.0"
publish = false
edition = "2024"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
miden-crypto = { path = "../miden-crypto", features = ["concurrent"] }
rand = { version = "0.9", default-features = false }
[[bin]]
name = "smt"
path = "fuzz_targets/smt.rs"
test = false
doc = false
bench = false