mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
28 lines
788 B
TOML
28 lines
788 B
TOML
[package]
|
|
name = "wasmer-middleware-common"
|
|
version = "0.5.7"
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
description = "Wasmer runtime common middlewares"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core" }
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.7" }
|
|
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.7", optional = true }
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.7", optional = true }
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.9.0"
|
|
criterion = "0.2"
|
|
|
|
[features]
|
|
clif = []
|
|
llvm = ["wasmer-llvm-backend"]
|
|
singlepass = ["wasmer-singlepass-backend"]
|
|
|
|
[[bench]]
|
|
name = "metering_benchmark"
|
|
harness = false
|