nexus-memory-core 1.2.3

Core types, traits, and business logic for Nexus Memory System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Nexus Core - Core types, traits, and business logic
//!
//! This crate provides the foundational types and traits used throughout
//! the Nexus Memory System.

pub mod config;
pub mod error;
pub mod traits;
pub mod types;

pub use config::Config;
pub use error::{NexusError, Result};
pub use traits::*;
pub use types::*;

/// Nexus Memory System version
pub const VERSION: &str = env!("CARGO_PKG_VERSION");