Skip to content

Update schema parser to bare spec v3

kaashyapan requested to merge kaashyapan/barenet:main into main

Briefly the changes

  • string -> str
  • data<128> -> data[128]
  • enum Department -> type Department enum
  • type Customer { -> type Customer struct {
  • type Person ( -> type Person union {
  • []i32 -> list<i32>[]
  • map[string]data -> map<str><data>

Merge request reports