mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
27 lines
524 B
TOML
27 lines
524 B
TOML
|
[package]
|
||
|
name = "lightning-invoice-fuzz"
|
||
|
version = "0.0.1"
|
||
|
authors = ["Automatically generated"]
|
||
|
publish = false
|
||
|
|
||
|
[package.metadata]
|
||
|
cargo-fuzz = true
|
||
|
|
||
|
[features]
|
||
|
afl_fuzz = ["afl"]
|
||
|
honggfuzz_fuzz = ["honggfuzz"]
|
||
|
|
||
|
[dependencies]
|
||
|
honggfuzz = { version = "0.5", optional = true }
|
||
|
afl = { version = "0.4", optional = true }
|
||
|
lightning-invoice = { path = ".."}
|
||
|
bech32 = "0.7"
|
||
|
|
||
|
# Prevent this from interfering with workspaces
|
||
|
[workspace]
|
||
|
members = ["."]
|
||
|
|
||
|
[[bin]]
|
||
|
name = "serde_data_part"
|
||
|
path = "fuzz_targets/serde_data_part.rs"
|