beancount-parser-lima 0.16.3

A zero-copy parser for Beancount
Documentation
directives {
  date { year: 2013 month: 5 day: 18 }
  transaction {
    flag: "*"
    narration: "Test"
    postings {
      account: "Assets:Something"
      spec {
        units { number { exact: "36" } currency: "USD" }
      }
    }
    postings {
      account: "Assets:Something"
      spec {
        # ANOMALY on precision as per Arithmetic.NumberExprDifferentPlaces
        # see discussion in that test
        units { number { exact: "23.3" } currency: "USD" }
      }
    }
  }
}