wasmer/lib/runtime/Cargo.toml

54 lines
1.3 KiB
TOML
Raw Normal View History

2019-01-08 17:09:47 +00:00
[package]
name = "wasmer-runtime"
2019-11-12 00:21:46 +00:00
version = "0.10.1"
2019-01-24 00:33:44 +00:00
description = "Wasmer runtime library"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
2019-01-24 00:33:44 +00:00
repository = "https://github.com/wasmerio/wasmer"
keywords = ["wasm", "webassembly", "runtime", "sandbox", "secure"]
categories = ["wasm", "api-bindings"]
2019-01-08 17:09:47 +00:00
edition = "2018"
2019-01-24 21:53:45 +00:00
readme = "README.md"
2019-01-08 17:09:47 +00:00
[dependencies]
2019-11-12 00:21:46 +00:00
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.10.1", optional = true }
lazy_static = "1.4"
memmap = "0.7"
2019-02-19 23:36:22 +00:00
[dependencies.wasmer-runtime-core]
path = "../runtime-core"
2019-11-12 00:21:46 +00:00
version = "0.10.1"
2019-02-19 23:36:22 +00:00
[dependencies.wasmer-clif-backend]
path = "../clif-backend"
2019-11-12 00:21:46 +00:00
version = "0.10.1"
optional = true
2019-02-19 23:36:22 +00:00
[dev-dependencies]
tempfile = "3.1"
criterion = "0.2"
wabt = "0.9.1"
2019-02-19 23:36:22 +00:00
[dependencies.wasmer-llvm-backend]
path = "../llvm-backend"
2019-03-11 16:57:06 +00:00
optional = true
[features]
default = ["cranelift", "default-backend-cranelift"]
cranelift = ["wasmer-clif-backend"]
cache = ["cranelift"]
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
2019-03-11 16:57:06 +00:00
llvm = ["wasmer-llvm-backend"]
2019-04-11 19:44:03 +00:00
singlepass = ["wasmer-singlepass-backend"]
default-backend-singlepass = ["singlepass"]
default-backend-llvm = ["llvm"]
default-backend-cranelift = ["cranelift"]
[[bench]]
name = "nginx"
harness = false
2019-07-01 18:17:31 +00:00
[[bench]]
name = "many_instances"
harness = false