[package]
edition = "2024"
rust-version = "1.85"
name = "wamrx-sys"
version = "0.2.0"
authors = ["Robin Freyler <robinfreyler@web.de>"]
build = "build.rs"
links = "iwasm"
include = [
"wasm-micro-runtime/core/**/*",
"wasm-micro-runtime/LICENSE",
"wasm-micro-runtime/CMakeLists.txt",
"wasm-micro-runtime/build-scripts/**",
"src/**/*",
"build.rs",
"Cargo.toml",
"wrapper.h",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Raw FFI bindings to the WebAssembly Micro Runtime (WAMR) fast interpreter."
documentation = "https://docs.rs/wamrx-sys/"
readme = "README.md"
keywords = [
"wasm",
"webassembly",
"wasm3",
"interpreter",
"ffi",
]
categories = ["external-ffi-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wasmi-labs/wamrx"
[features]
bulk-memory = []
custom-name-section = []
default = [
"bulk-memory",
"reference-types",
]
dump-call-stack = []
extended-const = []
gc = []
hw-bound-check = []
libc-builtin = []
libc-wasi = []
load-custom-section = []
multi-module = []
perf-profiling = []
reference-types = []
shared-memory = []
simd = []
tail-call = []
thread-mgr = []
[lib]
name = "wamrx_sys"
path = "src/lib.rs"
doctest = false
[build-dependencies.bindgen]
version = "0.72"
[build-dependencies.cmake]
version = "0.1"