2019-01-08 17:09:47 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime"
|
2019-11-22 19:18:06 +00:00
|
|
|
version = "0.11.0"
|
2019-01-24 00:33:44 +00:00
|
|
|
description = "Wasmer runtime library"
|
|
|
|
license = "MIT"
|
2019-01-18 00:19:31 +00:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2019-01-24 00:33:44 +00:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2019-11-13 23:09:18 +00:00
|
|
|
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-22 19:18:06 +00:00
|
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.11.0", optional = true }
|
2019-09-20 23:08:45 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
memmap = "0.7"
|
2019-01-10 19:38:57 +00:00
|
|
|
|
2019-02-19 23:36:22 +00:00
|
|
|
[dependencies.wasmer-runtime-core]
|
|
|
|
path = "../runtime-core"
|
2019-11-22 19:18:06 +00:00
|
|
|
version = "0.11.0"
|
2019-02-19 23:36:22 +00:00
|
|
|
|
|
|
|
[dependencies.wasmer-clif-backend]
|
|
|
|
path = "../clif-backend"
|
2019-11-22 19:18:06 +00:00
|
|
|
version = "0.11.0"
|
2019-03-13 01:58:22 +00:00
|
|
|
optional = true
|
2019-02-19 23:36:22 +00:00
|
|
|
|
2019-02-22 20:07:07 +00:00
|
|
|
[dev-dependencies]
|
2019-09-20 23:08:45 +00:00
|
|
|
tempfile = "3.1"
|
2019-02-22 20:07:07 +00:00
|
|
|
criterion = "0.2"
|
2019-08-12 21:35:32 +00:00
|
|
|
wabt = "0.9.1"
|
2019-02-19 23:36:22 +00:00
|
|
|
|
2019-07-30 21:47:53 +00:00
|
|
|
[dependencies.wasmer-llvm-backend]
|
2019-02-28 21:18:00 +00:00
|
|
|
path = "../llvm-backend"
|
2019-03-11 16:57:06 +00:00
|
|
|
optional = true
|
2019-01-10 19:38:57 +00:00
|
|
|
|
|
|
|
[features]
|
2019-07-25 00:31:59 +00:00
|
|
|
default = ["cranelift", "default-backend-cranelift"]
|
2019-11-22 02:35:19 +00:00
|
|
|
docs = []
|
2019-07-25 00:31:59 +00:00
|
|
|
cranelift = ["wasmer-clif-backend"]
|
|
|
|
cache = ["cranelift"]
|
2019-02-07 00:26:45 +00:00
|
|
|
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"]
|
2019-07-25 00:31:59 +00:00
|
|
|
default-backend-singlepass = ["singlepass"]
|
|
|
|
default-backend-llvm = ["llvm"]
|
|
|
|
default-backend-cranelift = ["cranelift"]
|
2019-10-07 20:07:20 +00:00
|
|
|
deterministic-execution = ["wasmer-singlepass-backend/deterministic-execution", "wasmer-runtime-core/deterministic-execution"]
|
2019-02-28 21:18:00 +00:00
|
|
|
|
2019-02-22 20:07:07 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "nginx"
|
2019-03-04 21:03:32 +00:00
|
|
|
harness = false
|
2019-07-01 18:17:31 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "many_instances"
|
|
|
|
harness = false
|