-
Notifications
You must be signed in to change notification settings - Fork 64
/
Cargo.toml
49 lines (43 loc) · 1005 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
authors = ["Nick Fitzgerald <[email protected]>"]
edition = "2018"
name = "walrus"
version = "0.23.0"
license = "MIT/Apache-2.0"
readme = "README.md"
categories = ["wasm"]
repository = "https://github.com/rustwasm/walrus"
homepage = "https://github.com/rustwasm/walrus"
documentation = "https://docs.rs/walrus"
description = """
A library for performing WebAssembly transformations
"""
[lib]
path = "src/lib.rs"
bench = false
[[bench]]
name = "benches"
path = "benches/benches.rs"
harness = false
[dependencies]
anyhow = "1.0"
id-arena = "2.2.1"
leb128 = "0.2.4"
log = "0.4.8"
rayon = { version = "1.1.0", optional = true }
walrus-macro = { path = './crates/macro', version = '=0.22.0' }
wasm-encoder = "0.214.0"
wasmparser = "0.214.0"
gimli = "0.26.0"
[features]
parallel = ['rayon', 'id-arena/rayon']
[dev-dependencies]
env_logger = "0.11.0"
criterion = "0.5.0"
[workspace]
members = [
"./crates/fuzz-utils",
"./crates/macro",
"./crates/tests",
"./crates/tests-utils",
]