Skip to main content

datasynth_generators/
lib.rs

1#![deny(clippy::unwrap_used)]
2//! # synth-generators
3//!
4//! Data generators for journal entries, chart of accounts, ACDOCA event logs,
5//! master data entities, document flows, intercompany transactions, balance coherence,
6//! subledger transactions, FX rates, period close processes, anomaly injection,
7//! and data quality variations.
8
9// Allow dead code for methods that are part of the public API but not yet used internally
10#![allow(dead_code)]
11// Allow complex types for return types that model business domain complexity
12#![allow(clippy::type_complexity)]
13// Allow functions with many arguments for domain-specific operations
14#![allow(clippy::too_many_arguments)]
15// Allow large error types as they contain useful diagnostic information
16#![allow(clippy::result_large_err)]
17
18pub mod anomaly;
19pub mod audit;
20pub mod balance;
21pub mod coa_generator;
22pub mod company_selector;
23pub mod control_generator;
24pub mod counterfactual;
25pub mod data_quality;
26pub mod disruption;
27pub mod document_flow;
28pub mod fraud;
29pub mod fx;
30pub mod industry;
31pub mod intercompany;
32pub mod je_generator;
33pub mod llm_enrichment;
34pub mod master_data;
35pub mod period_close;
36pub mod relationships;
37pub mod subledger;
38pub mod temporal;
39pub mod user_generator;
40
41// Enterprise process chain generators
42pub mod bank_reconciliation_generator;
43pub mod budget_generator;
44pub mod esg;
45pub mod hr;
46pub mod kpi_generator;
47pub mod manufacturing;
48pub mod project_accounting;
49pub mod sales_quote_generator;
50pub mod sourcing;
51pub mod standards;
52pub mod tax;
53pub mod treasury;
54
55pub use anomaly::*;
56pub use audit::*;
57pub use balance::*;
58pub use coa_generator::*;
59pub use company_selector::*;
60pub use control_generator::*;
61pub use counterfactual::*;
62pub use data_quality::*;
63pub use disruption::*;
64pub use document_flow::*;
65pub use fraud::*;
66pub use fx::*;
67pub use industry::*;
68pub use intercompany::*;
69pub use je_generator::*;
70pub use master_data::*;
71pub use period_close::*;
72pub use relationships::*;
73pub use subledger::*;
74pub use temporal::*;
75pub use user_generator::*;
76
77// Enterprise process chain re-exports
78pub use bank_reconciliation_generator::*;
79pub use budget_generator::*;
80pub use esg::*;
81pub use hr::*;
82pub use kpi_generator::*;
83pub use manufacturing::*;
84pub use project_accounting::*;
85pub use sales_quote_generator::*;
86pub use sourcing::*;
87pub use standards::*;
88pub use tax::*;