Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/fuzz/Cargo.toml
1685 views
1
[package]
2
name = "wasmtime-fuzz"
3
version = "0.0.0"
4
edition.workspace = true
5
rust-version.workspace = true
6
publish = false
7
8
[lints]
9
workspace = true
10
11
[package.metadata]
12
cargo-fuzz = true
13
14
[dependencies]
15
mutatis = { workspace = true }
16
rand = { workspace = true }
17
postcard = { workspace = true }
18
anyhow = { workspace = true }
19
env_logger = { workspace = true }
20
cranelift-assembler-x64 = { workspace = true, features = ["fuzz"] }
21
cranelift-codegen = { workspace = true, features = ["incremental-cache", "x86", "arm64", "s390x", "riscv64"] }
22
cranelift-reader = { workspace = true }
23
cranelift-filetests = { workspace = true }
24
cranelift-interpreter = { workspace = true }
25
cranelift-fuzzgen = { workspace = true }
26
cranelift-native = { workspace = true }
27
cranelift-control = { workspace = true }
28
libfuzzer-sys = { workspace = true, features = ["arbitrary-derive"] }
29
target-lexicon = { workspace = true }
30
pulley-interpreter-fuzz = { workspace = true }
31
smallvec = { workspace = true }
32
wasmparser = { workspace = true }
33
wasmtime = { workspace = true, features = ["winch"] }
34
wasmtime-fuzzing = { workspace = true }
35
wasmtime-test-util = { workspace = true }
36
log = { workspace = true }
37
38
[build-dependencies]
39
anyhow = { workspace = true }
40
proc-macro2 = { workspace = true }
41
arbitrary = { workspace = true, features = ["derive"] }
42
rand = { version = "0.8.0" }
43
quote = { workspace = true }
44
wasmtime-test-util = { workspace = true, features = ['component-fuzz'] }
45
46
[features]
47
default = ['fuzz-spec-interpreter']
48
fuzz-spec-interpreter = ['wasmtime-fuzzing/fuzz-spec-interpreter']
49
chaos = ["cranelift-control/chaos"]
50
51
[[bin]]
52
name = "compile"
53
path = "fuzz_targets/compile.rs"
54
test = false
55
doc = false
56
57
[[bin]]
58
name = "instantiate"
59
path = "fuzz_targets/instantiate.rs"
60
test = false
61
doc = false
62
63
[[bin]]
64
name = "differential"
65
path = "fuzz_targets/differential.rs"
66
test = false
67
doc = false
68
69
[[bin]]
70
name = "wast_tests"
71
path = "fuzz_targets/wast_tests.rs"
72
test = false
73
doc = false
74
75
[[bin]]
76
name = "cranelift-fuzzgen"
77
path = "fuzz_targets/cranelift-fuzzgen.rs"
78
test = false
79
doc = false
80
81
[[bin]]
82
name = "instantiate-many"
83
path = "fuzz_targets/instantiate-many.rs"
84
test = false
85
doc = false
86
87
[[bin]]
88
name = "component_api"
89
path = "fuzz_targets/component_api.rs"
90
test = false
91
doc = false
92
93
[[bin]]
94
name = "cranelift-icache"
95
path = "fuzz_targets/cranelift-icache.rs"
96
test = false
97
doc = false
98
99
[[bin]]
100
name = "call_async"
101
path = "fuzz_targets/call_async.rs"
102
test = false
103
doc = false
104
105
[[bin]]
106
name = "misc"
107
path = "fuzz_targets/misc.rs"
108
test = false
109
doc = false
110
bench = false
111
112
[[bin]]
113
name = "table_ops"
114
path = "fuzz_targets/table_ops.rs"
115
test = false
116
doc = false
117
bench = false
118
119