forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 1023 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
[package]
name = "wasmparser"
version = "0.85.0"
authors = ["Yury Delendik <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"
homepage = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"
keywords = ["parser", "WebAssembly", "wasm"]
description = """
A simple event-driven library for parsing WebAssembly binary files.
"""
edition = "2021"
[dependencies]
indexmap = "1.8.0"
[dev-dependencies]
anyhow = "1.0"
criterion = "0.3"
getopts = "0.2"
wat = { path = "../wat" }
wast = { path = "../wast" }
rayon = "1.3"
wasmparser-dump = { path = "../dump" }
[[bench]]
name = "benchmark"
harness = false
[features]
# The "deterministic" feature supports only Wasm code with "deterministic" execution
# across any hardware. This feature is very critical for many Blockchain infrastructures
# that rely on deterministic executions of smart contracts across different hardwares.
deterministic = []