mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 02:06:46 +00:00
* perf(*): replace `encoding/json` w/ sonic Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(utils): add `json` pkg (sonic wrapper) Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(*): use `sonic` wrapper instead Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(*): replace `sonic.ConfigStd` -> `json` (wrapper) Signed-off-by: Dwi Siswanto <git@dw1.io> * test(model): adjust expected marshal'd JSON Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(json): dynamic backend; `sonic` -> `go-json` (fallback) Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(json): merge config - as its not usable Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(json): rm go version constraints Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: go mod tidy Signed-off-by: Dwi Siswanto <git@dw1.io> --------- Signed-off-by: Dwi Siswanto <git@dw1.io>
19 lines
933 B
Go
19 lines
933 B
Go
// Package json provides fast JSON encoding and decoding functionality.
|
|
//
|
|
// On supported platforms; Linux, Darwin, or Windows on amd64, or on arm64 with
|
|
// Go 1.20 or later, the package uses the high-performance [sonic] library. On
|
|
// any other systems, it gracefully falls back to using the [go-json]
|
|
// implementation.
|
|
//
|
|
// This package acts as a wrapper around the underlying JSON APIs, offering
|
|
// standard operations such as marshaling, unmarshaling, and working with JSON
|
|
// encoders/decoders. It maintains compatibility with the standard encoding/json
|
|
// interfaces while delivering improved performance when possible.
|
|
//
|
|
// Additionally, it defines the customary [Marshaler] and [Unmarshaler]
|
|
// interfaces to facilitate custom JSON encoding and decoding implementations.
|
|
//
|
|
// TODO(dwisiswant0): This package should be moved to the
|
|
// [github.com/projectdiscovery/utils/json], but let see how it goes first.
|
|
package json
|