golang-github-francoispqt-gojay 1.2.13-5build1 source package in Ubuntu

Changelog

golang-github-francoispqt-gojay (1.2.13-5build1) mantic; urgency=medium

  * No-change rebuild with Go 1.21.

 -- Michael Hudson-Doyle <email address hidden>  Thu, 24 Aug 2023 17:15:12 +1200

Upload details

Uploaded by:
Michael Hudson-Doyle
Uploaded to:
Mantic
Original maintainer:
Debian Go Packaging Team
Architectures:
any all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc

Downloads

File Size SHA-256 Checksum
golang-github-francoispqt-gojay_1.2.13.orig.tar.gz 161.4 KiB af024784787ffb238b92f0d915e4587a669125d9dee5d43e8d55b2cabbfcd2c4
golang-github-francoispqt-gojay_1.2.13-5build1.debian.tar.xz 4.0 KiB 77c2e3ee6a5a689201e20cb2989498015f0e5e2b370c22c9706d3304ad4a43a1
golang-github-francoispqt-gojay_1.2.13-5build1.dsc 2.6 KiB 4fce4398c0726571cb3b953c0127acf56f567c6dbe247a6c93858ea72ec1e118

View changes file

Binary packages built by this source

gojay: Fast JSON code generator in golang

 This package provides a command line tool to generate gojay's
 marshaling and unmarshaling interface implementation for custom
 struct type(s).

gojay-dbgsym: debug symbols for gojay
golang-github-francoispqt-gojay-dev: JSON encoder/decoder golang library with powerful stream API

 GoJay is a performant JSON encoder/decoder for Golang.
 It has a simple API and doesn't use reflection. It relies on small
 interfaces to decode/encode structures and slices.
 .
 Why another JSON parser?
 Other fast decoder/encoder were mostly hardly readable static code
 generation or a lot of reflection, poor streaming features, and not so
 fast in the end. Also, it has a decoder that could consume
 an io.Reader of line or comma delimited JSON, in a JIT way.
 To consume a flow of JSON objects from a TCP connection for example or
 from a standard output. Same way to build an encoder that could encode
 a flow of data to a io.Writer.