use-reconciliation 0.1.0

Deterministic reconciliation primitives for RustUse finance crates
Documentation
  • Coverage
  • 100%
    45 out of 45 items documented1 out of 26 items with examples
  • Size
  • Source code size: 12.84 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 809.79 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 3s Average build duration of successful builds.
  • all releases: 3s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-finance
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-reconciliation

Deterministic reconciliation primitives for RustUse finance crates.

use-reconciliation provides bounded match scores, confidence vocabulary, candidates, results, and exception reasons. It intentionally contains no machine learning, LLM, or probabilistic matching logic.

Example

use use_amount::Amount;
use use_reconciliation::{MatchScore, ReconciliationCandidate};

let candidate = ReconciliationCandidate::new(
    "bank-line-1",
    "invoice-1001",
    Amount::zero(2)?,
    MatchScore::exact(),
)?;

assert!(candidate.is_exact_amount_match());
# Ok::<(), Box<dyn std::error::Error>>(())

Scope

Use this crate for deterministic reconciliation vocabulary and helper types. It does not infer matches, train models, call LLMs, connect to banks, query databases, or perform workflow automation.

License

Licensed under either MIT or Apache-2.0.