2019-04-27 08:31:47 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-middleware-common"
|
2019-05-16 21:39:13 +00:00
|
|
|
version = "0.4.2"
|
2019-04-27 08:31:47 +00:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
|
|
description = "Wasmer runtime common middlewares"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-05-16 17:10:45 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core" }
|
2019-06-02 16:37:02 +00:00
|
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.4.2" }
|
|
|
|
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.4.2", optional = true }
|
|
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.4.2", optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wabt = "0.7.4"
|
2019-06-06 05:37:04 +00:00
|
|
|
criterion = "0.2"
|
2019-06-02 16:37:02 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
clif = []
|
|
|
|
llvm = ["wasmer-llvm-backend"]
|
2019-06-06 05:37:04 +00:00
|
|
|
singlepass = ["wasmer-singlepass-backend"]
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "metering_benchmark"
|
|
|
|
harness = false
|