From 3e12d3500ca978106a9732953c78ef21690a506f Mon Sep 17 00:00:00 2001 From: Roman Sharkov Date: Fri, 19 Jan 2024 00:48:26 +0100 Subject: [PATCH] docs: Mention decoder experiment in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b79ac5..31eef62 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ # jscan -jscan provides high-performance zero-allocation JSON iterator and validator for Go. This module doesn't provide `Marshal`/`Unmarshal` capabilities, instead it focuses on highly efficient iteration over JSON data with on-the-fly validation. +jscan provides high-performance zero-allocation JSON iterator and validator for Go. This module doesn't provide `Marshal`/`Unmarshal` capabilities *yet* (an [experimental decoder](https://github.com/romshark/jscan-experimental-decoder) with backward compatibility to [encoding/json](https://pkg.go.dev/encoding/json) is WiP 🧪), instead it focuses on highly efficient iteration over JSON data with on-the-fly validation. jscan is tested against https://github.com/nst/JSONTestSuite, a comprehensive test suite for [RFC 8259](https://datatracker.ietf.org/doc/html/rfc8259) compliant JSON parsers.