forked from bytecodealliance/wizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (53 loc) · 1.38 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
[package]
authors = ["Nick Fitzgerald <[email protected]>"]
categories = ["command-line-utilities", "development-tools", "wasm"]
description = "The WebAssembly Pre-Initializer"
documentation = "https://docs.rs/wizer"
edition = "2018"
homepage = "https://github.com/bytecodealliance/wizer"
license = "Apache-2.0 WITH LLVM-exception"
name = "wizer"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wizer"
version = "1.4.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "wizer"
required-features = ["env_logger", "structopt"]
[[bench]]
name = "regex"
harness = false
[[bench]]
name = "uap"
harness = false
[dependencies]
anyhow = "1.0.38"
cap-std = "0.24.2"
env_logger = { version = "0.8.2", optional = true }
log = "0.4.14"
rayon = "1.5.0"
structopt = { version = "0.3.21", optional = true }
wasi-cap-std-sync = "0.34.1"
wasm-encoder = "0.6.0"
wasmparser = "0.78.2"
wasmtime = "0.34.1"
wasmtime-wasi = "0.34.1"
# Enable this dependency to get messages with WAT disassemblies when certain
# internal panics occur.
[dependencies.wasmprinter]
version = "0.2.26"
optional = true
[dev-dependencies]
criterion = "0.3.4"
env_logger = "0.8.2"
wasmprinter = "0.2.26"
wat = "1.0.36"
[workspace]
members = [
"benches/regex-bench",
"benches/uap-bench",
"fuzz",
"tests/regex-test",
]
[profile.bench]
debug = true