pulley-interpreter 28.0.0

The Pulley interpreter, its bytecode definition, encoder, decoder, and etc...
Documentation
[package]
authors = ["The Pulley Project Developers"]
description = "The Pulley interpreter, its bytecode definition, encoder, decoder, and etc..."
edition.workspace = true
rust-version.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
name = "pulley-interpreter"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wasmtime/tree/main/pulley"
version.workspace = true

[lints]
workspace = true

[dependencies]
arbitrary = { workspace = true, optional = true }
cranelift-bitset = { workspace = true }
log = { workspace = true }
sptr = { workspace = true }

[dev-dependencies]
env_logger = { workspace = true }
object = { workspace = true, features = ['std'] }
anyhow = { workspace = true, features = ['std'] }

[features]
std = []
arbitrary = ["dep:arbitrary", "arbitrary/derive", "std", "cranelift-bitset/arbitrary"]
encode = []
decode = []
disas = ["decode"]
interp = ["decode", "encode"]

[package.metadata.docs.rs]
all-features = true

[[example]]
name = "objdump"
required-features = ["disas"]