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
//! Types for JSON serialization and deserialization.

pub mod input;
pub mod output;

pub use input::{InputEntry, input_entry_to_directive};
pub use output::{
    Amount, BatchOutput, ColumnInfo, DirectiveJson, Error, Include, LedgerOptions, LoadOutput,
    Meta, Plugin, Posting, PostingCost, QueryOutput, TypedValue, ValidateOutput, VersionOutput,
    meta_value_to_json,
};