Files
wasmtime/Cargo.toml
Sergey Pepyakin 08240761d5 Compile a simple function (#2)
* Implement basics.

* Execute code

* Add wasm2wat test cases.

* abi_loc_for_arg for stack.

* Assert that sp_depth is 0 at the epilogue

* Do 32bit add.

* Assert that RAX can be used as a scratch register

* Reuse assembler.

* Align stack slots.
2018-11-08 13:56:27 -08:00

22 lines
462 B
TOML

[package]
name = "lightbeam"
version = "0.0.0"
authors = ["The Lightbeam Project Developers"]
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
categories = ["wasm"]
keywords = ["webassembly", "wasm", "compile", "compiler", "jit"]
publish = false
[dependencies]
dynasm = "0.2.3"
dynasmrt = "0.2.3"
wasmparser = "0.21.6"
capstone = "0.5.0"
failure = "0.1.3"
failure_derive = "0.1.3"
wabt = "0.7"
[badges]
maintenance = { status = "experimental" }