[package] name = "reikhelm-wasm" version = "0.1.0" edition = "2021" # `cdylib` is what wasm-pack/wasm-bindgen need to emit a `.wasm` module; # `rlib` lets host tooling (cargo check/clippy) link the crate too. [lib] crate-type = ["cdylib", "rlib"] [dependencies] reikhelm-core = { path = "../reikhelm-core" } wasm-bindgen = "0.2" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.150"