[package]
edition = "2021"
name = "wapc"
version = "2.2.0"
authors = [
"Kevin Hoffman <alothien@gmail.com>",
"Jarrod Overson <jsoverson@gmail.com>",
"Phil Kedy <phil.kedy@gmail.com>",
"Flavio Castelli <flavio@castelli.me>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An engine-pluggable WebAssembly Host Runtime implementing the waPC protocol."
homepage = "https://wapc.io"
documentation = "https://docs.rs/wapc"
readme = "README.md"
keywords = [
"sdk",
"wapc",
"webassembly",
"wasm",
"wasi",
]
categories = [
"wasm",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/wapc/wapc-rs"
[package.metadata.docs.rs]
all-features = true
[package.metadata.workspaces]
independent = true
[features]
async = [
"async-trait",
"tokio",
]
default = ["async"]
[lib]
name = "wapc"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.parking_lot]
version = "0.12"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = ["sync"]
optional = true
default-features = false
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]