[package] name = "combat-wasm" version = "0.1.0" edition = "2021" rust-version = "1.96" description = "wasm-bindgen bridge: drive combat-core from a browser front-end." # `cdylib` is what wasm-pack/wasm-bindgen emit; `rlib` lets host tooling # (cargo check/clippy) link the crate too. [lib] crate-type = ["cdylib", "rlib"] [dependencies] combat-core = { path = "../combat-core" } wasm-bindgen = "0.2" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.150"