This begins reorganizing how translation and compilation occur, and setting up infrastructure for imports/exports and relocations. It splits parts out of StandaloneRuntime, forming Module, Compilation, and Instance structs, which can be used more independently. It also simplifies the command-line interface, in a step towards making simple tools that just expose the functionality of the libraries.
14 lines
454 B
TOML
14 lines
454 B
TOML
[package]
|
|
name = "wasmstandalone_runtime"
|
|
version = "0.0.0"
|
|
authors = ["The Cretonne Project Developers"]
|
|
publish = false
|
|
description = "Standalone runtime support for WebAsssembly code in Cretonne"
|
|
repository = "https://github.com/sunfishcode/wasmstandalone"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
cretonne = { git = "https://github.com/stoklund/cretonne.git" }
|
|
cretonne-wasm = { git = "https://github.com/stoklund/cretonne.git" }
|
|
wasmparser = "0.13.0"
|