Files
pezkuwi-sdk/bizinikiwi/primitives/wasm-interface/Cargo.toml
T
pezkuwichain bfc2cc5284 chore: update documentation URLs to use workspace setting
Replace all docs.rs documentation URLs with documentation.workspace = true
to inherit from the workspace's docs.pezkuwichain.io URL.
2025-12-27 17:56:39 +03:00

30 lines
828 B
TOML

[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"]