wasmer/lib/runtime/Cargo.toml

64 lines
1.7 KiB
TOML
Raw Normal View History

2019-01-08 12:09:47 -05:00
[package]
name = "wasmer-runtime"
2020-01-16 14:07:18 -08:00
version = "0.13.1"
2019-01-23 16:33:44 -08:00
description = "Wasmer runtime library"
2020-01-15 11:01:48 +01:00
documentation = "https://wasmerio.github.io/wasmer/c/runtime-c-api/"
2019-01-23 16:33:44 -08:00
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]
2020-01-16 14:07:18 -08:00
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.13.1", optional = true }
lazy_static = "1.4"
memmap = "0.7"
2019-02-19 15:36:22 -08:00
[dependencies.wasmer-runtime-core]
path = "../runtime-core"
2020-01-16 14:07:18 -08:00
version = "0.13.1"
2019-02-19 15:36:22 -08:00
[dependencies.wasmer-clif-backend]
path = "../clif-backend"
2020-01-16 14:07:18 -08:00
version = "0.13.1"
optional = true
2019-02-19 15:36:22 -08:00
2019-12-20 20:11:56 -08:00
# Dependencies for caching.
[dependencies.serde]
version = "1.0"
# This feature is required for serde to support serializing/deserializing reference counted pointers (e.g. Rc and Arc).
features = ["rc"]
[dependencies.serde_derive]
version = "1.0"
[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"]
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