beancount-parser-lima 0.14.6

A zero-copy parser for Beancount
Documentation
directives {
  date { year: 2013 month: 5 day: 18 }
  meta {
    kv { key: "test" value { text: "Something" } }
  }
  transaction {
    flag: "*"
    postings {
      account: "Assets:Investments:MSFT"
      spec {
        units { number { exact: "10" } currency: "MSFT" }
        price { number { exact: "2000" } currency: "USD" is_total: true }
      }
    }
    postings {
      account: "Assets:Investments:Cash"
      spec {
        units { number { exact: "-20000" } currency: "USD" }
      }
    }
  }
}