mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-14 22:55:40 +00:00
a9b1c6c85e
Dynamically determine abortOnCannotGrowMemory and add _emscripten_get_heap_size and _emscripten_resize_heap
24 lines
628 B
TOML
24 lines
628 B
TOML
[package]
|
|
name = "wasmer-emscripten"
|
|
version = "0.1.0"
|
|
description = "Wasmer runtime emscripten implementation library"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
edition = "2018"
|
|
build = "build/mod.rs"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.1.0" }
|
|
lazy_static = "1.2.0"
|
|
libc = { git = "https://github.com/rust-lang/libc" }
|
|
byteorder = "1"
|
|
time = "0.1.41"
|
|
|
|
[dev-dependencies]
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.0" }
|
|
wabt = "0.7.2"
|
|
|
|
[build-dependencies]
|
|
glob = "0.2.11"
|