noggit 0.8-1 source package in Ubuntu

Changelog

noggit (0.8-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 0.8
  * Update Standards-Version to 4.5.0
  * Use debhelper-compat.
    - Update to compat level 13.
  * Mark Vcs to salsa.
  * Remove cdbs from d/rules.
  * Remove build dependency on cdbs.
  * Add Rules-Requires-Root: no.
  * Use https with URI.

 -- Sudip Mukherjee <email address hidden>  Fri, 15 May 2020 21:36:34 +0100

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
noggit_0.8-1.dsc 1.9 KiB 8d2b8e2690212214d7b2bebff44187a8d45680f478977a94064d630cb2e776a5
noggit_0.8.orig.tar.gz 30.0 KiB 3991d11d7139aeae730cab0de443ccfe8ac6eac23c0ce4acabcf219d2bf02628
noggit_0.8-1.debian.tar.xz 2.6 KiB 7b97f68c68a7e2bfda7b1a01a9bb24c1c6b6ad8aa35e01cad642288b14cc12bc

Available diffs

No changes file available.

Binary packages built by this source

libnoggit-java: Fast streaming JSON parser for Java

 Noggit is the world's fastest streaming JSON parser for Java.
 Features:
  * Fast! Measured as the fastest JSON parser on char[], String input.
  * Streaming API (StAX/pull-parser like) for both easy and efficient parsing
  * Conforms to the JSON standard: http://www.ietf.org/rfc/rfc4627.txt
  * Memory efficiency
     * incremental parsing (Reader-based) in order to handle huge messages
     * a single byte of state needed per nested object or array
     * does not read large objects (including primitives) completely
       into memory unless asked
     * can eliminate most copying, allowing the user to provide
       the output buffer for values
  * can handle primitives of any size (does not attempt to parse
    numerics into a certain language primitives unless asked)
  * Simple serialization of objects (List, Map, etc)
  * Optional creation of objects (List, Map, etc) when parsing.