- 18KB WASM binary with wasm-bindgen exports - Header encode/decode, RLE compression, XOR delta - Message builders for signal diff/sync and input events - 7 native tests, all passing - Total workspace: 89 tests, 0 failures
28 lines
734 B
TOML
28 lines
734 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"compiler/ds-parser",
|
|
"compiler/ds-analyzer",
|
|
"compiler/ds-codegen",
|
|
"compiler/ds-layout",
|
|
"compiler/ds-types",
|
|
"compiler/ds-cli",
|
|
"engine/ds-physics",
|
|
"engine/ds-stream",
|
|
"engine/ds-stream-wasm",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
|
|
[workspace.dependencies]
|
|
ds-parser = { path = "compiler/ds-parser" }
|
|
ds-analyzer = { path = "compiler/ds-analyzer" }
|
|
ds-codegen = { path = "compiler/ds-codegen" }
|
|
ds-layout = { path = "compiler/ds-layout" }
|
|
ds-types = { path = "compiler/ds-types" }
|
|
ds-physics = { path = "engine/ds-physics" }
|
|
ds-stream = { path = "engine/ds-stream" }
|
|
ds-stream-wasm = { path = "engine/ds-stream-wasm" }
|