plexor-core 0.1.0-alpha.2

Core library for the rust implementation of the Plexo distributed system architecture, providing the fundamental Plexus, Neuron, Codec, and Axon abstractions.
Documentation
// Copyright 2025 Alecks Gates
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#[macro_use]
pub mod logging;
pub mod backpressure;
pub mod axon;
pub mod base_ganglion;
pub mod codec;
pub mod dendrite;
pub mod erasure;
pub mod ganglion;
pub mod namespace;
pub mod neuron;
pub mod payload;
pub mod plexus;
pub mod reactant;
pub mod synapse;
#[cfg(any(test, feature = "test-utils"))]
pub mod test_utils;
pub mod thalamus;
pub mod utils;