-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
59 lines (48 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "revault_tx-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1", features = ["derive"] }
libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] }
secp256k1 = { version = "0.20.1", features = ["global-context"] }
[dependencies.revault_tx]
path = ".."
features = ["fuzz"]
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "parse_cancel"
path = "fuzz_targets/parse_cancel.rs"
test = false
doc = false
[[bin]]
name = "transactions_derivation"
path = "fuzz_targets/transactions_derivation.rs"
test = false
doc = false
[[bin]]
name = "parse_emergency"
path = "fuzz_targets/parse_emergency.rs"
test = false
doc = false
[[bin]]
name = "parse_unvault_emergency"
path = "fuzz_targets/parse_unvault_emergency.rs"
test = false
doc = false
[[bin]]
name = "parse_spend"
path = "fuzz_targets/parse_spend.rs"
test = false
doc = false
[[bin]]
name = "parse_unvault"
path = "fuzz_targets/parse_unvault.rs"
test = false
doc = false