File: control

package info (click to toggle)
golang-github-buger-jsonparser 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 684 kB
  • sloc: sh: 30; makefile: 29
file content (26 lines) | stat: -rw-r--r-- 1,128 bytes parent folder | download | duplicates (2)
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
Source: golang-github-buger-jsonparser
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Sascha Steinbiss <satta@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any
Standards-Version: 4.5.0
Rules-Requires-Root: no
Homepage: https://github.com/buger/jsonparser
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-buger-jsonparser
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-buger-jsonparser.git
XS-Go-Import-Path: github.com/buger/jsonparser

Package: golang-github-buger-jsonparser-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Multi-Arch: foreign
Description: fast schemaless JSON parser for Go
 This is a JSON parser library for Go that does not require previous
 knowledge of the structure of the payload (e.g. creating structs)
 and allows accessing fields by providing the path to them. It is up to
 10 times faster than standard encoding/json package (depending on payload
 size and usage) and allocates no additional memory.