Deny workspace warnings and lint suppressions, consolidate Rust and Python coverage under cargo xtask test with 60-second per-test limits, and remove stale flaky, stateful, Docker, and orphaned test artifacts.
16 lines
342 B
TOML
16 lines
342 B
TOML
[package]
|
|
name = "wasm-runtime"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
swactor = { path = "../../..", default-features = false, features = ["wasm", "std"] }
|
|
swactor-engine = { path = "../../engine", default-features = false }
|
|
wasm-bindgen = "0.2"
|
|
|
|
[lints]
|
|
workspace = true
|