Merge pull request #15 from TheBlueMatt/master
[rust-lightning] / fuzz / Cargo.toml
1 [package]
2 name = "lightning-fuzz"
3 version = "0.0.1"
4 authors = ["Automatically generated"]
5 publish = false
6
7 [package.metadata]
8 cargo-fuzz = true
9
10 [features]
11 afl_fuzz = ["afl"]
12 honggfuzz_fuzz = ["honggfuzz"]
13
14 [dependencies]
15 lightning = { path = "..", features = ["fuzztarget"] }
16 bitcoin = { version = "0.12", features = ["fuzztarget"] }
17 secp256k1 = { version = "0.9", features = ["fuzztarget"] }
18 honggfuzz = { version = "0.5", optional = true }
19 afl = { version = "0.3", optional = true }
20
21 # Prevent this from interfering with workspaces
22 [workspace]
23 members = ["."]
24
25 [[bin]]
26 name = "peer_crypt_target"
27 path = "fuzz_targets/peer_crypt_target.rs"
28
29 [[bin]]
30 name = "channel_target"
31 path = "fuzz_targets/channel_target.rs"
32
33 [[bin]]
34 name = "full_stack_target"
35 path = "fuzz_targets/full_stack_target.rs"