plugy 0.3.1

plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# How to run these examples.

There are two crates:

1. runner: the host part of the system.
2. foo-plugin: an example plugin implementation

The runner crate has a `lib.rs` that can be reused by plugins

To run:

- Compile the plugin (in foo-plugin):
  `cargo build --target wasm32-unknown-unknown`
- Run the host (in runner)
  `cargo run`