super basic rust cdylib plugin system
1# rustin
2
3Super basic rust plugin system based on dynamic library loading that I made in an hour.
4
5This will probably require cross compilation. The easiest way to do this properly is Github CI, tbh.
6Looking for a better way, but it's hard to find one, mostly because of macOS. Windows and Linux are
7both super easy, but macOS is probably CI-only for most developers.
8
9## Usage
10
11Run `make plugin` inside of `plugin`, then `cargo run` in the root. It should print `Hello, everyone!` or similar.