Introduce proper error handling in several places, and perform a first pass at refactoring Instance to make it easier to use.
27 lines
997 B
TOML
27 lines
997 B
TOML
[package]
|
|
name = "wasmtime-wast"
|
|
version = "0.0.0"
|
|
authors = ["The Cranelift Project Developers"]
|
|
publish = false
|
|
description = "wast testing support for wasmtime"
|
|
categories = ["wasm"]
|
|
repository = "https://github.com/CraneStation/wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
cranelift-codegen = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" }
|
|
cranelift-native = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" }
|
|
cranelift-wasm = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" }
|
|
cranelift-entity = { git = "https://github.com/sunfishcode/cranelift.git", branch = "guard-offset" }
|
|
wasmtime-execute = { path = "../execute" }
|
|
wasmtime-environ = { path = "../environ" }
|
|
wabt = "0.7"
|
|
target-lexicon = "0.2.0"
|
|
failure = "0.1.3"
|
|
failure_derive = "0.1.3"
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
travis-ci = { repository = "CraneStation/wasmtime" }
|