1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//! roplat core runtime and macro entry points.
//!
//! This crate exposes three core abstractions:
//! - [`node::Node`]: computation unit.
//! - [`rhythm::Rhythm`]: scheduling cadence.
//! - `#[roplat::system]`: compiles connections into an execution graph.
//!
//! # Quick Example
//! ```rust
//! use roplat::node::io::DisplayWriterNode;
//! use roplat::Node;
//!
//! let mut node = DisplayWriterNode::new();
//! let _ = futures::executor::block_on(node.process("hello".to_string()));
//! ```
/// Communication primitives (ring buffer, triple buffer, IPC backends).
/// Built-in nodes and the [`Node`] trait.
/// Python interop bridge (PyO3 opaque transport).
/// Legacy recording API (kept for compatibility).
// pub mod resource;
/// Rhythm and replay subsystem.
/// Cross-language type binding abstraction.
/// Unified error type and result alias.
pub use ;
/// Node trait.
pub use Node;
/// Common logic nodes and compatibility type aliases.
pub use logic;
/// `#[interface]` proc macro.
pub use interface;
/// `#[node]` proc macro.
pub use node;
/// `#[replay]` proc macro.
pub use replay;
/// `#[roplat_msg]` proc macro.
pub use roplat_msg;
/// `#[system]` proc macro.
pub use system;
/// `system_item!` function-like macro.
pub use system_item;
/// Re-export for compatibility: `async_trait`.
pub use async_trait;
/// Re-export for compatibility: `pyo3`.
pub use pyo3;
/// Launch/config sub-crate re-export.
pub use roplat_launch;
/// Re-export for compatibility: `serde`.
pub use serde;
/// Re-export for compatibility: `serde_json`.
pub use serde_json;
/// Re-export for compatibility: `serde_yaml`.
pub use serde_yaml;