mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
8fe9b7eac2
* Allow a module to have a different signature registry than the process-specific * Add core ability to build compiled code caches * Remove timing printouts * Serialize/Deserialize memories to reduce copies * Work more on api * Relocate local functions relatively before external functions * Fix incorrect definition in test * merge errors caused by merge * Fix emscripten compile * Fix review comments
23 lines
586 B
TOML
23 lines
586 B
TOML
[package]
|
|
name = "wasmer-spectests"
|
|
version = "0.1.2"
|
|
description = "Wasmer spectests library"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
edition = "2018"
|
|
build = "build/mod.rs"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core" }
|
|
|
|
[build-dependencies]
|
|
wabt = "0.7.2"
|
|
|
|
[dev-dependencies]
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.2" }
|
|
wabt = "0.7.2"
|
|
|
|
[features]
|
|
default = ["fast-tests", "wasmer-runtime-core/cache", "wasmer-clif-backend/cache"]
|
|
fast-tests = [] |