-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
65 lines (56 loc) · 1.25 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "wasmbin"
version = "0.8.1"
authors = ["Ingvar Stepanyan <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "A self-generating WebAssembly parser and serializer"
repository = "https://github.com/RReverser/wasmbin"
categories = ["wasm", "parser-implementations"]
keywords = ["webassembly", "wasm", "parser", "serializer"]
exclude = [
"tests/testsuite",
"benches/fixture.wasm",
]
[dependencies]
leb128 = "0.2.5"
thiserror = "1.0.56"
wasmbin-derive = { version = "0.2.3", path = "derive" }
custom_debug = "0.6.0"
once_cell = "1.19.0"
[features]
default = []
proposals = [
"exception-handling",
"extended-name-section",
"multi-memory",
"tail-call",
"threads",
]
exception-handling = []
extended-name-section = []
multi-memory = []
tail-call = []
threads = []
nightly = []
[dev-dependencies]
criterion = "0.5.1"
libtest-mimic = "0.7.0"
wast = "70.0.0"
anyhow = { version = "1.0.79", features = ["backtrace"] }
tempfile = "3.9.0"
indexmap = { version = "2.1.0", features = ["rayon"] }
rayon = "1.8.0"
fs-err = "2.11.0"
clap = "4.4.18"
[[bench]]
name = "bench"
harness = false
[profile.bench]
debug = true
[[test]]
name = "spec"
harness = false
[workspace]
[package.metadata.docs.rs]
all-features = true