processor/src/lib.rs
Bruno BELANYI a00567cadc ledger: introduce 'Ledger' type
Unfortunately, rust-csv does not support serializing maps [1], so
instead of trying to write a `Deserialize` impl, the `dump_csv` method
takes care of formatting the output as expected.

[1]: https://github.com/BurntSushi/rust-csv/issues/98
2022-08-23 14:05:57 +02:00

12 lines
175 B
Rust

pub mod core;
pub use crate::core::*;
pub mod error;
pub use crate::error::*;
pub mod ledger;
pub use crate::ledger::*;
pub mod transaction;
pub use crate::transaction::*;