forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (43 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (43 loc) · 1.21 KB
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
49
50
51
52
[package]
name = "wasm-tools-fuzz"
publish = false
edition.workspace = true
rust-version.workspace = true
[package.metadata]
cargo-fuzz = true
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true }
arbitrary = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
tempfile = { workspace = true }
wasm-encoder = { workspace = true }
wasm-mutate = { workspace = true }
wasm-smith = { workspace = true, features = ['component-model', 'wasmparser'] }
wasmparser = { workspace = true, features = ['std', 'features'] }
wasmprinter = { workspace = true, features = ['component-model'] }
wasmtime = { workspace = true, optional = true }
wast = { workspace = true }
wat = { workspace = true }
wit-component = { workspace = true, features = ['dummy-module'] }
wit-parser = { workspace = true }
wit-smith = { workspace = true }
[dependencies.wit-parser-old]
package = 'wit-parser'
version = '0.214.0'
[dependencies.wit-component-old]
package = 'wit-component'
version = '0.214.0'
[target.'cfg(fuzzing)'.dependencies]
libfuzzer-sys = { workspace = true }
[dev-dependencies]
rand = { workspace = true }
[lib]
doctest = false
[[bin]]
name = "run"
path = "fuzz_targets/run.rs"
test = false
bench = false