53 releases (11 breaking)

new 0.205.0 Apr 18, 2024
0.203.0 Apr 12, 2024
0.202.0 Mar 26, 2024
0.4.16 Nov 29, 2023
0.0.0 Jun 28, 2022

#1446 in WebAssembly

Download history 48/week @ 2023-12-23 76/week @ 2023-12-30 166/week @ 2024-01-06 152/week @ 2024-01-13 222/week @ 2024-01-20 256/week @ 2024-01-27 239/week @ 2024-02-03 442/week @ 2024-02-10 345/week @ 2024-02-17 452/week @ 2024-02-24 598/week @ 2024-03-02 677/week @ 2024-03-09 1035/week @ 2024-03-16 945/week @ 2024-03-23 1169/week @ 2024-03-30 576/week @ 2024-04-06

3,837 downloads per month
Used in 13 crates (4 directly)

Apache-2.0 WITH LLVM-exception

1.5MB
31K SLoC

wasm-compose

A Bytecode Alliance project

A WebAssembly component composing library.

Crates.io version Download docs.rs docs

Overview

wasm-compose is a library for composing WebAssembly components from other WebAssembly components.

It is made available as the compose subcommand of wasm-tools.

Usage

To compose a component, run the compose command:

wasm-tools compose -o composed.wasm component.wasm

This will automatically search for dependencies at the same location as the input component, component.wasm, and create a composed component named composed.wasm.

Any unresolved dependencies will remain as imports in the composed component.

Configuration

See configuring wasm-compose for more information on authoring configuration files.

How it works

wasm-compose starts with the input component and then processes each of the component's instance imports.

For each instance import, wasm-compose will consult its configuration to determine how to locate a dependency with the same name as the import.

If the dependency is not specified in the configuration, wasm-compose will search the configured search paths for a matching component file.

If a component to satisfy the dependency cannot be found, it will remain as an instance import in the composed component; at least one dependency must be satisfied for the component to be composed.

wasm-compose then repeats this process for all of the transitive imports of dependent components that have been found.

The composed component will, by default, define the transitive component dependencies directly in the composed component; it will then instantiate the dependencies in a topological order.

Finally the input component is instantiated and all of its exports are then exported from the composed component.

Example

See the example directory for a complete example of composing WebAssembly components together.

License

This project is licensed under the Apache 2.0 license with the LLVM exception. See LICENSE for more details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

Dependencies

~6MB
~131K SLoC