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
[package]
name = "loadable-node-abi"
description = "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."
# Semver discipline: bump the MINOR (0.x → 0.x+1) whenever the public
# abi_stable surface changes shape — adding/removing prefix-type
# methods, changing FFI signatures, altering RBoxError variants, etc.
# That gives external plugin authors a cargo-level signal at build
# time instead of relying on abi_stable's load-time AbiInstability
# check (which only fires once the .so is dlopen'd into a host).
#
# History:
#   0.1.0  initial release
#   0.2.0  + FfiNode::process_multi (commit f4ba6b4e)
#         + FfiNode::initialize (commit 3bc76021)
#         (version-string bump landed retroactively in commit 09e90a07)
version = "0.2.0"
edition = "2021"
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true

# Pure rlib — both host and plugin link this as a regular library. The
# only thing that crosses the dynamic boundary is the abi_stable types
# defined in this crate, never `remotemedia-core` types directly.

[dependencies]
abi_stable = "0.11"
async-ffi = { version = "0.5", features = ["abi_stable"] }