jsmn 1.1.0-2 source package in Ubuntu

Changelog

jsmn (1.1.0-2) unstable; urgency=medium

  * Team upload.
  * Source-only upload. (Closes: #974731)
  * Bump debhelper compat to v13.
  * Mark binary package as Multi-Arch: foreign.

 -- Boyuan Yang <email address hidden>  Thu, 24 Dec 2020 15:04:04 -0500

Upload details

Uploaded by:
Debian Science Team
Uploaded to:
Sid
Original maintainer:
Debian Science Team
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

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
jsmn_1.1.0-2.dsc 1.8 KiB e47dad9ff3b65407bfee3d1c4f66c226771079f57b30bfbf105a9c0d4c4efb04
jsmn_1.1.0.orig.tar.gz 12.3 KiB 5f0913a10657fe7ec8d5794ccf00a01000e3e1f2f1e1f143c34a0f7b47edcb38
jsmn_1.1.0-2.debian.tar.xz 2.4 KiB bc3931e517bec106dd894e279c22453fd272de5ef00aacd9d488111ef11753f1

Available diffs

No changes file available.

Binary packages built by this source

libjsmn-dev: header-only JSON library

 Most JSON parsers offer you a bunch of functions to load JSON data,
 parse it and extract any value by its name. jsmn proves that checking
 the correctness of every JSON packet or allocating temporary objects
 to store parsed JSON fields often is an overkill.
 .
 jsmn is designed to be robust (it should work fine even with erroneous
 data), fast (it should parse data on the fly), portable (no superfluous
 dependencies or non-standard C extensions). And of course, simplicity is
 a key feature - simple code style, simple algorithm, simple integration
 into other projects.
 .
 Features
 .
  * compatible with C89
  * no dependencies (even libc!)
  * highly portable (tested on x86/amd64, ARM, AVR)
  * about 200 lines of code
  * extremely small code footprint
  * API contains only 2 functions
  * no dynamic memory allocation
  * incremental single-pass parsing
  * library code is covered with unit-tests