thenodes 0.2.0

TheNodes is a modular, plugin-driven P2P node framework for Rust, supporting node-embedded plugins (NEP) and core-as-a-library (CAL) modes with async-first APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! TheNodes public prelude (curated stable-intent exports).
//! Import with: `use thenodes::prelude::*;`
//!
//! Items here are considered *stable-intent* prior to 1.0.0. Their shape may
//! still adjust minimally until the first tagged release, but we aim to avoid
//! breaking renames or removals. Exclusions are deliberate.

pub use crate::config::{Config, ConfigDefaults};
pub use crate::network::message::{Message, MessageType, Payload};
pub use crate::realms::RealmInfo;

// NOTE: Plugin trait intentionally NOT re-exported yet (see STABILITY.md)