plexor_core/lib.rs
1// Copyright 2025 Alecks Gates
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#[macro_use]
8pub mod logging;
9
10pub mod axon;
11pub mod base_ganglion;
12pub mod codec;
13pub mod dendrite;
14pub mod erasure;
15pub mod ganglion;
16pub mod namespace;
17pub mod neuron;
18pub mod payload;
19pub mod plexus;
20pub mod reactant;
21pub mod synapse;
22#[cfg(any(test, feature = "test-utils"))]
23pub mod test_utils;
24pub mod thalamus;
25pub mod utils;