[package]
edition = "2021"
rust-version = "1.90.0"
name = "wasm-link"
version = "0.2.0"
authors = ["Forder7935"]
build = false
include = [
"src/*",
"tests/*",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A WebAssembly plugin runtime based around Wasmtime intended for building fully modular applications"
documentation = "https://docs.rs/wasm-link"
readme = "README.md"
keywords = [
"wasm",
"webassembly",
"plugin",
"component-model",
"modular",
]
categories = ["wasm"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/forder7935/wasm-link"
[lib]
name = "wasm_link"
path = "src/lib.rs"
[[test]]
name = "complex_topology_tests"
path = "tests/complex_topology_tests.rs"
[[test]]
name = "dispatch_error_tests"
path = "tests/dispatch_error_tests.rs"
[[test]]
name = "dispatching_tests"
path = "tests/dispatching_tests.rs"
[[test]]
name = "resource_limit_tests"
path = "tests/resource_limit_tests.rs"
[[test]]
name = "resource_tests"
path = "tests/resource_tests.rs"
[dependencies.itertools]
version = "0.14.0"
[dependencies.nonempty-collections]
version = "1.3"
[dependencies.pipe-trait]
version = "0.4.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.wasmtime]
version = "41.0"
[dev-dependencies.once_cell]
version = "1.21.3"
[dev-dependencies.wit-parser]
version = "0.244.0"
[lints.clippy]
doc_lazy_continuation = "allow"
match_bool = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
tabs_in_doc_comments = "allow"
uninlined_format_args = "allow"
unnested_or_patterns = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1