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