forked from wasmi-labs/wasmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 1008 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
[workspace]
members = [
"crates/arena",
"crates/cli",
"crates/core",
"crates/wasmi",
"crates/wasi",
"fuzz",
]
exclude = []
resolver = "2"
[workspace.package]
authors = ["Robin Freyler <[email protected]>"]
repository = "https://github.com/wasmi-labs/wasmi"
version = "0.32.0-beta.8"
rust-version = "1.77"
edition = "2021"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["wasm", "webassembly", "interpreter", "vm"]
categories = ["wasm", "no-std", "virtualization"]
exclude = ["tests"]
[workspace.dependencies]
wasmi = { version = "0.32.0-beta.8", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.32.0-beta.8", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.17.0", path = "crates/core", default-features = false }
wasmi_arena = { version = "0.5.0", path = "crates/arena", default-features = false }
num-traits = { version = "0.2.8", default-features = false }
[profile.bench]
lto = "fat"
codegen-units = 1