nexus_memory_core/lib.rs
1//! Nexus Core - Core types, traits, and business logic
2//!
3//! This crate provides the foundational types and traits used throughout
4//! the Nexus Memory System.
5
6pub mod config;
7pub mod error;
8pub mod fsutil;
9pub mod math;
10pub mod project_identity;
11pub mod traits;
12pub mod types;
13
14pub use config::Config;
15pub use error::{NexusError, Result};
16pub use math::cosine_similarity;
17pub use project_identity::ProjectIdentity;
18pub use traits::*;
19pub use types::*;
20
21/// Nexus Memory System version
22pub const VERSION: &str = env!("CARGO_PKG_VERSION");