mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
28 lines
882 B
TOML
28 lines
882 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 = { git = "https://github.com/wasmerio/wabt-rs.git", rev = "17188863021f0ed7721a1969da510efbc17615f2" }
|
|
criterion = "0.2"
|
|
|
|
[features]
|
|
clif = []
|
|
llvm = ["wasmer-llvm-backend"]
|
|
singlepass = ["wasmer-singlepass-backend"]
|
|
|
|
[[bench]]
|
|
name = "metering_benchmark"
|
|
harness = false
|