You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
752 B
31 lines
752 B
[package]
|
|
authors = ["The Pulley Project Developers"]
|
|
description = "The Pulley interpreter, its bytecode definition, encoder, decoder, and etc..."
|
|
edition.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 = "0.1.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true, optional = true }
|
|
log = { workspace = true }
|
|
sptr = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true }
|
|
|
|
[features]
|
|
std = []
|
|
arbitrary = ["dep:arbitrary", "arbitrary/derive", "std"]
|
|
encode = []
|
|
decode = []
|
|
disas = ["decode"]
|
|
interp = ["decode"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|