rustledger-core 0.13.0

Core types for rustledger: Amount, Position, Inventory, and all directive types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Synthetic beancount file generation for testing.
//!
//! This module provides utilities for generating synthetic beancount files
//! to test parser and validator compatibility with Python beancount.
//!
//! # Features
//!
//! - Edge case generators for stress-testing parsers
//! - Manifest tracking for reproducible test fixtures
//! - Integration with proptest for property-based testing

pub mod edge_cases;
pub mod manifest;

pub use edge_cases::*;
pub use manifest::*;