28 lines
882 B
TOML
Raw Normal View History

[package]
name = "wasmer-middleware-common"
2019-07-16 13:12:21 -07:00
version = "0.5.6"
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-17 01:10:45 +08:00
wasmer-runtime-core = { path = "../runtime-core" }
2019-07-16 13:12:21 -07:00
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.6" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.6", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.6", optional = true }
[dev-dependencies]
2019-07-19 15:41:42 -07:00
wabt = { git = "https://github.com/wasmerio/wabt-rs.git", rev = "17188863021f0ed7721a1969da510efbc17615f2" }
2019-06-06 00:37:04 -05:00
criterion = "0.2"
[features]
clif = []
llvm = ["wasmer-llvm-backend"]
2019-06-06 00:37:04 -05:00
singlepass = ["wasmer-singlepass-backend"]
[[bench]]
name = "metering_benchmark"
harness = false