Bug#1140137: ITP: golang-github-dustin-gojson -- Fork of go's encoding/json with the scanner API made public.
"Andrew Lee (李健秋)" <[email protected]>
| Newsgroups | gmane.linux.debian.devel.general |
|---|---|
| Message-ID | <20260616111704.64DBA100CF3__23920.1280450047$1781608778$gmane$org@lla3.bfh.ch> |
Package: wnpp Severity: wishlist Owner: Andrew Lee (李健秋) <[email protected]> * Package name : golang-github-dustin-gojson Version : 0.0~git20160307.2e71ec9-1 Upstream Author : Dustin Sallings * URL : https://github.com/dustin/gojson * License : BSD-3-clause Programming Lang: Go Description : Fork of go's encoding/json with a public scanner API This Go library is an alternative implementation and historic fork of the standard library's encoding/json package. Its primary architectural value is exposing the underlying json scanner token validation and state parsing APIs publicly, which are kept internal within standard Go distribution builds. . Exposing these primitives allows low-level tools, high-performance encoders, and downstream data pipelines to perform fast syntax checks, continuous byte-stream verification, and custom structural validation passes directly on raw JSON documents without forcing full memory instantiation or unmarshaling into static structural objects. This is required by golang-github-shopify-ejson.