[package] name = "pezsp-wasm-interface" version = "20.0.0" authors.workspace = true edition.workspace = true license = "Apache-2.0" homepage.workspace = true repository.workspace = true description = "Types and traits for interfacing between the host and the wasm runtime." documentation.workspace = true readme = "README.md" [lints] workspace = true [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] anyhow = { optional = true, workspace = true } codec = { features = ["derive"], workspace = true } impl-trait-for-tuples = { workspace = true } log = { optional = true, workspace = true, default-features = true } wasmtime = { optional = true, workspace = true } [features] default = ["std"] std = ["anyhow?/std", "codec/std", "log/std", "wasmtime?/std"] wasmtime = ["anyhow", "dep:wasmtime"]