2019-02-08 15:56:14 +00:00
|
|
|
[package]
|
2019-04-11 19:44:03 +00:00
|
|
|
name = "wasmer-singlepass-backend"
|
2019-11-22 19:18:06 +00:00
|
|
|
version = "0.11.0"
|
2019-02-08 15:56:14 +00:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2019-04-11 19:44:03 +00:00
|
|
|
description = "Wasmer runtime single pass compiler backend"
|
2019-02-08 15:56:14 +00:00
|
|
|
license = "MIT"
|
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2019-11-13 23:09:18 +00:00
|
|
|
keywords = ["wasm", "webassembly", "compiler", "JIT", "AOT"]
|
|
|
|
categories = ["wasm"]
|
2019-02-08 15:56:14 +00:00
|
|
|
edition = "2018"
|
2019-07-25 01:06:59 +00:00
|
|
|
readme = "README.md"
|
2019-02-08 15:56:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-11-22 19:18:06 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.11.0" }
|
2019-11-10 17:42:43 +00:00
|
|
|
dynasm = "0.5"
|
|
|
|
dynasmrt = "0.5"
|
2019-09-20 23:08:45 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
byteorder = "1.3"
|
|
|
|
nix = "0.15"
|
2019-08-01 06:03:52 +00:00
|
|
|
libc = "0.2.60"
|
2019-09-20 23:08:45 +00:00
|
|
|
smallvec = "0.6"
|
2019-11-27 18:49:52 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
bincode = "1.2"
|
2019-10-07 13:58:58 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2019-12-05 19:59:26 +00:00
|
|
|
deterministic-execution = ["wasmer-runtime-core/deterministic-execution"]
|