ng-gateway-sdk 0.1.0

SDK for building NG Gateway southward drivers and northward plugins.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Internal FFI/runtime helpers used by macro expansions.
//!
//! # Notes
//! - This module is **not** part of the public SDK surface.
//! - It exists to keep `ng_driver_factory!` / `ng_plugin_factory!` expansions small and readable.

pub mod runtime_aware;
pub mod util;

pub use runtime_aware::{RuntimeAwareDriverFactory, RuntimeAwarePluginFactory};
pub use util::{build_runtime, cstring_sanitized, write_slice_ptr_len};