forked from ordinals/ord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) Β· 787 Bytes
/
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
[package]
name = "fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[workspace]
members = ["."]
[package.metadata]
cargo-fuzz = true
[profile.release]
debug = 1
[dependencies]
arbitrary = { version = "1", features = ["derive"] }
bitcoin = { version = "0.30.1", features = ["rand"] }
libfuzzer-sys = "0.4"
ord = { path = ".." }
ordinals = { path = "../crates/ordinals" }
[[bin]]
name = "runestone-decipher"
path = "fuzz_targets/runestone_decipher.rs"
test = false
doc = false
[[bin]]
name = "transaction-builder"
path = "fuzz_targets/transaction_builder.rs"
test = false
doc = false
[[bin]]
name = "varint-encode"
path = "fuzz_targets/varint_encode.rs"
test = false
doc = false
[[bin]]
name = "varint-decode"
path = "fuzz_targets/varint_decode.rs"
test = false
doc = false