beancount-parser-lima 0.16.3

A zero-copy parser for Beancount
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
directives {
  date { year: 2010 month: 5 day: 28 }
  transaction {
    flag: "*"
    postings { account: "Assets:Account1"
      spec {
        units { currency: "HOOL" }
        cost { per_unit { number { exact: "300.00" } } currency: "USD" }
      }
    }
    postings {
      account: "Assets:Account2"
      spec {
        units { number { exact: "-600.00" } currency: "USD" }
      }
    }
  }
}