pulley-interpreter 28.0.0

The Pulley interpreter, its bytecode definition, encoder, decoder, and etc...
Documentation
[dependencies.arbitrary]
optional = true
version = "1.3.1"

[dependencies.cranelift-bitset]
version = "0.115.0"

[dependencies.log]
default-features = false
version = "0.4.8"

[dependencies.sptr]
version = "0.3.2"

[dev-dependencies.anyhow]
default-features = false
features = ["std"]
version = "1.0.93"

[dev-dependencies.env_logger]
version = "0.11.5"

[dev-dependencies.object]
default-features = false
features = ["read_core", "elf", "std"]
version = "0.36.5"

[[example]]
name = "objdump"
path = "examples/objdump.rs"
required-features = ["disas"]

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

[lib]
name = "pulley_interpreter"
path = "src/lib.rs"

[lints.clippy]
allow_attributes_without_reason = "warn"
clone_on_copy = "warn"
manual_strip = "warn"
map_clone = "warn"
uninlined_format_args = "warn"
unnecessary_cast = "warn"
unnecessary_fallible_conversions = "warn"
unnecessary_mut_passed = "warn"
unnecessary_to_owned = "warn"

[lints.clippy.all]
level = "allow"
priority = -1

[lints.rust]
trivial_numeric_casts = "warn"
unstable_features = "warn"
unused-lifetimes = "warn"
unused-macro-rules = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(pulley_tail_calls)"]
level = "warn"
priority = 0

[package]
authors = ["The Pulley Project Developers"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "The Pulley interpreter, its bytecode definition, encoder, decoder, and etc..."
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
name = "pulley-interpreter"
readme = "README.md"
repository = "https://github.com/bytecodealliance/wasmtime/tree/main/pulley"
rust-version = "1.81.0"
version = "28.0.0"

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

[[test]]
name = "all"
path = "tests/all/main.rs"