From 17299c937b6964bf8a0f807469dd2da41ce81bb2 Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Thu, 25 Mar 2021 19:56:40 -0400 Subject: [PATCH] Update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 167f57f..beed31c 100644 --- a/README.md +++ b/README.md @@ -14,15 +14,15 @@ Development branch. Probably does not work. - [x] Support Arrays. - [x] Support Unmarshaler interface. - [x] Original go-toml unmarshal tests pass. -- [ ] Benchmark! -- [ ] Abstract AST. +- [x] Benchmark! +- [x] Abstract AST. - [ ] Attach comments to AST (gated by parser flag). - [ ] Track file position (line, column) for errors. - [ ] Benchmark again! ## Further work -- [ ] Rewrite AST to use a single array as storage instead of one allocation per +- [x] Rewrite AST to use a single array as storage instead of one allocation per node. - [ ] Provide "minimal allocations" option that uses `unsafe` to reuse the input byte array as storage for strings.