5 stable releases

4.0.0 Mar 31, 2024
3.0.0 Nov 7, 2023
2.1.1 Jun 14, 2023
2.1.0 May 21, 2023
2.0.0 Apr 21, 2023

#1338 in Procedural macros

Download history 15/week @ 2024-02-26 32/week @ 2024-03-04 12/week @ 2024-03-11 4/week @ 2024-03-18 45/week @ 2024-03-25 121/week @ 2024-04-01

172 downloads per month
Used in rrplug

Apache-2.0 OR MIT

36KB
964 lines

rrplug

crates.io docs.rs rrplug-test-build

framework for working with R2Northstar's plugin system.

this crate provides convenient abstractions with compile time checks while not limiting unsafe access to any parts of plugin sys or the titanfall 2 engine.

rrplug template

plugins v4 removed some dependencies on external files so now templates are redundant but a template still exists

cross compiling plugins

To compile a plugin from a host machine that's not using windows, you need to install the required target.

rustup target add x86_64-pc-windows-gnu

Then create a cargo config to always compile your project for windows.

mkdir .cargo
echo "[build]\ntarget = \"x86_64-pc-windows-gnu\"" > .cargo/config.toml

versioning

rrplug had a major rewrite for each plugins version so versions that a x plugins version are x.\*.\*

rrplug plugins
4.*.* v4
3.*.* v3
2.*.* v2
0.1.* v1

Dependencies

~290–730KB
~18K SLoC