rust-lightning/lightning-invoice/fuzz/Cargo.toml
Wilmer Paulino f4f1093edc
Bump workspace to rust edition 2018
Mostly motivated by the need of async/await.
2022-10-21 14:47:34 -07:00

28 lines
633 B
TOML

[package]
name = "lightning-invoice-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[features]
afl_fuzz = ["afl"]
honggfuzz_fuzz = ["honggfuzz"]
[dependencies]
honggfuzz = { version = "0.5", optional = true, default-features = false }
afl = { version = "0.4", optional = true }
lightning-invoice = { path = ".." }
lightning = { path = "../../lightning", features = ["regex"] }
bech32 = "0.9.0"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "serde_data_part"
path = "fuzz_targets/serde_data_part.rs"