From e957787d280ae5536529ddcd7ec0378f5534eee9 Mon Sep 17 00:00:00 2001 From: Vladislav Sabanov Date: Wed, 5 Jul 2023 07:57:47 +0600 Subject: [PATCH] Update README.md [toml-parser)](https://github.com/glguy/toml-parser) support v1.0.0 and has pretty-printing --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bda213b..958eff1 100644 --- a/README.md +++ b/README.md @@ -214,13 +214,11 @@ benchmarks are also implemented in a way to reflect this difference. In addition to the above numbers, `tomland` has several features that make it unique: -1. `tomland` is the only Haskell library that has pretty-printing. -2. `tomland` is compatible with the latest TOML spec while other libraries are not. -3. `tomland` is bidirectional, which means that your encoding and +1. `tomland` is bidirectional, which means that your encoding and decoding are consistent with each other by construction. -4. `tomland` provides abilities for `Generic` and `DerivingVia` +2. `tomland` provides abilities for `Generic` and `DerivingVia` deriving out-of-the-box. -5. Despite being the fastest, `toml-parser` doesn’t support the array +3. Despite being the fastest, `toml-parser` doesn’t support the array of tables and because of that it’s hardly possible to specify the list of custom data types in TOML with this library. In addition, `toml-parser` doesn’t have ways to convert TOML AST to custom