//! Core Neuromorphic Computing Components
//!
//! This module provides the fundamental building blocks for neuromorphic computing,
//! including spiking neurons, synapses, and spike events that form the basis of
//! brain-inspired spatial algorithms.
// Re-export core types for convenient access
pub use SpikeEvent;
pub use SpikingNeuron;
pub use Synapse;