mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
37 lines
798 B
TOML
37 lines
798 B
TOML
[package]
|
|
name = "wasmer-runtime-core"
|
|
version = "0.1.2"
|
|
description = "Wasmer runtime core library"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
edition = "2018"
|
|
build = "build/mod.rs"
|
|
|
|
[dependencies]
|
|
hashbrown = "0.1"
|
|
nix = "0.12.0"
|
|
page_size = "0.4.1"
|
|
wasmparser = "0.23.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["memoryapi"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
errno = "0.2.4"
|
|
|
|
[build-dependencies]
|
|
wabt = "0.7.2"
|
|
|
|
[dev-dependencies]
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.2" }
|
|
wabt = "0.7.2"
|
|
field-offset = "0.1.1"
|
|
|
|
[features]
|
|
default = ["fast-tests"]
|
|
|
|
debug = []
|
|
# This feature will allow cargo test to compile much faster
|
|
fast-tests = []
|