* Switch lightbeam from `wabt` to `wast` Switch from a C++-based `*.wat` parser to a Rust-based parser * Remove unneeded `wabt` dev-dependency from wasmtime-api * Rewrite `wasmtime-wast` crate with `wast-parser` This commit moves the `wasmtime-wast` crate off the `wabt` crate on to the `wast-parser` crate which is a Rust implementation of a `*.wast` and `*.wat` parser. The intention here is to continue to reduce the amount of C++ required to build wasmtime! * Use new `wat` and `wast` crate names
30 lines
947 B
TOML
30 lines
947 B
TOML
[package]
|
|
name = "wasmtime-wast"
|
|
version = "0.2.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "wast testing support for wasmtime"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/CraneStation/wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
cranelift-codegen = { version = "0.46.1", features = ["enable-serde"] }
|
|
cranelift-entity = { version = "0.46.1", features = ["enable-serde"] }
|
|
cranelift-wasm = { version = "0.46.1", features = ["enable-serde"] }
|
|
wasmtime-jit = { path = "../wasmtime-jit" }
|
|
wasmtime-runtime = { path = "../wasmtime-runtime" }
|
|
wasmtime-environ = { path = "../wasmtime-environ" }
|
|
wast = "2.0.0"
|
|
target-lexicon = "0.8.1"
|
|
failure = { version = "0.1.3", default-features = false }
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
travis-ci = { repository = "CraneStation/wasmtime" }
|
|
|
|
[features]
|
|
lightbeam = []
|