rustledger 0.13.0

Drop-in replacement for Beancount. Pure Rust, 10-30x faster.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Command implementations for CLI tools.
//!
//! Each module contains the full implementation for a command,
//! which can be invoked by thin wrapper binaries.

pub mod add_cmd;
pub mod check;
pub mod compat;
pub mod completions;
pub mod config_cmd;
pub mod doctor;
pub mod extract_cmd;
pub mod format;
pub mod price;
pub mod price_cmd;
pub mod query;
pub mod report_cmd;