loadable-node-abi 0.2.0

abi_stable FFI surface for RemoteMedia SDK loadable plugins (NodePlugin, FfiNode, FfiNodeFactory). Pinned independently of the rest of the SDK so plugins can lock to a single ABI version.
Documentation
  • Coverage
  • 87.5%
    56 out of 64 items documented0 out of 42 items with examples
  • Size
  • Source code size: 19.58 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.29 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 24s Average build duration of successful builds.
  • all releases: 22s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • matbeedotcom

ABI-stable plugin interface.

Both the host and the plugin depend on this crate. Everything that crosses the dlopen boundary is defined here and uses abi_stable types (RVec, RString, RResult, RBox, sabi-trait objects).

RuntimeData itself is not in this surface — instead it is serialized to msgpack bytes (RVec<u8> via rmp-serde::to_vec_named) at the boundary. That keeps remotemedia-core out of the FFI contract entirely, so a plugin built against a different rustc / feature set can still load.

For the full contract — wire format, versioning policy, plugin author rules, change history — see docs/LOADABLE_NODE_ABI.md.