zeldhash-parser 0.5.1

High-performance Bitcoin blockchain parser implementing the ZeldHash protocol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Application configuration management.
//!
//! Handles loading and merging configuration from multiple sources:
//! - Command-line arguments (highest priority)
//! - Environment variables
//! - TOML configuration file
//! - Default values (lowest priority)

mod app;
mod overlay;
mod protoblock;
mod rollblock;

pub use app::{load_runtime_paths, AppConfig, RuntimePaths};