2019-01-08 17:09:47 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime"
|
2019-01-25 18:34:43 +00:00
|
|
|
version = "0.1.4"
|
2019-01-24 00:33:44 +00:00
|
|
|
description = "Wasmer runtime library"
|
|
|
|
license = "MIT"
|
2019-01-18 00:19:31 +00:00
|
|
|
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-07 00:26:45 +00:00
|
|
|
lazy_static = "1.2.0"
|
2019-02-22 01:06:49 +00:00
|
|
|
memmap = "0.7.0"
|
2019-01-10 19:38:57 +00:00
|
|
|
|
2019-02-19 23:36:22 +00:00
|
|
|
[dependencies.wasmer-runtime-core]
|
|
|
|
path = "../runtime-core"
|
|
|
|
version = "0.1.2"
|
|
|
|
|
|
|
|
[dependencies.wasmer-clif-backend]
|
|
|
|
path = "../clif-backend"
|
|
|
|
version = "0.1.2"
|
|
|
|
|
2019-02-22 20:07:07 +00:00
|
|
|
[dev-dependencies]
|
2019-02-22 21:02:28 +00:00
|
|
|
tempfile = "3.0.7"
|
2019-02-22 20:07:07 +00:00
|
|
|
criterion = "0.2"
|
|
|
|
|
2019-01-10 19:38:57 +00:00
|
|
|
[features]
|
2019-02-07 00:26:45 +00:00
|
|
|
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
|
2019-02-22 20:07:07 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "nginx"
|
|
|
|
harness = false
|