lucet-runtime-tests 0.6.0

Pure Rust runtime for Lucet WebAssembly toolchain (tests)
Documentation
[package]
name = "lucet-runtime-tests"
version = "0.6.0"
description = "Pure Rust runtime for Lucet WebAssembly toolchain (tests)"
homepage = "https://github.com/fastly/lucet"
repository = "https://github.com/fastly/lucet"
license = "Apache-2.0 WITH LLVM-exception"
categories = ["wasm"]
authors = ["Lucet team <lucet@fastly.com>"]
edition = "2018"

[lib]
# This crate only defines tests in macros, it does not contain any tests itself. This flag prevents
# `cargo test -p lucet-runtime-tests` from trying to link an executable with undefined symbols.
test = false

[dependencies]
anyhow = "1"
lazy_static = "1.1"
tempfile = "3.0"
lucet-module = { path = "../../lucet-module", version = "=0.6.0" }
lucet-runtime-internals = { path = "../lucet-runtime-internals", version = "=0.6.0" }
lucet-wasi-sdk = { path = "../../lucet-wasi-sdk", version = "=0.6.0" }
lucetc = { path = "../../lucetc", version = "=0.6.0" }

[build-dependencies]
cc = "1.0"