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