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
|
Source: golang-github-alecthomas-binary
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Balasankar C <balasankarc@debian.org>
, Thorsten Alteholz <debian@alteholz.de>
Build-Depends: debhelper-compat (= 13),
dh-golang,
golang-any,
golang-github-stretchr-testify-dev,
Standards-Version: 4.5.1
Homepage: https://github.com/alecthomas/binary
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-alecthomas-binary
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-alecthomas-binary.git
XS-Go-Import-Path: github.com/alecthomas/binary
Testsuite: autopkgtest-pkg-go
Package: golang-github-alecthomas-binary-dev
Architecture: all
Depends: ${misc:Depends},
Multi-Arch: foreign
Description: general purpose binary encoder/decoder
This package provides compact binary encoding for Go.
.
The Go standard library package encoding/binary provides encoding/decoding of
fixed-size Go values or slices of same. This package extends support to
arbitrary, variable-sized values by prefixing these values with their
varint-encoded size, recursively.
|