wasmer/lib/middleware-common/Cargo.toml

28 lines
788 B
TOML
Raw Normal View History

[package]
name = "wasmer-middleware-common"
2019-07-05 20:35:55 +00:00
version = "0.5.4"
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-07-05 20:35:55 +00:00
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.4" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.4", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.4", optional = true }
[dev-dependencies]
wabt = "0.7.4"
2019-06-06 05:37:04 +00:00
criterion = "0.2"
[features]
clif = []
llvm = ["wasmer-llvm-backend"]
2019-06-06 05:37:04 +00:00
singlepass = ["wasmer-singlepass-backend"]
[[bench]]
name = "metering_benchmark"
harness = false