[package]
edition = "2021"
name = "packr"
version = "0.7.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A WebAssembly package runtime with extended WIT support for recursive types"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/colinrozzi/pack"
[lib]
name = "packr"
path = "src/lib.rs"
[[bin]]
name = "packr"
path = "src/main.rs"
[[bin]]
name = "pact"
path = "src/bin/pact.rs"
[[example]]
name = "encode_test"
path = "examples/encode_test.rs"
[[example]]
name = "test_alloc"
path = "examples/test_alloc.rs"
[[example]]
name = "transforms"
path = "examples/transforms/main.rs"
[[test]]
name = "abi_invalid"
path = "tests/abi_invalid.rs"
[[test]]
name = "abi_roundtrip"
path = "tests/abi_roundtrip.rs"
[[test]]
name = "composition"
path = "tests/composition.rs"
[[test]]
name = "handler_actor_hash_convergence"
path = "tests/handler_actor_hash_convergence.rs"
[[test]]
name = "host_functions"
path = "tests/host_functions.rs"
[[test]]
name = "interceptor_backpressure"
path = "tests/interceptor_backpressure.rs"
[[test]]
name = "interface_enforcement"
path = "tests/interface_enforcement.rs"
[[test]]
name = "schema_validation"
path = "tests/schema_validation.rs"
[[test]]
name = "type_metadata"
path = "tests/type_metadata.rs"
[[test]]
name = "wasm_execution"
path = "tests/wasm_execution.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.packr-abi]
version = "0.7.1"
features = [
"std",
"serde",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["rt-multi-thread"]
[dependencies.wasm-encoder]
version = "0.219"
[dependencies.wasmparser]
version = "0.219"
[dependencies.wasmtime]
version = "27"
[dev-dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dev-dependencies.wat]
version = "1.0"