beancount-parser-lima 0.14.6

A zero-copy parser for Beancount
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
directives {
  date { year: 2013 month: 5 day: 18 }
  transaction {
    flag: "*"
    narration: "Nice dinner at Mermaid Inn"
    postings {
      account: "Expenses:Restaurant"
      spec { units { number { exact: "100" } currency: "USD" } }
    }
    postings {
      account: "Assets:US:Cash"
      spec { units { number { exact: "-100" } currency: "USD" } }
    }
  }
}