beancount-parser-lima 0.16.2

A zero-copy parser for Beancount
Documentation
directives {
  date { year: 2013 month: 5 day: 18 }
  transaction {
    flag: "*"
    postings {
      meta {
        kv { key: "test" value { text: "Something" } }
      }
      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" }
      }
    }
  }
}