-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
48 lines (40 loc) · 856 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
46
47
48
[package]
name = "simplicity-fuzz"
edition = "2021"
rust-version = "1.78.0"
version = "0.0.1"
authors = ["Generated by fuzz/generate-files.sh"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
simplicity-lang = { path = "..", features = ["test-utils"] }
[dev-dependencies]
base64 = "0.22.1"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[[bin]]
name = "c_rust_merkle"
path = "fuzz_targets/c_rust_merkle.rs"
test = false
doc = false
bench = false
[[bin]]
name = "decode_natural"
path = "fuzz_targets/decode_natural.rs"
test = false
doc = false
bench = false
[[bin]]
name = "decode_program"
path = "fuzz_targets/decode_program.rs"
test = false
doc = false
bench = false
[[bin]]
name = "parse_human"
path = "fuzz_targets/parse_human.rs"
test = false
doc = false
bench = false