Rust tooling surrounding Beancount, a text-based double-entry bookkeeping system.
This repository contains three crates currently.
beancount-core
, which contains a compile-time type-checked builder API and core data structures for representing Beancount data.beancount-parser
, which parses valid Beancount input and will output it's representation as Rust data structures.beancount-render
, which can format the beancount structures and output it via anything that implementsWrite
.
This repository will also provide:
- A crate (
beancount-sys
) that provides bindings to the Python Beancount library, likely through the use of pyo3. If deemed useful, a crate that exposes higher-level Beancount bindings will be created. With this work, we could hopefully unlock the ability to integrate with existing Python Beancount plugins.
If any of these things interest you feel free to contact me and/or submit a PR!
This work is licensed under Apache/2 or MIT license, per your choice. All contributions are also given under the same license.