mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
29 lines
730 B
TOML
29 lines
730 B
TOML
[package]
|
|
name = "wasmer-singlepass-backend"
|
|
version = "0.11.0"
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
description = "Wasmer runtime single pass compiler backend"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
keywords = ["wasm", "webassembly", "compiler", "JIT", "AOT"]
|
|
categories = ["wasm"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.11.0" }
|
|
dynasm = "0.5"
|
|
dynasmrt = "0.5"
|
|
lazy_static = "1.4"
|
|
byteorder = "1.3"
|
|
nix = "0.15"
|
|
libc = "0.2.60"
|
|
smallvec = "0.6"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
bincode = "1.2"
|
|
|
|
[features]
|
|
default = []
|
|
deterministic-execution = ["wasmer-runtime-core/deterministic-execution"]
|