rustledger-ffi-wasi 0.7.2

Rustledger FFI via WASI - JSON API for embedding in any language
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Command implementations for the FFI-WASI module.
//!
//! Commands are organized by functionality:
//! - `load` - Loading and parsing beancount files
//! - `query` - BQL query execution
//! - `format` - Formatting beancount source
//! - `validate` - Validation
//! - `entry` - Entry creation and manipulation
//! - `clamp` - Date range filtering
//! - `util` - Utility commands

pub mod clamp;
pub mod entry;
pub mod format;
pub mod load;
pub mod query;
pub mod util;
pub mod validate;