35 lines
889 B
TOML
35 lines
889 B
TOML
[package]
|
|
name = "wasmtime-execute"
|
|
version = "0.0.0"
|
|
authors = ["The Cranelift Project Developers"]
|
|
publish = false
|
|
description = "JIT-style execution for WebAsssembly code in Cranelift"
|
|
categories = ["wasm"]
|
|
repository = "https://github.com/CraneStation/wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
cranelift-codegen = "0.25.0"
|
|
cranelift-entity = "0.25.0"
|
|
cranelift-wasm = "0.25.0"
|
|
wasmtime-environ = { path = "../environ" }
|
|
region = "1.0.0"
|
|
memmap = "0.7.0"
|
|
lazy_static = "1.2.0"
|
|
libc = "0.2.44"
|
|
|
|
[build-dependencies]
|
|
cmake = "0.1.35"
|
|
bindgen = "0.44.0"
|
|
regex = "1.0.6"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["cranelift-codegen/std", "cranelift-wasm/std"]
|
|
core = ["cranelift-codegen/core", "cranelift-wasm/core", "wasmtime-environ/core"]
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
travis-ci = { repository = "CraneStation/wasmtime" }
|