Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/environ/fuzz/Cargo.toml
1692 views
1
[package]
2
name = "wasmtime-environ-fuzz"
3
version = "0.0.0"
4
authors = ["Automatically generated"]
5
publish = false
6
edition.workspace = true
7
rust-version.workspace = true
8
9
[package.metadata]
10
cargo-fuzz = true
11
12
[dependencies]
13
arbitrary = { workspace = true, features = ["derive"] }
14
env_logger = { workspace = true }
15
libfuzzer-sys = { workspace = true }
16
wasmparser = { workspace = true }
17
wasmprinter = { workspace = true }
18
wat = { workspace = true }
19
wasmtime-environ = { workspace = true }
20
wasmtime-test-util = { workspace = true, optional = true, features = ['component-fuzz'] }
21
22
[[bin]]
23
name = "fact-valid-module"
24
path = "fuzz_targets/fact-valid-module.rs"
25
test = false
26
doc = false
27
required-features = ["component-model"]
28
29
[features]
30
component-model = [
31
"wasmtime-environ/component-model",
32
"wasmtime-environ/compile",
33
"dep:wasmtime-test-util",
34
]
35
36