File: control

package info (click to toggle)
golang-github-pquerna-ffjson 0.0~git20181028.e517b90-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 640 kB
  • sloc: makefile: 37; sh: 6
file content (45 lines) | stat: -rw-r--r-- 2,070 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Source: golang-github-pquerna-ffjson
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Reinhard Tartler <siretart@tauware.de>
Build-Depends: debhelper (>= 11),
               dh-golang,
               golang-any,
               golang-github-google-gofuzz-dev,
               golang-github-stretchr-testify-dev
Standards-Version: 4.2.1
Homepage: https://github.com/pquerna/ffjson
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-pquerna-ffjson
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-pquerna-ffjson.git
XS-Go-Import-Path: github.com/pquerna/ffjson
Testsuite: autopkgtest-pkg-go

Package: ffjson
Architecture: any
Depends: ${misc:Depends},
         golang-github-pquerna-ffjson-dev
Description: faster JSON serialization for Go
 ffjson generates static MarshalJSON and UnmarshalJSON functions for
 structures in Go. The generated functions reduce the reliance upon runtime
 reflection to do serialization and are generally 2 to 3 times faster.
 In cases where ffjson doesn't understand a Type involved, it falls back to
 encoding/json, meaning it is a safe drop in replacement.  By using ffjson
 your JSON serialization just gets faster with no additional code changes.
 .
 This package contains the ffjson executable.

Package: golang-github-pquerna-ffjson-dev
Architecture: all
Depends: ${misc:Depends},
         golang-github-google-gofuzz-dev,
         golang-github-stretchr-testify-dev
Description: faster JSON serialization for Go
 ffjson generates static MarshalJSON and UnmarshalJSON functions for
 structures in Go. The generated functions reduce the reliance upon runtime
 reflection to do serialization and are generally 2 to 3 times faster.
 In cases where ffjson doesn't understand a Type involved, it falls back to
 encoding/json, meaning it is a safe drop in replacement.  By using ffjson
 your JSON serialization just gets faster with no additional code changes.
 .
 This package contains the source code for other go programs to link against.