@onda-lang/wasm-compiler 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -232,3 +232,9 @@ version. Run `scripts/sync-versions.sh` or `scripts/sync-versions.ps1` after cha
232
232
  The underlying `scripts/sync-package-versions.mjs` updates the workspace-owned `Cargo.lock` entries,
233
233
  discovers every `@onda-lang/*` package, and synchronizes its manifest and lockfile. Compiler builds
234
234
  and release jobs run it automatically; `ONDA_VERSION` is generated into the packaged distribution.
235
+
236
+ ## Building from a source checkout
237
+
238
+ In addition to Rust, Node.js, and `wasm-pack`, source builds require `cargo-about` 0.9.2 with its
239
+ `cli` feature. The build packages complete Rust dependency license text generated from the locked
240
+ cross-platform workspace graph.
@@ -3,9 +3,11 @@
3
3
  The packaged compiler includes the following third-party components:
4
4
 
5
5
  - Binaryen.js 130.0.0, licensed under Apache-2.0. The complete license is shipped as
6
- `dist/licenses/BINARYEN-LICENSE`.
6
+ `dist/licenses/BINARYEN-LICENSE.txt`.
7
7
  - The Onda WebAssembly math kernel uses `libm` 0.2.16, licensed under MIT. The complete license is
8
- shipped as `dist/licenses/LIBM-LICENSE`.
8
+ shipped as `dist/licenses/LIBM-LICENSE.txt`.
9
+ - The compiler frontend statically includes Rust crates. Their attributions and complete license
10
+ texts are shipped as `dist/licenses/RUST-DEPENDENCIES.txt`.
9
11
 
10
12
  The generated processor artifacts contain only the required closure of the math kernel. They do
11
13
  not contain Binaryen itself.