wasmer/lib/runtime/Cargo.toml

56 lines
1.4 KiB
TOML
Raw Normal View History

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