anya-core 1.2.0

Enterprise-grade Bitcoin Infrastructure Platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tools Module [AIR-3][AIS-3][BPC-3][AIT-3]
//!
//! This module provides various utility tools for the Anya Core system,
//! following official Bitcoin Improvement Proposals (BIPs) and canonical
//! Source of Truth Registry standards.

pub mod commit_tracker;
pub mod markdown;
pub mod source_of_truth_registry;

// Re-export commonly used tools
pub use commit_tracker::{update_ai_labelling_file, CommitInfo};
pub use markdown::{DocError, DocumentationValidator};
pub use source_of_truth_registry::{
    get_global_registry, initialize_global_registry, CanonicalDocument, CanonicalStatus,
    DuplicationCheckStatus, SourceOfTruthError, SourceOfTruthRegistry, WorkItem, WorkStatus,
};