[package] name = "bimr-wasm" version = "0.0.1" edition = "2024" [lib] crate-type = ["cdylib", "rlib"] [dependencies] eval = { git = "https://gitaec.org/rvba/bimr-engine.git" } parser = { git = "https://gitaec.org/rvba/bimr-engine.git" } # Pinned to the factory's wasm-bindgen CLI (Makefile WASM_BINDGEN_VERSION). wasm-bindgen = "=0.2.114" # Local checkouts override the forge pins (same pattern as bimr-engine's # kernel patch) so the factory builds against sibling repos. [patch."https://gitaec.org/rvba/bimr-engine.git"] eval = { path = "../bimr-engine/eval" } parser = { path = "../bimr-engine/parser" } [patch."https://gitaec.org/rvba/bimr-kernel.git"] bimr-kernel = { path = "../bimr-kernel" }