1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//! # Core Module
//!
//! This module provides the fundamental building blocks and infrastructure for the NucleusFlow
//! static site generator. It contains essential components that are used throughout the library:
//!
//! - Configuration management
//! - Error handling
//! - Core traits and interfaces
//!
//! ## Module Structure
//!
//! - [`config`]: Handles configuration management and validation
//! - [`error`]: Provides error types and handling mechanisms
//! - [`traits`]: Defines core traits and interfaces for the library
//!
//! ## Usage
//!
//! These modules are typically used together to provide the foundation for content processing
//! and site generation:
//!
//! ```rust,no_run
//! use nucleusflow::core::{
//! config::Config,
//! error::Result,
//! traits::{Generator, Processor}
//! };
//! ```
/// Configuration management module.
///
/// This module provides flexible configuration handling for the static site generator,
/// including support for different configuration sources and formats.
///
/// See [`config`](config) module documentation for more details.
/// Error handling module.
///
/// This module defines custom error types and result types used throughout the library,
/// providing consistent error handling patterns.
///
/// See [`error`](error) module documentation for more details.
/// Core traits module.
///
/// This module defines fundamental traits that form the backbone of the library's
/// content processing and generation capabilities.
///
/// See [`traits`](traits) module documentation for more details.
// Re-export commonly used types
pub use Config;
pub use ;
pub use ;