File: control

package info (click to toggle)
noggit 0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 232 kB
  • sloc: java: 2,598; xml: 64; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,537 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Source: noggit
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg@apache.org>
Build-Depends: debhelper-compat (= 13), default-jdk, maven-debian-helper (>= 1.5), junit
Standards-Version: 4.5.0
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/java-team/noggit.git
Vcs-Browser: https://salsa.debian.org/java-team/noggit
Homepage: https://github.com/yonik/noggit

Package: libnoggit-java
Architecture: all
Depends: ${misc:Depends}, ${maven:Depends}
Suggests: ${maven:OptionalDepends}
Description: 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.