wasmer/lib/runtime/Cargo.toml

42 lines
971 B
TOML
Raw Normal View History

2019-01-08 17:09:47 +00:00
[package]
name = "wasmer-runtime"
2019-02-28 01:20:49 +00:00
version = "0.2.1"
2019-01-24 00:33:44 +00:00
description = "Wasmer runtime library"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
2019-01-24 00:33:44 +00:00
repository = "https://github.com/wasmerio/wasmer"
2019-01-08 17:09:47 +00:00
edition = "2018"
2019-01-24 21:53:45 +00:00
readme = "README.md"
2019-01-08 17:09:47 +00:00
[dependencies]
2019-02-13 16:53:36 +00:00
wasmer-dynasm-backend = { path = "../dynasm-backend", optional = true }
lazy_static = "1.2.0"
memmap = "0.7.0"
2019-02-19 23:36:22 +00:00
[dependencies.wasmer-runtime-core]
path = "../runtime-core"
2019-02-28 01:20:49 +00:00
version = "0.2.1"
2019-02-19 23:36:22 +00:00
[dependencies.wasmer-clif-backend]
path = "../clif-backend"
2019-02-25 21:28:37 +00:00
version = "0.2.0"
optional = true
2019-02-19 23:36:22 +00:00
[dev-dependencies]
tempfile = "3.0.7"
criterion = "0.2"
wabt = "0.7.4"
2019-02-19 23:36:22 +00:00
2019-03-08 02:26:29 +00:00
[target.'cfg(not(windows))'.dependencies.wasmer-llvm-backend]
path = "../llvm-backend"
[features]
2019-02-13 16:53:36 +00:00
default = ["default-compiler"]
default-compiler = ["wasmer-clif-backend", "wasmer-dynasm-backend"]
cache = ["default-compiler"]
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
[[bench]]
name = "nginx"
harness = false