Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/assembler-x64/fuzz/Cargo.toml
1692 views
1
[package]
2
name = "cranelift-assembler-x64-fuzz"
3
version = "0.0.0"
4
publish = false
5
edition.workspace = true
6
rust-version.workspace = true
7
8
[package.metadata]
9
cargo-fuzz = true
10
11
[dependencies]
12
libfuzzer-sys = { workspace = true }
13
cranelift-assembler-x64 = { path = "..", features = ['fuzz'] }
14
15
[[bin]]
16
name = "roundtrip"
17
path = "fuzz_targets/roundtrip.rs"
18
test = false
19
doc = false
20
bench = false
21
22