2021-04-07 12:48:01 -04:00
|
|
|
[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 }
|
2022-02-17 19:29:59 +00:00
|
|
|
lightning-invoice = { path = ".." }
|
|
|
|
lightning = { path = "../../lightning", features = ["regex"] }
|
2021-07-22 14:31:37 +00:00
|
|
|
bech32 = "0.8"
|
2021-04-07 12:48:01 -04:00
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
[workspace]
|
|
|
|
members = ["."]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "serde_data_part"
|
|
|
|
path = "fuzz_targets/serde_data_part.rs"
|