mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
42 lines
1008 B
TOML
42 lines
1008 B
TOML
[package]
|
|
name = "wasmer"
|
|
version = "0.1.4"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
publish = true
|
|
description = "High-Performance WebAssembly JIT interpreter"
|
|
license = "MIT"
|
|
include = [
|
|
"examples/**/*",
|
|
"src/**/*",
|
|
"Cargo.lock",
|
|
"Cargo.toml",
|
|
"LICENSE",
|
|
"Makefile",
|
|
"/README.md",
|
|
"rustfmt.toml"
|
|
]
|
|
|
|
[dependencies]
|
|
structopt = "0.2.11"
|
|
wabt = "0.7.2"
|
|
wasmer-clif-backend = { path = "lib/clif-backend" }
|
|
wasmer-runtime = { path = "lib/runtime" }
|
|
wasmer-runtime-core = { path = "lib/runtime-core" }
|
|
wasmer-emscripten = { path = "lib/emscripten" }
|
|
|
|
[workspace]
|
|
members = ["lib/clif-backend", "lib/runtime", "lib/runtime-core", "lib/emscripten", "lib/spectests", "lib/win-exception-handler", "lib/runtime-c-api"]
|
|
|
|
[build-dependencies]
|
|
wabt = "0.7.2"
|
|
glob = "0.2.11"
|
|
|
|
[features]
|
|
default = ["fast-tests"]
|
|
|
|
debug = []
|
|
# This feature will allow cargo test to run much faster
|
|
fast-tests = []
|