rustledger 0.12.0

Drop-in replacement for Beancount. Pure Rust, 10-30x faster.
Documentation
1
2
3
4
5
6
7
8
//! bean-extract - Python beancount compatibility wrapper.
//!
//! This binary provides backwards compatibility with bean-extract from Python beancount.
//! It delegates to the rledger extract implementation.

fn main() -> std::process::ExitCode {
    rustledger::cmd::extract_cmd::main_with_name("bean-extract")
}