Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
FM effect!
#1
A reddit user known as velocityvector2 recently posted this animation 

FM effect : r/glitch_art

which is pretty neat, and included the GoLang source code:

Code: (Select All)
package main

import (
    "image"
    "image/color"
    "math"

    "github.com/anthonynsimon/bild/blend"
    "github.com/anthonynsimon/bild/fcolor"
    "github.com/anthonynsimon/bild/imgio"
    "github.com/anthonynsimon/bild/transform"
    "github.com/setanarut/apng"
)

func processImageFrames(img image.Image, freqMultiplier float64, frameCount int) []image.Image {
    bounds := img.Bounds()
    width, height := bounds.Max.X, bounds.Max.Y
    frames := make([]image.Image, frameCount)
    minOmega := 2 * math.Pi / (0.05 * float64(width))
    baseOmega := minOmega * freqMultiplier
    for frame := range frames {
        destImg := image.NewRGBA(bounds)
        frames[frame] = destImg
        // Time progression - normalized value for the loop (between 0-1)
        timeOffset := float64(frame) / float64(frameCount) * 2 * math.Pi * 1
        for y := range height {
            rf := 0.0
            gf := 0.0
            bf := 0.0
            for x := range width {
                r, g, b, _ := img.At(x, y).RGBA()

                rf += float64(r)/65535.0 - 1
                gf += float64(g)/65535.0 - 1
                bf += float64(b)/65535.0 - 1

                // Add time progression
                rm := math.Cos(baseOmega*float64(x) + rf + timeOffset)
                gm := math.Cos(baseOmega*float64(x) + gf + timeOffset)
                bm := math.Cos(baseOmega*float64(x) + bf + timeOffset)

                // Remap signal back to channel value
                rv := uint8(min(max((rm+1)*127.5, 0), 255))
                gv := uint8(min(max((gm+1)*127.5, 0), 255))
                bv := uint8(min(max((bm+1)*127.5, 0), 255))

                destImg.SetRGBA(x, y, color.RGBA{rv, gv, bv, 255})
            }
        }
    }
    for i := range frames {
        frames[i] = blend.Blend(frames[i], img, HardMix)
        frames[i] = transform.Resize(frames[i], width/2, height/2, transform.CatmullRom)

    }
    return frames
}

func main() {
    img, _ := imgio.Open("input.jpg")
    frames := processImageFrames(img, 5, 8)
    apng.Save("out.png", frames, 7)
}

func HardMix(c1, c2 fcolor.RGBAF64) (result fcolor.RGBAF64) {
    f := func(i, j float64) float64 {
        if j < 1-i {
            return 0
        }
        return 1
    }
    result.R = f(c1.R, c2.R)
    result.G = f(c1.G, c2.G)
    result.B = f(c1.B, c2.B)
    result.A = 1
    return result
}
Is anyone familiar with Go or want to try translating it to QB64PE? 
I tracked down the libraries, which apparently are freely available:

"github.com/anthonynsimon/bild/blend"
anthonynsimon/bild/tree/master/blend
or
anthonynsimon/bild/blend

"github.com/anthonynsimon/bild/fcolor"
anthonynsimon/bild/tree/master/fcolor

"github.com/anthonynsimon/bild/imgio"
anthonynsimon/bild/tree/master/imgio
or
anthonynsimon/bild/blob/master/imgio

"github.com/anthonynsimon/bild/transform"
anthonynsimon/bild/tree/master/transform

"github.com/setanarut/apng"
setanarut/apng

This is as far as I got... 

Code: (Select All)
' func processImageFrames(img image.Image, freqMultiplier float64, frameCount int) []image.Image {
Function processImageFrames&(img&, freqMultiplier##, frameCount%)
    'bounds := img.Bounds()
    'width, height := bounds.Max.X, bounds.Max.Y
    width = _WIDTH(img) : height = _HEIGHT(img)
   
    ' SEEMS TO RETURN AN ARRAY OF IMAGES, NOT JUST ONE IMAGE:
    frames := make([]image.Image, frameCount)
I'm a bit out of my depth with this stuff, but I thought maybe one of the geniuses here would have fun with it.
Reply
#2
you've chosen quite a monster here.  this is what happens when i do on my system a search for "go" programming language (debian "bookworm" with mate desktop):

Code: (Select All)
[~]$ apt search golang
:
:
gccgo-go/stable 2:1.19~1 amd64
  Go programming language -- gccgo

ginkgo/stable 1.16.5-3+b1 amd64
  BDD Testing Framework for Go

go-bluetooth/stable 5.60-3+b4 amd64
  Golang bluetooth client based on bluez DBus interfaces (program)

go-mmproxy/stable 2.1-1+b6 amd64
  Golang implementation of mmproxy

gogoprotobuf/stable 1.3.2-3+b3 amd64
  alternative protocol buffer support for Golang - utilities

gojay/stable 1.2.13-5+b12 amd64
  Fast JSON code generator in golang

golang/stable 2:1.19~1 amd64
  Go programming language compiler - metapackage

golang-1.19/stable,stable 1.19.8-2 all
  Go programming language compiler - metapackage

golang-1.19-doc/stable,stable 1.19.8-2 all
  Go programming language - documentation

golang-1.19-go/stable 1.19.8-2 amd64
  Go programming language compiler, linker, compiled stdlib

golang-1.19-src/stable,stable 1.19.8-2 all
  Go programming language - source files

golang-1.21/stable-backports,stable-backports 1.21.13-1~bpo12+1 all
  Go programming language compiler - metapackage

golang-1.21-doc/stable-backports,stable-backports 1.21.13-1~bpo12+1 all
  Go programming language - documentation

golang-1.21-go/stable-backports 1.21.13-1~bpo12+1 amd64
  Go programming language compiler, linker, compiled stdlib

golang-1.21-src/stable-backports,stable-backports 1.21.13-1~bpo12+1 all
  Go programming language - source files

golang-1.22/stable-backports,stable-backports 1.22.12-3~bpo12+1 all
  Go programming language compiler - metapackage

golang-1.22-doc/stable-backports,stable-backports 1.22.12-3~bpo12+1 all
  Go programming language - documentation

golang-1.22-go/stable-backports 1.22.12-3~bpo12+1 amd64
  Go programming language compiler, linker, compiled stdlib

golang-1.22-src/stable-backports,stable-backports 1.22.12-3~bpo12+1 all
  Go programming language - source files

golang-1.23/stable-backports,stable-backports 1.23.5-1~bpo12+1 all
  Go programming language compiler - metapackage

golang-1.23-doc/stable-backports,stable-backports 1.23.5-1~bpo12+1 all
  Go programming language - documentation

golang-1.23-go/stable-backports 1.23.5-1~bpo12+1 amd64
  Go programming language compiler, linker, compiled stdlib

golang-1.23-src/stable-backports,stable-backports 1.23.5-1~bpo12+1 all
  Go programming language - source files

golang-android-soong-dev/stable,stable 0.0~git20201014.17e97d9-4 all
  Soong build system (library)

golang-any/stable 2:1.19~1 amd64
  Go programming language -- gccgo on "non-Go" platforms

golang-ariga-atlas-dev/stable,stable 0.7.2-2 all
  manage your database schemas with Atlas (library)

golang-barcode-dev/stable,stable 1.0.1-1 all
  Barcode creation lib for golang

golang-bazil-fuse-dev/stable,stable 0.0~git20160811.0.371fbbd-4 all
  FUSE library for Go

golang-bitbucket-pkg-inflect-dev/stable,stable 0.0~hg20130829.20.8961c37-6.1 all
  Go library to transform words from singular to plural

golang-blitiri-go-log-dev/stable,stable 1.1.0-1 all
  Simple logging library in Go

golang-blitiri-go-spf-dev/stable,stable 1.5.1-1 all
  SPF (Sender Policy Framework) implementation in Go

golang-blitiri-go-systemd-dev/stable,stable 1.1.0-1 all
  Utilities to interact with systemd sockets in Go

golang-cfssl/stable 1.2.0+git20160825.89.7fb22c8-3.1+b11 amd64
  CloudFlare's PKI and TLS toolkit

golang-chroma/stable 0.10.0-3 amd64
  general purpose syntax highlighter in pure Go (binaries)

golang-chroma-v2/stable 2.5.0-1 amd64
  general purpose syntax highlighter in pure Go (binaries)

golang-clockwork-dev/stable,stable 0.1.0-4.1 all
  Transitional package for golang-github-jonboulle-clockwork-dev

golang-code.cloudfoundry-bytefmt-dev/stable,stable 0.0~git20190818.854d396-2 all
  Human readable byte formatter

golang-code.rocketnine-tslocum-cbind-dev/stable,stable 0.1.5-3 all
  Key event handling Golang library for tcell

golang-code.rocketnine-tslocum-cview-dev/stable,stable 1.5.4-2 all
  Terminal-based user interface toolkit for Golang

golang-codesearch-dev/stable,stable 0.0~hg20120502-3 all
  regexp search over large bodies of source (development files)

golang-collectd-dev/stable,stable 0.3.0+git20181025.f80706d-2 all
  Utilities for using collectd together with Golang

golang-coreos-log-dev/stable,stable 0.0~git20140508-5 all
  simple logging library for Go

golang-dbus-dev/stable,stable 5.1.0-1 all
  Go client bindings for D-Bus

golang-debian-mdosch-xmppsrv-dev/stable,stable 0.2.4-1 all
  Look up XMPP SRV records (library)

golang-debian-vasudev-gospake2-dev/stable,stable 0.2.1-2 all
  Go SPAKE2 Implementation (library)

golang-dlib-dev/stable,stable 5.6.0.9+dfsg-3 all
  Go bindings for Deepin Desktop Environment (development files)

golang-doc/stable,stable 2:1.19~1 all
  Go programming language - documentation

golang-docker-credential-helpers/stable 0.6.4+ds1-1+b6 amd64
  native stores to safeguard Docker credentials

golang-easyjson/stable 0.7.7-1+b2 amd64
  Fast JSON serializer for golang - command-line client

golang-ed25519-dev/stable,stable 0~20140907.d2b94fd-4.1 all
  Go implementation of the Ed25519 signature algorithm

golang-entgo-ent-dev/stable,stable 0.11.3-4 all
  entity framework for Go

golang-etcd-server-dev/stable,stable 3.4.23-4 all
  highly-available key value store -- source

golang-filippo-age-dev/stable,stable 1.1.1-1 all
  simple, modern and secure encryption tool (Go library)

golang-filippo-edwards25519-dev/stable,stable 1.0.0~rc1+git20210721-0.1 all
  Low-level, Ed25519 elliptic curve library

golang-ginkgo-dev/stable,stable 1.16.5-3 all
  Transitional package for golang-github-onsi-ginkgo-dev

golang-gir-generator/stable 2.2.0-1 amd64
  Generate library binding code which support gir for golang

golang-gir-gio-2.0-dev/stable,stable 2.2.0-1 all
  gio-2.0 go bindings (library)

golang-gir-glib-2.0-dev/stable,stable 2.2.0-1 all
  glib-2.0 go bindings (library)

golang-gir-gobject-2.0-dev/stable,stable 2.2.0-1 all
  gobject-2.0 go bindings (library)

golang-gir-gudev-1.0-dev/stable,stable 2.2.0-1 all
  gudev-1.0 go bindings (library)

golang-gitaly-proto-dev/stable,stable 1.37.0+dfsg-1 all
  Protobuf specifications and client libraries for Gitaly

golang-github-0xax-notificator-dev/stable,stable 0.0~git20210731.c42e3d4-1.1 all
  Desktop notifications with golang

golang-github-14rcole-gopopulate-dev/stable,stable 0.0~git20171207.91c73a7-1.1 all
  Small library to populate a directory with random data

golang-github-a8m-tree-dev/stable,stable 0.0~git20201026.fce18e2-1 all
  implementation of the tree command

golang-github-aalpar-deheap-dev/stable,stable 1.0-3 all
  Doubly ended heap implementation (library)

golang-github-abbot-go-http-auth-dev/stable,stable 0.4.0-5 all
  Basic and Digest HTTP Authentication for golang http

golang-github-abdullin-seq-dev/stable,stable 0.0~git20160510.d5467c1-3 all
  structural equality library

golang-github-abeconnelly-autoio-dev/stable,stable 0.0~git20150803.989b7b0-3 all
  functions that provide standard scanner interfaces for compressed files

golang-github-acarl005-stripansi-dev/stable,stable 0.0~git20180116.5a71ef0-3 all
  Little Go package for removing ANSI color escape codes from strings

golang-github-achannarasappa-term-grid-dev/stable,stable 0.2.4-2 all
  Position text and visuals in a grid layout

golang-github-adam-hanna-arrayoperations-dev/stable,stable 0.2.6-3 all
  Small library for performing operations on slices in golang

golang-github-adam-lavrik-go-imath-dev/stable,stable 0.0~git20210910.265a42a-2 all
  elementary functions for integer arguments (library)

golang-github-adrg-xdg-dev/stable,stable 0.4.0-2 all
  implementation of the XDG Base Directory Specification and XDG user directories

golang-github-adrianmo-go-nmea-dev/stable,stable 1.7.0-2 all
  Go library for the NMEA 0183 protocol

golang-github-adtac-go-akismet-dev/stable,stable 0.0~git20181220.0ca9e10-2 all
  Library for accessing the Akismet API

golang-github-advancedlogic-goose-dev/stable,stable 0.0~git20210820.9d5822d+ds-2 all
  Html Content / Article Extractor in Golang (library)

golang-github-aead-chacha20-dev/stable,stable 0.0~git20180709.8b13a72-4 all
  ChaCha20 and XChaCha20 stream ciphers go library

golang-github-aead-poly1305-dev/stable,stable 0.0~git20180717.3fee0db-1 all
  poly1305 message authentication code go library

golang-github-aelsabbahy-gonetstat-dev/stable,stable 0.0~git20160428.0.edf89f7-4 all
  Netstat implementation in Go

golang-github-agext-levenshtein-dev/stable,stable 1.2.3-2 all
  Levenshtein distance and similarity metrics

golang-github-agnivade-levenshtein-dev/stable,stable 1.1.1-2 all
  Go implementation to calculate Levenshtein Distance. (library)

golang-github-agtorre-gocolorize-dev/stable,stable 1.0.0-3 all
  Stateful ANSI coloring for Go

golang-github-ajstarks-svgo-dev/stable,stable 2012-01-27-3 all
  generating online histograms and plotting them with golang

golang-github-akamai-akamaiopen-edgegrid-golang-dev/stable,stable 1.0.1-1 all
  Authentication handler for the Akamai OPEN EdgeGrid Authentication scheme

golang-github-akavel-rsrc-dev/stable,stable 1:0.8.0-2 all
  Go library for embedding binary resources in executables

golang-github-akosmarton-papipes-dev/stable,stable 0.0~git20201027.3c63b49-2 all
  Pulseaudio client library for creating virtual sinks and sources

golang-github-akrennmair-gopcap-dev/stable,stable 0.0~git20150728.0.00e1103-3 all
  simple wrapper around libpcap for Golang

golang-github-albenik-go-serial-dev/stable,stable 2.5.1-1 all
  Cross-platform serial library for go-lang (library)

golang-github-alcortesm-tgz-dev/stable,stable 0.0~git20161220.9c5fe88-3 all
  Go library to extract tgz files to temporal directories

golang-github-alecaivazis-survey-dev/stable,stable 2.3.6+ds1-1 all
  golang library for building interactive prompts

golang-github-alecthomas-assert-dev/stable,stable 2.2.1-1 all
  simple assertion library using Go generics

golang-github-alecthomas-binary-dev/stable,stable 0.0~git20221018.7487181-1 all
  general purpose binary encoder/decoder

golang-github-alecthomas-chroma-dev/stable,stable 0.10.0-3 all
  general purpose syntax highlighter in pure Go (libraries)

golang-github-alecthomas-chroma-v2-dev/stable,stable 2.5.0-1 all
  general purpose syntax highlighter in pure Go (libraries)

golang-github-alecthomas-colour-dev/stable,stable 0.0~git20160524.60882d9-1.1 all
  Quake-style colour formatting for Unix terminals

golang-github-alecthomas-jsonschema-dev/stable,stable 0.0~git20210127.19bc6f2-2 all
  Generate JSON Schemas from Go types (library)

golang-github-alecthomas-kong-dev/stable,stable 0.7.1-1 all
  command-line parser for Go

golang-github-alecthomas-kong-hcl-dev/stable,stable 1.0.1-1 all
  Kong configuration loader for HCL (Go library)

golang-github-alecthomas-participle-dev/stable,stable 0.7.1-2 all
  parser library for Go (library)

golang-github-alecthomas-repr-dev/stable,stable 0.2.0-1 all
  Python's repr() for Go

golang-github-alecthomas-units-dev/stable,stable 0.0~git20211218.b94a6e3-1 all
  Go package for parsing byte units

golang-github-aleksi-pointer-dev/stable,stable 1.1.0-2 all
  helpers to get pointers to values of built-in types

golang-github-alessio-shellescape-dev/stable,stable 1.4.1-3 all
  Escape arbitrary strings for use as command line arguments

golang-github-alexcesaro-log-dev/stable,stable 0.0~git20150915.61e6862-3 all
  Logging packages for Go (library)

golang-github-alexflint-go-arg-dev/stable,stable 1.3.0+ds-2 all
  Struct-based argument parsing in Go

golang-github-alexflint-go-filemutex-dev/stable,stable 1.2.0-1 all
  processes synchronization library

golang-github-alexflint-go-scalar-dev/stable,stable 1.0.0+ds-2 all
  scalar parsing library in Golang

golang-github-alexliesenfeld-health-dev/stable,stable 0.0~git20220920.973f6339-2 all
  simple and flexible health check library for Go

golang-github-aliyun-aliyun-oss-go-sdk-dev/stable,stable 1.5.0+dfsg1-2 all
  Alibaba Cloud OSS SDK for Go

golang-github-allegro-bigcache-dev/stable,stable 2.2.5-5 all
  efficient cache for gigabytes of data written in Go (library)

golang-github-anacrolix-dms-dev/stable,stable 1.5.0-2 all
  Go source for UPnP DLNA Digital Media Server

golang-github-anacrolix-envpprof-dev/stable,stable 1.2.1-2 all
  configures Go's pprof and default HTTP mux

golang-github-anacrolix-ffprobe-dev/stable,stable 1.0.1-1 all
  Go ffprobe wrapper

golang-github-anacrolix-log-dev/stable,stable 0.13.1-2 all
  context-style logging for Go (library)

golang-github-anacrolix-missinggo-bin-static/stable 2.1.0-7+b5 amd64
  Stuff that's missing in Go stdlib, or hasn't made it into its own repo.

golang-github-anacrolix-missinggo-dev/stable,stable 2.1.0-7 all
  Stuff that's missing in Go stdlib, or hasn't made it into its own repo.

golang-github-anacrolix-tagflag-dev/stable,stable 0.0.0-20180109-2146c8d-4 all
  declarative flag parsing for Go using struct tags

golang-github-andreykaipov-goobs-dev/stable,stable 0.8.0-1 all
  control OBS Studio via WebSockets (Go library)

golang-github-andreyvit-diff-dev/stable,stable 0.0~git20170406.c7f18ee-3 all
  quick'n'easy string diffs for Golang

golang-github-andybalholm-brotli-dev/stable,stable 1.0.4-3 all
  pure Go Brotli encoder and decoder (library)

golang-github-andybalholm-cascadia-dev/stable,stable 0.0~git20161224.0.349dd02-1.1 all
  CSS selector library in Go

golang-github-andybalholm-crlf-dev/stable,stable 0.0~git20171020.670099a-2 all
  handling CR/LF line endings for Go language

golang-github-anmitsu-go-shlex-dev/stable,stable 0.0~git20200514.38f4b40-2 all
  Library to make a lexical analyzer like Unix shell for golang

golang-github-ant0ine-go-json-rest-dev/stable,stable 3.3.2-3 all
  quick and easy way to setup a RESTful JSON API (library)

golang-github-antchfx-jsonquery-dev/stable,stable 1.3.1-1 all
  Golang XPath query for JSON query

golang-github-antchfx-xmlquery-dev/stable,stable 1.3.3-1 all
  Go XPath package for XML query

golang-github-antchfx-xpath-dev/stable,stable 1.1.2-2 all
  XPath package for Golang, supported HTML, XML, JSON query

golang-github-antlr-antlr4-dev/stable,stable 4.11.1+ds-2 all
  runtime library for ANTLR 4

golang-github-antonmedv-expr-dev/stable,stable 1.8.9-2 all
  expression evaluation engine for Go

golang-github-apex-log-dev/stable,stable 1.1.1-3 all
  structured logging package for Go

golang-github-apparentlymart-go-cidr-dev/stable,stable 1.1.0-2 all
  manipulations of CIDR netmasks and their associated addresses

golang-github-apparentlymart-go-dump-dev/stable,stable 0.0~git20190214.042adf3-3 all
  utility for formatting Go values in a pretty-printed way

golang-github-apparentlymart-go-openvpn-mgmt-dev/stable,stable 0.0~git20161009.9a305ae-1.1 all
  Go client library for OpenVPN's management protocol

golang-github-apparentlymart-go-rundeck-api-dev/stable,stable 0.0.1+git20170705.2c962ac-4 all
  Go client for the Rundeck HTTP API

golang-github-apparentlymart-go-shquot-dev/stable,stable 0.0.1-3 all
  helper functions for quoting and escaping strings

golang-github-apparentlymart-go-textseg-dev/stable,stable 13.0.0-1 all
  Golang implementation of Unicode Text Segmentation

golang-github-apparentlymart-go-userdirs-dev/stable,stable 0.0~git20200915.b0c018a-4 all
  finding user-specific application data directories

golang-github-apparentlymart-go-versions-dev/stable,stable 1.0.1-1 all
  version-wrangling library for Go

golang-github-appc-cni-dev/stable,stable 1.1.2-1 all
  container network interface

golang-github-appc-goaci-dev/stable,stable 0.1.1-2 all
  build go projects into ACIs

golang-github-appc-spec-dev/stable,stable 0.8.11+dfsg-2.1 all
  App Container Specification (appc) - source

golang-github-appleboy-gin-jwt-dev/stable,stable 2.6.4-2 all
  JWT middleware for the Gin framework

golang-github-appleboy-gofight-dev/stable,stable 2.1.2-3 all
  API Handler Testing for Golang Web framework

golang-github-approvals-go-approval-tests-dev/stable,stable 0.0~git20180620.6ae1ec6-2 all
  ApprovalTests for go

golang-github-apptainer-container-key-client-dev/stable,stable 0.7.2-2 all
  Go client for Apptainer key storage and retrieval using HKP (library)

golang-github-apptainer-container-library-client-dev/stable,stable 1.2.2-2 all
  Golang client for Apptainer container library (library)

golang-github-aquasecurity-go-dep-parser-dev/stable,stable 0.0~git20220110.4a30ebc-3 all
  dependency parser for multiple programming languages in go

golang-github-aquasecurity-go-version-dev/stable,stable 0.0~git20210121.637058c-2 all
  Go library for parsing and verifying versions and version constraints

golang-github-aquasecurity-table-dev/stable,stable 1.8.0-3 all
  tables for terminals, in Go (library)

golang-github-araddon-dateparse-dev/stable,stable 0.0~git20210429.6b43995-3 all
  Go library used to parse date from string

golang-github-araddon-gou-dev/stable,stable 0.0~git20180509.7db4be5-1.1 all
  logging and json helpers for Go

golang-github-arceliar-ironwood-dev/stable,stable 0.0~git20221115.ec61cea-1 all
  Routing library with public keys as addresses (library)

golang-github-arceliar-phony-dev/stable,stable 0.0~git20210209.dde1a8d-2 all
  Ponylang-inspired actor model library for Go (library)

golang-github-armon-circbuf-dev/stable,stable 0.0~git20190214.5111143-1 all
  Golang circular (ring) buffer

golang-github-armon-consul-api-dev/stable,stable 0.0~git20150107.0.dcfedd5-4.1 all
  [DEPRECATED] Golang API client for Consul

golang-github-armon-go-metrics-dev/stable,stable 0.3.4-1 all
  library for exporting performance and runtime metrics

golang-github-armon-go-proxyproto-dev/stable,stable 0.0~git20190211.68259f7-2 all
  Golang package to handle HAProxy Proxy Protocol

golang-github-armon-go-radix-dev/stable,stable 1.0.0-2 all
  Golang implementation of Radix trees

golang-github-armon-go-socks5-dev/stable,stable 0.0~git20160902.e753329-1.1 all
  SOCKS5 server in Golang

golang-github-arran4-golang-ical-dev/stable,stable 0.0~git20220517.fd89fef-2 all
  ICS / ICal parser and serialiser in Golang

golang-github-artyom-mtab-dev/stable,stable 1.0.0-2 all
  Package to read /proc/self/mounts entries (library)

golang-github-aryann-difflib-dev/stable,stable 0.0~git20210328.ff5ff6d-4 all
  Simple go library for diffing two sequences of text

golang-github-asaskevich-govalidator-dev/stable,stable 9+git20180720.0.f9ffefc3-1.1 all
  Validators and sanitizers for strings, numerics, slices and structs

golang-github-atotto-clipboard-dev/stable,stable 0.1.4-1 all
  Clipboard for Go

golang-github-audriusbutkevicius-go-nat-pmp-dev/stable,stable 0.0~git20160522.452c976-3 all
  Go language client for the NAT-PMP internet

golang-github-audriusbutkevicius-pfilter-dev/stable,stable 0.0.5-1 all
  filtering packets into multiple virtual connections

golang-github-audriusbutkevicius-recli-dev/stable,stable 0.0.6-2 all
  Reflection based CLI generator for Golang (library)

golang-github-avast-apkparser-dev/stable,stable 0.0~git20190516.3b8c5ef-3 all
  APK manifest & resources parsing in Golang.

golang-github-avast-apkverifier-dev/stable,stable 0.0~git20191015.7330a51-11 all
  Android APK Signature verification Go library

golang-github-avast-retry-go-dev/stable,stable 2.4.3-1 all
  retry mechanism library for Go

golang-github-aviau-gopass-dev/stable,stable 1.5.0-1 all
  pass implementation in Go - dev package

golang-github-awalterschulze-gographviz-dev/stable,stable 2.0.1-2 all
  Graphviz DOT language in golang

golang-github-aws-aws-sdk-go-dev/stable,stable 1.44.133-1 all
  AWS SDK for the Go programming language

golang-github-aws-aws-sdk-go-v2-dev/stable,stable 1.17.1-3 all
  AWS SDK for the Go programming language (library)

golang-github-aws-smithy-go-dev/stable,stable 1.13.3-2 all
  Smithy code generators for Go (library)

golang-github-axgle-mahonia-dev/stable,stable 0.0~git20180208.3358181-4 all
  Character-set conversion library implemented in Go. (library)

golang-github-aybabtme-rgbterm-dev/stable,stable 0.0~git20170906.cc83f3b-2 all
  RGB colors for your terminal (library)

golang-github-aymanbagabas-go-osc52-dev/stable,stable 1.2.1-1 all
  Golang terminal ANSI OSC52 wrapper

golang-github-aymerick-douceur-dev/stable,stable 0.2.0-3 all
  simple CSS parser and inliner in Go (library)

golang-github-azure-azure-pipeline-go-dev/stable,stable 0.2.3-1 all
  HTTP request/response middleware pipeline

golang-github-azure-azure-sdk-for-go-dev/stable,stable 68.0.0-2 all
  Microsoft Azure SDK for Go

golang-github-azure-azure-storage-blob-go-dev/stable,stable 0.15.0-1 all
  Microsoft Azure Blob Storage Library for Go

golang-github-azure-go-ansiterm-dev/stable,stable 0.0~git20210617.d185dfc-2 all
  Go package for ANSI terminal emulation in Windows

golang-github-azure-go-autorest-dev/stable,stable 14.2.0+git20220726.711dde1-1 all
  HTTP request pipeline suitable for use across multiple go-routines

golang-github-azure-go-ntlmssp-dev/stable,stable 0.0~git20220621.cb9428e-1 all
  NTLM/Negotiate authentication over HTTP (Go library)

golang-github-badgerodon-collections-dev/stable,stable 0.0~git20130729.604e922-4 all
  Collection of Golang types

golang-github-badgerodon-peg-dev/stable,stable 0.0~git20130729.9e5f7f4-2 all
  Parsing Expression Grammar Parser in Go (library)

golang-github-beevik-etree-dev/stable,stable 1.1.0-1 all
  parse and generate XML easily in go

golang-github-beevik-ntp-dev/stable,stable 0.3.0-4 all
  simple NTP client for Go (library)

golang-github-benbjohnson-clock-dev/stable,stable 1.3.0-1 all
  library for mocking time in Go

golang-github-benbjohnson-immutable-dev/stable,stable 0.2.0-2 all
  Immutable collections for Go (library)

golang-github-benbjohnson-tmpl-dev/stable,stable 0.0~git20160209.0.8e77bc5-7 all
  Command line interface to Go's text/template library - dev package

golang-github-beorn7-perks-dev/stable,stable 1.0.1-1 all
  effective computation of things

golang-github-bep-clock-dev/stable,stable 0.3.0-2 all
  Golang clock that allows you to set the start time (Go library)

golang-github-bep-debounce-dev/stable,stable 1.2.0+really1.2.0-2 all
  Debouncer written in Go

golang-github-bep-gitmap-dev/stable,stable 1.1.2-2 all
  map all filenames to info objects for a given git revision

golang-github-bep-goat-dev/stable,stable 0.5.0-2 all
  Render ASCII art as SVG diagrams (Go library)

golang-github-bep-godartsass-dev/stable,stable 0.16.0-1 all
  Go API backed by the native Dart Sass Embedded executable

golang-github-bep-golibsass-dev/stable,stable 1.1.0-1 all
  Easy-to-use Go bindings for LibSass

golang-github-bep-gowebp-dev/stable,stable 0.2.0+dfsg-2 all
  C bindings and an API for encoding WebP images (Go library)

golang-github-bep-overlayfs-dev/stable,stable 0.6.0-2 all
  composite Afero filesystem (Go library)

golang-github-bep-tmc-dev/stable,stable 0.5.1-3 all
  provides round-trip serialization of typed Go maps

golang-github-bettercap-nrf24-dev/stable,stable 0.0~git20190219.aa37e6d-2 all
  allows interaction with nRF24LU1+ based USB dongles (library)

golang-github-bettercap-readline-dev/stable,stable 1.4+git20210228.655e48b-2 all
  Readline is a pure go implementation for a GNU-Readline like library

golang-github-bgentry-go-netrc-dev/stable,stable 0.0~git20140422.9fd32a8-1 all
  Golang package for reading and writing netrc files

golang-github-bgentry-speakeasy-dev/stable,stable 0.1.0-2 all
  Golang helpers for reading password input without cgo

golang-github-bgp-stayrtr-dev/stable,stable 0.5.1-2 all
  Cloudflare's RPKI to router library

golang-github-bifurcation-mint-dev/stable,stable 0.0~git20200214.93c820e-2 all
  Minimal TLS 1.3 Implementation in Go.

golang-github-biogo-biogo-dev/stable,stable 1.0.4-1 all
  biogo is a bioinformatics library for Go (library)

golang-github-biogo-graph-dev/stable,stable 0.0~git20150317.057c198-3 all
  bíogo undirected graph analysis repository (library)

golang-github-biogo-hts-dev/stable,stable 1.4.4+dfsg1-1 all
  biogo high throughput sequencing repository

golang-github-biogo-store-dev/stable,stable 0.0~git20200525.8c94ae1-2 all
  bíogo data store repository (library)

golang-github-bitly-go-simplejson-dev/stable,stable 0.5.0-6 all
  Golang library to interact with arbitrary JSON

golang-github-bits-and-blooms-bitset-dev/stable,stable 1.2.2-1 all
  implementation of bitsets

golang-github-bkaradzic-go-lz4-dev/stable,stable 1.0.0-5 all
  port of the LZ4 lossless compression algorithm to Go

golang-github-blackfireio-osinfo-dev/stable,stable 1.0.3-2 all
  Go library to identify the underlying operating system

golang-github-blang-semver-dev/stable,stable 4.0.0-1 all
  semantic versioning library

golang-github-blevesearch-go-porterstemmer-dev/stable,stable 1.0.1+git20141230.9.23a2c8e-7 all
  Native Go implementation of the Porter Stemming algorithm

golang-github-blevesearch-segment-dev/stable,stable 0.0~git20160915.0.762005e-7 all
  Go library for performing Unicode Text Segmentation

golang-github-bluebreezecf-opentsdb-goclient-dev/stable,stable 0.0~git20160515.0.539764b-1.1 all
  Go client for OpenTSDB REST API

golang-github-bmatcuk-doublestar-dev/stable,stable 2.0.4-2 all
  support for double star matches in golang's path.Match and filepath.Glob

golang-github-bmatsuo-lmdb-go-dev/stable,stable 1.8.0+git20170215.a14b5a3-4 all
  Bindings for the LMDB C library

golang-github-bmizerany-assert-dev/stable,stable 0.0~git20120716-4 all
  Assertions library for Go tests

golang-github-bmizerany-pat-dev/stable,stable 0.0~git20170814.6226ea5-1 all
  Sinatra style pattern muxer for Go's net/http library

golang-github-bndr-gotabulate-dev/stable,stable 1.1.2-4 all
  Gotabulate - Easily pretty-print your tabular data with Go (library)

golang-github-boj-redistore-dev/stable,stable 1.2+git20180917.cd5dcc7-3 all
  session store backend for gorilla/sessions using Redis

golang-github-boltdb-bolt-dev/stable,stable 1.3.1-7 all
  low-level key/value database for Go

golang-github-bowery-prompt-dev/stable,stable 0.0~git20190916.fa82799-3 all
  Cross platform prompting library for Go

golang-github-bradfitz-gomemcache-dev/stable,stable 0.0~git20141109-3 all
  Go memcached client library

golang-github-bradfitz-iter-dev/stable,stable 0.0~git20191230.e8f45d3-2 all
  Range over integers [0,n). Seriously, that's it.

golang-github-bradleyjkemp-cupaloy-dev/stable,stable 2.7.0-1 all
  simple Go snapshot testing

golang-github-brentp-bix-dev/stable,stable 0.0~git20190718.00aa7a7+ds-2 all
  Tabix file access with golang using biogo machinery (library)

golang-github-brentp-goluaez-dev/stable,stable 0.0~git20160116.dd35d08-2 all
  Easy embedding Lua in go

golang-github-brentp-gsort-dev/stable,stable 0.1.4-3 all
  library package for gsort

golang-github-brentp-irelate-dev/stable,stable 0.0.1+ds-1 all
  Streaming relation testing of sorted files of intervals

golang-github-brentp-vcfgo-dev/stable,stable 0.0~git20190824.654ed2e-2 all
  Golang library to read, write, manipulate VCF format files

golang-github-briandowns-spinner-dev/stable,stable 1.18.1+ds1-1 all
  Go library for providing a terminal spinner/progress indicator with options

golang-github-bruth-assert-dev/stable,stable 0.0+git20130823.de420fa-3 all
  Simple test assertions for Golang tests

golang-github-bshuster-repo-logrus-logstash-hook-dev/stable,stable 0.4.1-2 all
  Logstash hook for Logrus logging library for Go

golang-github-bsipos-thist-dev/stable,stable 1.0.0-2 all
  generating online histograms and plotting them with golang

golang-github-bsphere-le-go-dev/stable,stable 0.0~git20170215.0.7a984a8-1.1 all
  Golang library for logentries.com

golang-github-btcsuite-btcd-btcec-dev/stable,stable 0.0~git20161101.0.g8343278-1.1 all
  Go library for Elliptic curve cryptography

golang-github-btcsuite-btcd-chaincfg-chainhash-dev/stable,stable 0.0+git20161209.0.7a4cc89-1.1 all
  generic hash types and functions for Go

golang-github-btcsuite-fastsha256-dev/stable,stable 0.0~git20160815.0.637e656-1.1 all
  Go alternative fast SHA256 implementation

golang-github-buengese-sgzip-dev/stable,stable 0.0~git20220517.9bca1b6-4 all
  experiments for a seekable gzip for use in rclone based on pgzip (library)

golang-github-buger-goterm-dev/stable,stable 0.0+git20181115.c206103-3 all
  advanced terminal output in Golang

golang-github-buger-jsonparser-dev/stable,stable 1.1.1-2 all
  fast schemaless JSON parser for Go

golang-github-bugsnag-bugsnag-go-dev/stable,stable 1.7.0-2 all
  automatic panic monitoring for Go applications

golang-github-bugsnag-panicwrap-dev/stable,stable 1.2.0-2 all
  Go library for catching and handling panics in Go applications

golang-github-burntsushi-locker-dev/stable,stable 0.0~git20171006.a6e239e-3 all
  simple Go package for conveniently using named read/write locks

golang-github-burntsushi-toml-dev/stable,stable 1.2.0-2 all
  TOML parser and encoder for Go with reflection

golang-github-burntsushi-xgb-dev/stable,stable 0.0~git20210121.deaf085-1 all
  Low-level API to communicate with the X server. See the reference

golang-github-bwesterb-go-ristretto-dev/stable,stable 1.2.2-2 all
  Go implementation of the Ristretto prime-order group over Edwards25519

golang-github-c-bata-go-prompt-dev/stable,stable 0.2.5-1 all
  building powerful interactive prompts in Go

golang-github-c-robinson-iplib-dev/stable,stable 1.0.3-3 all
  library for working with IP addresses and networks in Go

golang-github-caarlos0-env-dev/stable,stable 6.7.1-1 all
  Go library for parse environment variables to structs

golang-github-cactus-go-statsd-client-dev/stable,stable 5.0.0-1 all
  statsd client for Go

golang-github-caddyserver-certmagic-dev/stable,stable 0.17.2-2 all
  Go library for automatic HTTPS using Let's Encrypt

golang-github-calmh-du-dev/stable,stable 1.0.1-4 all
  Get disk usage information like how much space is available, free, and used

golang-github-calmh-luhn-dev/stable,stable 2.0.0-3 all
  Luhn-mod-N implementation in Go

golang-github-calmh-randomart-dev/stable,stable 1.1.0-2 all
  generates OpenSSH-style randomart (Go library)

golang-github-calmh-xdr-dev/stable,stable 2.0.1-8 all
  Go XDR enc/decoder - dev package

golang-github-canonical-candid-dev/stable,stable 1.12.2-1 all
  Candid Identity Manager Service (library)

golang-github-canonical-go-dqlite-dev/stable,stable 1.11.5-1 all
  Go bindings for libdqlite

golang-github-casbin-casbin-dev/stable,stable 2.60.0-1 all
  Authorization library that supports access control models like ACL, RBAC, ABAC

golang-github-cavaliergopher-grab-dev/stable,stable 3.0.1-3 all
  Download manager package for Go (library)

golang-github-ccding-go-stun-dev/stable,stable 0.1.3-1 all
  implementation of the STUN client (RFC 3489 and RFC 5389)

golang-github-cenk-hub-dev/stable,stable 1.0.0+git20160321.17.b864404b5f99-1.1 all
  Simple PubSub (Publish/Subscribe) library in Go

golang-github-cenk-rpc2-dev/stable,stable 0.0~git20160427.0.7ab76d2e88c7-1.1 all
  bi-directional RPC in Go

golang-github-cenkalti-backoff-dev/stable,stable 4.1.3-1 all
  exponential backoff algorithm in Go

golang-github-cenkalti-hub-dev/stable-backports,stable-backports 1.0.2-2~bpo12+1 all
  Simple PubSub library

golang-github-cenkalti-rpc2-dev/stable-backports,stable-backports 1.0.4-1~bpo12+1 all
  Bi-directional RPC (library)

golang-github-cention-sany-utf7-dev/stable,stable 0.0~git20170124.26cad61-2 all
  UTF7 UTF8 transcoder

golang-github-centrifugal-centrifuge-dev/stable,stable 0.15.0+git20210306.f435ba2-2 all
  real-time messaging library with scalability in mind

golang-github-centrifugal-protocol-dev/stable,stable 0.3.6-3 all
  Centrifuge client-server protocol definitions

golang-github-centurylinkcloud-clc-sdk-dev/stable,stable 0.0.2+git20161004.f62483c-3 all
  SDK for Century Link Cloud

golang-github-cespare-xxhash-dev/stable,stable 2.1.1-2 all
  implementation of the 64-bit xxHash algorithm (XXH64)

golang-github-chai2010-gettext-go-dev/stable,stable 0.0~git20191225.6b9f4b1-2 all
  GNU gettext for Go (library)

golang-github-chappjc-logrus-prefix-dev/stable,stable 0.0.0+git.20180227.3a1d648-1 all
  text formatter based on logrus.TextFormatter

golang-github-charmbracelet-bubbles-dev/stable,stable 0.14.0-2 all
  TUI components for Bubble Tea ? (Go library)

golang-github-charmbracelet-bubbletea-dev/stable,stable 0.19.1-3 all
  powerful little TUI framework for Go ?

golang-github-charmbracelet-glamour-dev/stable,stable 0.5.0-2 all
  stylesheet-based markdown rendering for your CLI apps (Go library)

golang-github-charmbracelet-harmonica-dev/stable,stable 0.1.0-2 all
  simple, efficient spring animation library for Go ?

golang-github-charmbracelet-keygen-dev/stable,stable 0.1.2-2 all
  SSH key pair generator (Go library)

golang-github-charmbracelet-lipgloss-dev/stable,stable 0.5.0-1 all
  style definitions for nice terminal layouts ? (Go library)

golang-github-charmbracelet-wish-dev/stable,stable 0.1.1-2 all
  Make SSH apps, just like that! ? (Go library)

golang-github-checkpoint-restore-go-criu-dev/stable,stable 5.3.0-2 all
  CRIU bindings for Golang

golang-github-cheekybits-genny-dev/stable,stable 1.0.0-8 all
  Elegant generics for Go

golang-github-cheekybits-is-dev/stable,stable 0.0~git20150225.0.68e9c06-4 all
  Mini testing helper for Go

golang-github-cheggaaa-pb.v3-dev/stable,stable 3.1.0-1 all
  simple console progress bar for Go

golang-github-chifflier-nfqueue-go-dev/stable,stable 0.0~git20170228.61ca646-2 all
  Go bindings for NFQueue

golang-github-chmduquesne-rollinghash-dev/stable,stable 4.0.0-2 all
  Implementation of some rolling checksums in golang

golang-github-christrenkamp-goxpath-dev/stable,stable 1.0~alpha3+git20170922.c385f95-2 all
  XPath 1.0 implementation written in Go

golang-github-chromedp-cdproto-dev/stable,stable 0.0~git20230109.6b041c6-1 all
  Commands, types, events for Chrome DevTools

golang-github-chromedp-sysutil-dev/stable,stable 1.0.0-3 all
  cross platform system utilities

golang-github-chzyer-readline-dev/stable,stable 1.4.39.g2972be2-3 all
  Readline is a pure go implementation for a GNU-Readline like library

golang-github-cilium-ebpf-dev/stable,stable 0.9.1-1 all
  eBPF Library for Go

golang-github-circonus-labs-circonus-gometrics-dev/stable,stable 2.3.1-4 all
  Golang implementation of metrics reporting for Cirocnus

golang-github-circonus-labs-circonusllhist-dev/stable,stable 0.0~git20191022.ec08cde-1 all
  implementation of Circonus log-linear histograms

golang-github-cjoudrey-gluaurl-dev/stable,stable 0.0~git20161028.31cbb9b-2 all
  url parser and builder module for gopher-lua (library)

golang-github-clbanning-mxj-dev/stable,stable 2.5.7-1 all
  mxj - to/from maps, XML and JSON (Go library)

golang-github-cli-browser-dev/stable,stable 1.1.0-2 all
  helpers to open URLs, files, or readers in a web browser (Go library)

golang-github-cli-go-gh-dev/stable,stable 1.0.0-1 all
  Go module for interacting with gh and the GitHub API from the command line

golang-github-cli-oauth-dev/stable,stable 1.0.1-1 all
  perform OAuth Device flow and Web application flow (Go library)

golang-github-cli-safeexec-dev/stable,stable 1.0.1-1 all
  safer version of exec.LookPath on Windows

golang-github-cli-shurcool-graphql-dev/stable,stable 0.0.2-1 all
  GraphQL client implementation for Go (GitHub CLI fork)

golang-github-client9-reopen-dev/stable,stable 1.0.0-4 all
  freopen functionality for golang's io.Writers (library)

golang-github-cloudflare-cfssl-dev/stable,stable 1.2.0+git20160825.89.7fb22c8-3.1 all
  CloudFlare's PKI and TLS toolkit

golang-github-cloudflare-circl-dev/stable,stable 1.3.1-2 all
  Cloudflare Interoperable Reusable Cryptographic Library (golang)

golang-github-cloudflare-go-metrics-dev/stable,stable 0.0~git20151117.0.6a9aea3-4 all
  Cloudflare's fork of Go port of Coda Hale's Metrics library

golang-github-cloudflare-gokey-dev/stable,stable 0.1.2-1 all
  simple vaultless password manager in Go - dev package

golang-github-cloudflare-gortr-dev/stable,stable 0.14.7-2 all
  Cloudflare's RPKI to router library

golang-github-cloudflare-redoctober-dev/stable,stable 0.0~git20161017.0.78e9720-5 all
  Software-based two-man rule style (development files)

golang-github-cloudflare-sidh-dev/stable,stable 1.0+git20190228.d2f0f90-5 all
  Supersingular Isogeny Diffie-Hellman golang library

golang-github-cloudflare-tableflip-dev/stable,stable 1.2.1~git20200514.4baec98-4 all
  Graceful process restarts in Go (library)

golang-github-cloudfoundry-gosigar-dev/stable,stable 0.0~git20180907.50ddd08-1 all
  golang implementation of the sigar API

golang-github-cloudfoundry-jibber-jabber-dev/stable,stable 0.0~git20151120.bcc4c83-2 all
  Cross Platform locale detection for Golang

golang-github-clusterhq-flocker-go-dev/stable,stable 0.0~git20160209.0.1c0a791-3 all
  Flocker go library

golang-github-cnf-structhash-dev/stable,stable 0.0~git20201127.e1b16c1-1 all
  get hash strings of arbitrary data structures

golang-github-cockroachdb-apd-dev/stable,stable 2.0.1-1 all
  arbitrary-precision decimals for Go

golang-github-cockroachdb-cockroach-go-dev/stable,stable 0.0~git20170808.c806b48-1.1 all
  Packages for go clients.

golang-github-cockroachdb-datadriven-dev/stable,stable 1.0.2-6 all
  extension of Table-Driven Testing (library)

golang-github-codahale-hdrhistogram-dev/stable,stable 0.0~git20161010.3a0bb77-3 all
  implementation of Gil Tene's HDR Histogram

golang-github-codegangsta-negroni-dev/stable,stable 0.1-3 all
  idiomatic HTTP middleware for Golang

golang-github-colinmarc-hdfs-dev/stable,stable 2.3.0-2 all
  Native go client library for HDFS

golang-github-confluentinc-bincover-dev/stable,stable 0.2.0-3 all
  easily measure code coverage of Golang binaries (library)

golang-github-confluentinc-confluent-kafka-go-dev/stable,stable 0.11.6-1 all
  Apache Kafka Golang client by Confluent

golang-github-container-orchestrated-devices-container-device-interface-dev/stable,stable 0.5.2-2 all
  container device interface

golang-github-containerd-btrfs-dev/stable,stable 1.0.0-1 all
  Btrfs bindings for Go

golang-github-containerd-cgroups-dev/stable,stable 1.0.4-1 all
  cgroups package for Go

golang-github-containerd-console-dev/stable,stable 1.0.3-1 all
  Console package for Go

golang-github-containerd-containerd-dev/stable,stable 1.6.20~ds1-1+deb12u1 all
  open and reliable container runtime (development files)

golang-github-containerd-continuity-dev/stable,stable 0.3.0-1 all
  Externally reusable Go packages included with Continuity

golang-github-containerd-errdefs-dev/stable-backports,stable-backports 0.1.0-2~bpo12+1 all
  Common definition and library of errors used by containerd (library)

golang-github-containerd-fifo-dev/stable,stable 1.1.0-1 all
  fifo pkg for Go

golang-github-containerd-go-cni-dev/stable,stable 1.1.7-2 all
  generic CNI library to provide APIs for CNI plugin interactions

golang-github-containerd-go-runc-dev/stable,stable 1.0.0-1 all
  runc bindings for Go

golang-github-containerd-log-dev/stable-backports,stable-backports 0.1.0-2~bpo12+1 all
  Common log interface for containerd repositories and clients (library)

golang-github-containerd-platforms-dev/stable-backports,stable-backports 0.2.1-2~bpo12+1 all
  Go package for handling platform type (library)

golang-github-containerd-stargz-snapshotter-dev/stable,stable 0.12.0-2 all
  Fast container image distribution plugin with lazy pulling (library)

golang-github-containerd-ttrpc-dev/stable,stable 1.1.1-1 all
  GRPC for low-memory environments

golang-github-containerd-typeurl-dev/stable,stable 1.0.2-1 all
  Go package for managing marshaled types to protobuf.Any

golang-github-containernetworking-plugin-dnsname/stable 1.3.1+ds1-2+b6 amd64
  name resolution for containers

golang-github-containernetworking-plugins-dev/stable,stable 1.1.1+ds1-3 all
  standard networking plugins - sources

golang-github-containers-buildah-dev/stable,stable 1.28.2+ds1-3+deb12u1 all
  tool to facilitate building OCI images

golang-github-containers-common/stable,stable 0.50.1+ds1-4 all
  Common files for github.com/containers repositories

golang-github-containers-common-dev/stable,stable 0.50.1+ds1-4 all
  Common files for github.com/containers repositories (library)

golang-github-containers-conmon-dev/stable,stable 2.1.6+ds1-1 all
  OCI container runtime monitor

golang-github-containers-image/stable,stable 5.23.1-4 all
  Configuration files and manpages for github.com/containers repositories

golang-github-containers-image-dev/stable,stable 5.23.1-4 all
  golang library to work with containers' images

golang-github-containers-libtrust-dev/stable-backports,stable-backports 0.0~git20230121.c1716e8-2~bpo12+1 all
  Primitives for identity and authorization (library)

golang-github-containers-ocicrypt-dev/stable,stable 1.0.3-1 all
  Encryption libraries for Encrypted OCI Container images (library)

golang-github-containers-psgo-dev/stable,stable 1.7.1+ds1-1 all
  ps(1) AIX-format compatible Golang library

golang-github-containers-storage-dev/stable,stable 1.43.0+ds1-8 all
  Go library for handling how containers are stored on disk

golang-github-coredhcp-coredhcp-dev/stable,stable 0.0.0+git.20220602.a2552c5-2 all
  multithreaded, modular and extensible DHCP server - library

golang-github-coreos-bbolt-dev/stable,stable 1.3.6-2 all
  low-level key/value database for Go, especially CoreOS's etcd

golang-github-coreos-gexpect-dev/stable,stable 0.1.1-3 all
  library for starting and controlling subprocesses

golang-github-coreos-go-iptables-dev/stable,stable 0.6.0-1 all
  Go bindings for iptables utility

golang-github-coreos-go-json-dev/stable,stable 0.0~git20200220.5ae6071-2 all
  Go's encoding/json library plus Node struct support (library)

golang-github-coreos-go-oidc-dev/stable,stable 2.1.0-2 all
  Go libraries for implementing OIDC clients and servers

golang-github-coreos-go-oidc-v3-dev/stable-backports,stable-backports 3.4.0-2~bpo12+1 all
  Go libraries for implementing OIDC clients and servers (library)

golang-github-coreos-go-semver-dev/stable,stable 0.3.0-1 all
  Go library for semantic versioning

golang-github-coreos-go-systemd-dev/stable,stable 22.3.2-1 all
  Go client bindings for systemd socket activation, journal and D-Bus

golang-github-coreos-ioprogress-dev/stable,stable 0.0~git20151023.0.4637e49-2 all
  progress bars around io.Reader/Writers

golang-github-coreos-pkg-dev/stable,stable 4-3 all
  collection of Go utility packages

golang-github-coreos-vcontext-dev/stable,stable 0.0~git20210903.c22998b-2 all
  Library for validating json and yaml configs in Go (library)

golang-github-corpix-uarand-dev/stable,stable 0.1.1-2 all
  random user-agent generator

golang-github-cosiner-argv-dev/stable,stable 0.1.0-3 all
  Argv allows splitting a command line string into an arguments slice

golang-github-cowsql-go-cowsql-dev/stable-backports,stable-backports 1.22.0-2~bpo12+1 all
  Go bindings for libcowsql

golang-github-cpuguy83-go-md2man-v2-dev/stable,stable 2.0.2+ds1-1 all
  utility to create manpages from markdown (source)

golang-github-creack-goselect-dev/stable,stable 0.1.2-3 all
  select(2) implementation in Go (library)

golang-github-creack-pty-dev/stable,stable 1.1.18-1 all
  PTY interface for Golang

golang-github-creasty-defaults-dev/stable,stable 1.6.0-3 all
  Initialize structs with default values (library)

golang-github-creekorful-mvnparser-dev/stable,stable 1.4.0-1 all
  Go parser for maven (POM) file

golang-github-cretz-bine-dev/stable,stable 0.2.0+ds-2 all
  Go library for accessing and embedding Tor clients and servers

golang-github-crewjam-httperr-dev/stable,stable 0.2.0-3 all
  golang error object that speaks HTTP

golang-github-cristalhq-hedgedhttp-dev/stable,stable 0.7.2-2 all
  Hedged HTTP client which helps to reduce tail latency at scale (library)

golang-github-crossdock-crossdock-go-dev/stable,stable 0.0~git20160816.049aabb-3 all
  Go client for Crossdock

golang-github-crowdsecurity-crowdsec-dev/stable,stable 1.4.6-6~deb12u1 all
  lightweight and collaborative security engine - library

golang-github-crowdsecurity-dlog-dev/stable,stable 0.0.1-2 all
  Go library to parse the Docker Logs stream (library)

golang-github-crowdsecurity-go-cs-bouncer-dev/stable,stable 0.0.2-2 all
  Go library to create CrowdSec bouncers

golang-github-crowdsecurity-grokky-dev/stable,stable 0.1.0-2 all
  pure Golang Grok-like library

golang-github-crowdsecurity-machineid-dev/stable,stable 1.0.3-1 all
  get the unique machine identifier of any host (library)

golang-github-cryptix-wav-dev/stable,stable 0.0~git20180415.8bdace6-2 all
  Golang .wav reader and writer (development file)

golang-github-ctdk-chefcrypto-dev/stable,stable 0.2.0-1.1 all
  Go cryptographic routines to interact with chef servers

golang-github-ctdk-go-trie-dev/stable,stable 0.0~git20161027.0.6443fbc-1.1 all
  Trie implementation based on a minimal automaton for Go

golang-github-ctdk-goiardi-dev/stable,stable 0.11.10-1 all
  Golang library to interact with a chef server

golang-github-cupcake-rdb-dev/stable,stable 0.0~git20161107.0.43ba341-12 all
  Redis RDB parser for Go

golang-github-cyberdelia-go-metrics-graphite-dev/stable,stable 0.0~git20151204.0.7e54b5c-4 all
  Graphite client for the go-metrics

golang-github-cyberdelia-heroku-go-dev/stable,stable 5.5.0-1 all
  Heroku Platform API Go Client

golang-github-cyphar-filepath-securejoin-dev/stable,stable 0.2.3-1 all
  filepath.SecureJoin implementation

golang-github-cznic-b-dev/stable,stable 0.0~git20151027.0.01b13d7-2 all
  B+tree implementation

golang-github-cznic-bufs-dev/stable,stable 0.0~git20140818.0.3dcccbd-2 all
  simple buffer cache

golang-github-cznic-fileutil-dev/stable,stable 0.0~git20200808.2079183-4 all
  Golang file utility functions

golang-github-cznic-lldb-dev/stable,stable 1.0.1-1.1 all
  low level database engine

golang-github-cznic-mathutil-dev/stable,stable 0.0~git20201220.c6aa83b-2 all
  extensions to the Golang "rand" and "math" packages

golang-github-cznic-ql-dev/stable,stable 1.0.6-1.1 all
  pure Go embedded SQL database

golang-github-cznic-sortutil-dev/stable,stable 0.0~git20150617.0.4c73428-3 all
  extensions to standard Go "sort" package

golang-github-cznic-strutil-dev/stable,stable 0.0~git20150430.0.1eb03e3-3 all
  extensions to standard Go "strings" package

golang-github-cznic-zappy-dev/stable,stable 0.0~git20160305.0.4f5e6ef-3 all
  zappy block-based compression format

golang-github-d-tux-go-fstab-dev/stable,stable 0.0.0+git.2014.12.04.eb4090f265-3 all
  simple fstab parser

golang-github-d2g-dhcp4-dev/stable,stable 0.0~git20150413-4 all
  DHCP packet creation library for Go

golang-github-d2g-dhcp4client-dev/stable,stable 1.0.0-2 all
  DHCP client written in Go

golang-github-d2r2-go-bsbmp-dev/stable,stable 0.0~git20190515.3b4b3ae-3 all
  interact with Bosch Sensortec BMP180/BMP280/BME280/BMP388 sensors (library)

golang-github-d2r2-go-i2c-dev/stable,stable 0.0~git20191123.73a8a79-3 all
  I2C-bus interaction of peripheral sensors with single-board computers (library)

golang-github-d2r2-go-logger-dev/stable,stable 0.0~git20210606.60e9d12-4 all
  Go logger functionality with package-level logging separation (library)

golang-github-d2r2-go-sht3x-dev/stable,stable 0.0~git20210607.074abc2-1 all
  interact with Sensirion SHT3x humidity and temperature sensor family (library)

golang-github-d4l3k-messagediff-dev/stable,stable 1.2.1-2 all
  library for doing diffs of arbitrary Golang structs

golang-github-daaku-go.zipexe-dev/stable,stable 1.0.1-2 all
  zipexe attempts to open an executable binary file as a zip file

golang-github-danverbraganza-varcaser-dev/stable,stable 0.0~git20190207.e3fb03e-2 all
  Go lib to transform between common variable casing conventions

golang-github-danwakefield-fnmatch-dev/stable,stable 0.0~git20160403.cbb64ac-3 all
  Updated clone of kballard’s fnmatch(3) implementation for Go

golang-github-data-dog-go-sqlmock-dev/stable,stable 1.4.1-1 all
  Sql mock driver for golang to test database interactions

golang-github-datadog-datadog-go-dev/stable,stable 2.1.0-3 all
  Go client library for datadog

golang-github-datadog-zstd-dev/stable,stable 1.4.5+patch1-1 all
  Zstd wrapper for Go

golang-github-dataence-porter2-dev/stable,stable 0.0~git20150829.56e4718-5 all
  native Go high-performance Porter2 stemmer for English

golang-github-dave-jennifer-dev/stable,stable 1.4.1-2 all
  code generator for Go (library)

golang-github-davecgh-go-spew-dev/stable,stable 1.1.1-3 all
  Implements a deep pretty printer for Go data structures to aid in debugging

golang-github-davecgh-go-xdr-dev/stable,stable 0.0~git20161123.e6a2ba0-2 all
  Pure Go XDR standard (RFC 4506) implementation

golang-github-daviddengcn-go-colortext-dev/stable,stable 0.0~git20150719.0.3b18c85-2 all
  change the color of console text in Go

golang-github-dchest-blake2b-dev/stable,stable 0.0~git20170307.0.060063-1-1.1 all
  Go implementation of BLAKE2 (b) cryptographic hash function

golang-github-dchest-cssmin-dev/stable,stable 0.0~git20151210.0.fb8d9b4-4.1 all
  Go package to minify CSS

golang-github-dchest-safefile-dev/stable,stable 0.0~git20151022.0.855e8d9-1.1 all
  Implements safe "atomic" saving of files for Go

golang-github-dchest-uniuri-dev/stable,stable 0.0~git20200228.7aecb25-1 all
  generator of random strings to identify unique objects

golang-github-dcso-bloom-cli/stable 0.2.4-3+b5 amd64
  highly efficient bloom filter implementation for Go, CLI tool

golang-github-dcso-bloom-dev/stable,stable 0.2.4-3 all
  highly efficient bloom filter implementation for Go

golang-github-dcso-fluxline-dev/stable,stable 0.0~git20200907.78686e5-3 all
  Golang library to prepare sets of metrics in InfluxDB's Line Protocol format

golang-github-ddevault-go-libvterm-dev/stable,stable 0.0~git20190526.b7d861d-3 all
  aerc fork of go-libvterm (library)

golang-github-deanthompson-ginpprof-dev/stable,stable 0.0~git20201112.007b1e5-1 all
  wrapper for golang web framework gin to use net/http/pprof

golang-github-deckarep-golang-set-dev/stable,stable 1.5-2 all
  simple set type for the Go language

golang-github-denisenkom-go-mssqldb-dev/stable,stable 0.0~git20170717.0.8fccfc8-7 all
  Microsoft SQL server driver written in go language

golang-github-dennwc-btrfs-dev/stable,stable 0.0~git20221026.3097362-1 all
  btrfs library for Go

golang-github-dennwc-ioctl-dev/stable,stable 1.0.0+git20181021.0178042-2 all
  ioctl for Go (library)

golang-github-dennwc-varint-dev/stable,stable 1.0.0-2 all
  fast varint library for Go (library)

golang-github-denverdino-aliyungo-dev/stable,stable 0.0~git20180921.13fa8aa-2 all
  Go SDK for Aliyun (Alibaba Cloud)

golang-github-derekparker-trie-dev/stable,stable 0.0~git20200317.1fdf38b-2 all
  Data structure and algorithms for prefix/fuzzy string searching

golang-github-dghubble-sling-dev/stable,stable 1.3.0-1 all
  HTTP client library for creating and sending API requests

golang-github-dgraph-io-badger-dev/stable,stable 2.2007.2-3 all
  Fast key-value DB in Go - development files for embedding.

golang-github-dgraph-io-ristretto-dev/stable,stable 0.0.3-2 all
  high performance memory-bound Go cache

golang-github-dgrijalva-jwt-go-dev/stable,stable 3.2.0-4 all
  Golang implementation of JSON Web Tokens (JWT)

golang-github-dgryski-go-bits-dev/stable,stable 0.0~git20180112.bd8a69a-2 all
  amd64 optimized bit operations

golang-github-dgryski-go-bitstream-dev/stable,stable 0.0~git20180412.3522498-3 all
  read and write bits from io.Reader and io.Writer

golang-github-dgryski-go-farm-dev/stable,stable 0.0~git20171119.ac7624ea8da3-1.1 all
  pure-Go FarmHash implementation

golang-github-dgryski-go-metro-dev/stable,stable 0.0~git20200812.85c65e2-2 all
  metrohash library in golang

golang-github-dgryski-go-minhash-dev/stable,stable 0.0~git20190315.ad340ca-2 all
  BottomK minwise hashing for streaming set similarity

golang-github-dgryski-go-sip13-dev/stable,stable 0.0~git20200911.62edffc-2 all
  library for siphash 1-3

golang-github-digitalocean-go-libvirt-dev/stable,stable 0.0~git20221122.e3cbf86-1 all
  Pure Go interface for interacting with libvirt (library)

golang-github-digitalocean-go-qemu-dev/stable,stable 0.0~git20221209.f035778-2 all
  Go packages to interact with QEMU using the QEMU Machine Protocol

golang-github-digitalocean-go-smbios-dev/stable,stable 0.0~git20180907.390a4f4-2 all
  Detection and access to SMBIOS and DMI data and structures (library)

golang-github-digitalocean-godo-dev/stable,stable 1.37.0-2 all
  DigitalOcean API V2 client library for Google Go

golang-github-dimchansky-utfbom-dev/stable,stable 1.1.1-1 all
  Detection of the BOM and removing as necessary

golang-github-disintegration-gift-dev/stable,stable 1.2.1-3 all
  Go Image Filtering Toolkit

golang-github-disintegration-imaging-dev/stable,stable 1.6.2-2 all
  Simple Go image processing package

golang-github-disiqueira-gotree-dev/stable,stable 3.0.2-2 all
  Tree printer module written in GoLang (library)

golang-github-disposaboy-jsonconfigreader-dev/stable,stable 0.0~git20171218.5ea4d0d-2 all
  proxy for golang's io.Reader allowing you to use json as a config format

golang-github-djherbis-atime-dev/stable,stable 1.1.0-2 all
  file access times (atime) for #golang

golang-github-djherbis-times-dev/stable,stable 1.5.0-1 all
  file times (atime, mtime, ctime, btime)

golang-github-dkolbly-wl-dev/stable,stable 0.0~git20180220.b06f57e-2 all
  Golang wayland protocol implementation. (library)

golang-github-dlclark-regexp2-dev/stable,stable 1.4.0+ds1-1 all
  Regex engine for Go based on the .NET engine

golang-github-dlintw-goconf-dev/stable,stable 0.0~git20120228.dcc0709-2 all
  Configuration file reader for Go (library)

golang-github-dnaeon-go-vcr-dev/stable,stable 1.2.0-1 all
  Record and replay your HTTP interactions for tests

golang-github-dnstap-golang-dnstap-cli/stable 0.4.0-4+b4 amd64
  dnstap command line tool

golang-github-dnstap-golang-dnstap-dev/stable,stable 0.4.0-4 all
  flexible, structured event replication format for DNS servers

golang-github-docker-distribution-dev/stable,stable 2.8.2+ds1-1 all
  Docker toolset to pack, ship, store, and deliver content (source)

golang-github-docker-docker-credential-helpers-dev/stable,stable 0.6.4+ds1-1 all
  native stores to safeguard Docker credentials - library

golang-github-docker-docker-dev/stable,stable 20.10.24+dfsg1-1+deb12u1 all
  reusable Go packages included with Docker

golang-github-docker-go-connections-dev/stable,stable 0.4.0-4 all
  Golang utility package to work with network connections

golang-github-docker-go-dev/stable,stable 0.0~git20160303.0.d30aec9-3.1 all
  Go packages with small patches autogenerated (used for canonical/json)

golang-github-docker-go-events-dev/stable,stable 0.0~git20190806.e31b211-4 all
  Composable event distribution for Go

golang-github-docker-go-metrics-dev/stable,stable 0.0.1-2 all
  Package for metrics collection in Docker projects

golang-github-docker-go-units-dev/stable,stable 0.4.0-4 all
  parse and print size and time units in human-readable format

golang-github-docker-leadership-dev/stable,stable 0.1.0-1.1 all
  distributed leader election using docker/libkv

golang-github-docker-libkv-dev/stable,stable 0.2.1-3 all
  Key/Value store abstraction library

golang-github-docker-libtrust-dev/stable,stable 0.0~git20150526.0.9cbd2a1-3.1 all
  Primitives for identity and authorization

golang-github-docker-notary-dev/stable,stable 0.7.0+ds1-2 all
  library for running and interacting with trusted collections

golang-github-docker-spdystream-dev/stable,stable 0.2.0-1 all
  multiplexed stream library using spdy

golang-github-docopt-docopt-go-dev/stable,stable 0.6.2+git20180111.ee0de3b-1 all
  Implementation of docopt in the Go programming language

golang-github-donovanhide-eventsource-dev/stable,stable 0.0~git20210830.c590279-2 all
  Server Side Events client and server for Go (library)

golang-github-dop251-goja-dev/stable,stable 0.0~git20170430.0.d382686-2 all
  ECMAScript 5.1(+) implementation written in Go

golang-github-dop251-scsu-dev/stable,stable 0.0~git20220106.84ac880-3 all
  Go Implementation of Standard Compression Scheme for Unicode (library)

golang-github-dpapathanasiou-go-recaptcha-dev/stable,stable 0.0~git20190121.be5090b-2 all
  Recaptcha form submissions in Go (library)

golang-github-dpotapov-go-spnego-dev/stable,stable 0.0~git20190506.c2c6091-2 all
  Golang library to make HTTP calls with Kerberos authentication

golang-github-dreamitgetit-statuscake-dev/stable,stable 0.0~git20220607.de57c59-1 all
  Go client for statuscake.com

golang-github-drone-envsubst-dev/stable,stable 1.0.3-3 all
  Go library for performing Bash-style parameter expansion

golang-github-dropbox-dropbox-sdk-go-unofficial-dev/stable,stable 6.0.5-1 all
  Unofficial Go SDK for integrating with the Dropbox API v2

golang-github-dsnet-golib-dev/stable,stable 0.0~git20171103.1ea1667-1.1 all
  Collection of mostly unrelated helper Go packages

golang-github-dtylman-scp-dev/stable,stable 0.0~git20181017.f3000a3-3 all
  A simple go scp client (library)

golang-github-duo-labs-webauthn-dev/stable,stable 0.0~git20220815.00c9fb5-1 all
  WebAuthn (FIDO2) server library

golang-github-dustin-go-humanize-dev/stable,stable 1.0.0-3 all
  format units to human friendly sizes

golang-github-dustinkirkland-golang-petname-dev/stable,stable 2.11~git20191129.8e5a1ed-2 all
  golang library for generating pronouncable, memorable, pet names

golang-github-dvsekhvalnov-jose2go-dev/stable,stable 1.5-1 all
  Go implementation of Javascript Object Signing and Encryption

golang-github-dylanmei-iso8601-dev/stable,stable 0.1.0-7 all
  pure Go ISO8601 parser and formatter

golang-github-dylanmei-winrmtest-dev/stable,stable 0.0~git20151226.0256178-5 all
  testing addon for golang-github-masterzen-winrm

golang-github-eapache-go-xerial-snappy-dev/stable,stable 0.0~git20180814.776d571-1 all
  Xerial-compatible Snappy framing support for Go

golang-github-eclipse-paho.mqtt.golang-dev/stable,stable 1.1.1-1.1 all
  Go package implementing MQTT client library by Eclipse Paho

golang-github-edsrzf-mmap-go-dev/stable,stable 1.1.0-1 all
  portable mmap package for Go

golang-github-eiannone-keyboard-dev/stable,stable 0.0~git20220611.0d22619-2 all
  listen for keystrokes from the keyboard (library)

golang-github-eknkc-amber-dev/stable,stable 0.0~git20171010.cdade1c-2 all
  Elegant HTML templating engine for Go, inspired from HAML and Jade (Go library)

golang-github-ekzhu-minhash-lsh-dev/stable,stable 1.0-2 all
  Minhash LSH in Golang

golang-github-elazarl-go-bindata-assetfs-dev/stable,stable 1.0.0-1.1 all
  Go library to serve embedded binary files with net/http

golang-github-elazarl-goproxy-dev/stable,stable 1.1-1 all
  HTTP proxy library for Go

golang-github-elisescu-pty-dev/stable,stable 1.0.2-3 all
  Golang package for using Unix pseudo-terminals

golang-github-elithrar-simple-scrypt-dev/stable,stable 1.3.0-2 all
  various purpose password hashes library using the scrypt KDF

golang-github-ema-qdisc-dev/stable,stable 0.0~git20200603.62d0308-2 all
  get queuing discipline information via netlink (library)

golang-github-emersion-go-imap-dev/stable,stable 1.2.0-2 all
  Go IMAP library for clients and servers

golang-github-emersion-go-imap-idle-dev/stable,stable 0.0~git20201224.6f42b90-2 all
  IDLE extension for go-imap (library)

golang-github-emersion-go-imap-sortthread-dev/stable,stable 1.2.0-2 all
  SORT and THREAD extensions for go-imap (library)

golang-github-emersion-go-maildir-dev/stable,stable 0.2.0-2 all
  Maildir library for Go (library)

golang-github-emersion-go-mbox-dev/stable,stable 1.0.3-2 all
  Go library to parse and write emails in the mbox format

golang-github-emersion-go-message-dev/stable,stable 0.15.0-1 all
  Streaming Go library for the Internet Message Format and mail

golang-github-emersion-go-milter-dev/stable,stable 0.3.3-2 all
  Go library to write mail filters

golang-github-emersion-go-msgauth-dev/stable,stable 0.6.6-2 all
  Go library and tools for DKIM, DMARC and Authentication-Results (library)

golang-github-emersion-go-pgpmail-dev/stable,stable 0.2.0-2 all
  PGP-encrypted email library for Go (library)

golang-github-emersion-go-sasl-dev/stable,stable 0.0~git20191210.430746e-3 all
  SASL library written in Go

golang-github-emersion-go-smtp-dev/stable,stable 0.12.1-1 all
  ESMTP client & server library written in Go (library)

golang-github-emersion-go-textwrapper-dev/stable,stable 0.0~git20160606.d0e65e5-2 all
  Go writer that wraps long text lines to a specified length

golang-github-emicklei-go-restful-dev/stable,stable 3.10.2-1 all
  build REST-style Web Services using Google Go

golang-github-emicklei-go-restful-swagger12-dev/stable,stable 1.0.1-3 all
  Swagger 1.2 extension to the go-restful package

golang-github-emirpasic-gods-dev/stable,stable 1.12.0-2 all
  Implementation of various data structures and algorithms in Go

golang-github-enescakir-emoji-dev/stable,stable 1.0.0-3 all
  minimalistic emoji package for Go

golang-github-ensighten-udnssdk-dev/stable,stable 1.3.4-2 all
  ultradns SDK for golang

golang-github-erikdubbelboer-gspt-dev/stable,stable 0.0~git20210805.ce36a51-1 all
  setproctitle for Go

golang-github-erikstmartin-go-testdb-dev/stable,stable 0.0~git20160219.0.8d10e4a-1.1 all
  Framework for stubbing responses from go's driver.Driver interface

golang-github-etcd-io-gofail/stable 0.0.0+git.2022.09.25.d0d2a96a6e-4 amd64
  implementation of failpoint

golang-github-etcd-io-gofail-dev/stable,stable 0.0.0+git.2022.09.25.d0d2a96a6e-4 all
  implementation of failpoint - (library)

golang-github-euank-go-kmsg-parser-dev/stable,stable 2.0.1-2 all
  simpler parser for the /dev/kmsg format (library)

golang-github-evanphx-json-patch-dev/stable,stable 5.2.0-2 all
  Go library to apply RFC6902 patches and create and apply RFC7386 patches

golang-github-evanw-esbuild-dev/stable,stable 0.17.0-1 all
  extremely fast JavaScript bundler and minifier (library)

golang-github-evilsocket-ftrace-dev/stable,stable 1.2.0-2.1 all
  trace Linux syscalls using the FTRACE kernel framework

golang-github-evilsocket-islazy-dev/stable,stable 1.10.6-4 all
  Set of opinionated packages, objects, helpers and functions

golang-github-evilsocket-recording-dev/stable,stable 0.0~git20190408.3ce1dcf-2 all
  Allows reading and writing bettercap's session recordings

golang-github-expediadotcom-haystack-client-go-dev/stable,stable 0.2.3-2 all
  Haystack bindings for OpenTracing API in Go (library)

golang-github-exponent-io-jsonpath-dev/stable,stable 0.0~git20151013.0.d6023ce-1.1 all
  Extension for Go's json.Decoder enabling navigation of a stream of tokens

golang-github-facebook-ent-dev/stable,stable 0.5.4-3 all
  entity framework for Go

golang-github-facebookgo-atomicfile-dev/stable,stable 0.0~git20151019.2de1f20-2 all
  Provides an atomically written/replaced file

golang-github-facebookgo-clock-dev/stable,stable 0.0~git20150410.0.600d898-7 all
  Clock is a small Go library for mocking time

golang-github-facebookgo-ensure-dev/stable,stable 0.0~git20160127.0.b4ab57d-6 all
  Provides utilities for testing to ensure conditions are met

golang-github-facebookgo-freeport-dev/stable,stable 0.0~git20150612.0.d4adf43-7 all
  Go library to find a free TCP port for binding

golang-github-facebookgo-grace-dev/stable,stable 0.0~git20170218.0.4afe952-8 all
  Graceful restart & zero downtime deploy for Go servers

golang-github-facebookgo-httpdown-dev/stable,stable 0.0~git20160323.0.a3b1354-8 all
  Gracefully shut down daemon without terminating connections

golang-github-facebookgo-inject-dev/stable,stable 0.0~git20180706.f23751c-4 all
  reflect based injector

golang-github-facebookgo-pidfile-dev/stable,stable 0.0~git20150612.f242e29-3 all
  Package pidfile manages pid files.

golang-github-facebookgo-stack-dev/stable,stable 0.0~git20160209.0.7517733-10 all
  Stack provides utilities to capture and handle stack traces

golang-github-facebookgo-stats-dev/stable,stable 0.0~git20151006.0.1b76add-7 all
  defines a lightweight interface for collecting statistics

golang-github-facebookgo-structtag-dev/stable,stable 0.0~git20150214.217e25f-4 all
  provides parsing of the defacto struct tag style

golang-github-facebookgo-subset-dev/stable,stable 0.0~git20150612.0.8dac2c3-7 all
  Check if a value is a subset of another

golang-github-facette-natsort-dev/stable,stable 0.0~git20181210.2cd4dd1-4 all
  natural strings sorting in Go

golang-github-farsightsec-go-nmsg-dev/stable,stable 0.2.0-5 all
  Go implementation of the nmsg network message encapsulation library

golang-github-farsightsec-golang-framestream-dev/stable,stable 0.3.0+ds-2 all
  Frame Streams implementation in Go

golang-github-fatih-color-dev/stable,stable 1.7.0-1 all
  console colors for Go

golang-github-fatih-set-dev/stable,stable 0.2.1-2 all
  Set data structure for Go (library)

golang-github-fatih-structs-dev/stable,stable 1.0.0-1.1 all
  Utilities for Go structs

golang-github-felixge-fgprof-dev/stable,stable 0.9.2-1 all
  sampling Go profiler for analyzing On-CPU and Off-CPU

golang-github-felixge-httpsnoop-dev/stable-backports,stable-backports 1.0.3-3~bpo12+1 all
  capture http related metrics from http.Handlers (library)

golang-github-fernet-fernet-go-dev/stable,stable 0.0~git20180830.9eac43b-2 all
  Go library for generates/verifies HMAC-based authentication tokens

golang-github-fhs-go-netrc-dev/stable,stable 1.0.0-3 all
  netrc file parser for Go programming language

golang-github-fhs-gompd-dev/stable,stable 2.3.0-1 all
  MPD client library

golang-github-flosch-pongo2.v4-dev/stable,stable 4.0.2-3 all
  Django-syntax like template-engine for Go (library)

golang-github-flowstack-go-jsonschema-dev/stable,stable 0.1.2-1 all
  Go JSON Schema parser and validator (library)

golang-github-fluent-fluent-logger-golang-dev/stable,stable 1.9.0-1 all
  Go structured logger for Fluentd

golang-github-fluffle-goirc-dev/stable,stable 1.1.1+ds-2 all
  Event-based stateful IRC client framework for Go.

golang-github-flynn-json5-dev/stable,stable 0.0~git20160717.7620272-2 all
  Go JSON5 decoder package based on encoding/json

golang-github-flynn-noise-dev/stable,stable 1.0.0-2 all
  Go implementation of the Noise Protocol Framework (library)

golang-github-flytam-filenamify-dev/stable,stable 1.1.1-2 all
  Convert a string to a valid safe filename (library)

golang-github-fogleman-gg-dev/stable,stable 1.3.0-3 all
  Go Graphics - 2D rendering in Go with a simple API

golang-github-fortytw2-leaktest-dev/stable,stable 1.3.0-1.1 all
  Goroutine Leak Detector

golang-github-francoispqt-gojay-dev/stable,stable 1.2.13-5 all
  JSON encoder/decoder golang library with powerful stream API

golang-github-franela-goblin-dev/stable,stable 0.0.1+git20160123.62.889391d-1.1 all
  minimal and beautiful Go testing framework

golang-github-franela-goreq-dev/stable,stable 0.0~git20160121.0.3ddeded-2.1 all
  minimal and simple request library for Go language

golang-github-frankban-quicktest-dev/stable,stable 1.14.4-1 all
  quick helpers for testing Go applications

golang-github-fsnotify-fsnotify-dev/stable,stable 1.6.0-2 all
  File system notifications for Go

golang-github-fsouza-go-dockerclient-dev/stable,stable 1.8.1-1 all
  Docker client library in Go

golang-github-fullsailor-pkcs7-dev/stable,stable 0.0~git20210826.33d0574-2 all
  Implements a subset of PKCS#7/Crytpographic Message Syntax

golang-github-fvbommel-sortorder-dev/stable,stable 1.0.2-3 all
  sort orders and comparison functions

golang-github-fxamacker-cbor-dev/stable,stable 2.4.0-1 all
  CBOR codec implementing RFCs 7049 & 8949 (library)

golang-github-fzambia-eagle-dev/stable,stable 0.0.2-2 all
  aggregate Prometheus metrics over time interval

golang-github-fzambia-sentinel-dev/stable,stable 1.0.0-2 all
  Redis Sentinel support for redigo library

golang-github-gabriel-vasile-mimetype-dev/stable,stable 1.4.1+dfsg1-2 all
  fast Go library for detecting MIME types and extensions based on magic numbers

golang-github-garyburd-redigo-dev/stable,stable 0.0~git20150901.0.d8dbe4d-2.1 all
  Go client for Redis

golang-github-gatherstars-com-jwz-dev/stable,stable 1.3.0-3 all
  Go implementation of the JWZ email threading algorithm (library)

golang-github-gcla-deep-dev/stable,stable 1.0.2-2 all
  Golang deep variable equality test that returns human-readable differences

golang-github-gcla-gowid-dev/stable,stable 1.4.0-1 all
  Compositional widgets for terminal user interfaces, inspired by urwid

golang-github-gdamore-encoding-dev/stable,stable 1.0.0-3 all
  Various character map encodings missing from golang.org/x/net/encoding

golang-github-gdamore-tcell-dev/stable,stable 1.3.0-3 all
  cell based view for text terminals

golang-github-gdamore-tcell.v2-dev/stable,stable 2.5.4-1 all
  cell based view for text terminals

golang-github-gedex-inflector-dev/stable,stable 0.0~git20170307.0.16278e9-1.1 all
  Go library that pluralizes and singularizes English nouns

golang-github-geertjohan-go.incremental-dev/stable,stable 1.0.0-2 all
  Go package providing type- and concurrency-safe incremental counters

golang-github-geertjohan-go.rice-dev/stable,stable 1.0.2-1 all
  Go package for embedding web resources into Go executables

golang-github-geoffgarside-ber-dev/stable,stable 1.1.0-2 all
  Fork of golang pkg `encoding/asn1` to support the Basic Encoding Rules (library)

golang-github-getkin-kin-openapi-dev/stable,stable 0.110.0-1 all
  OpenAPI 3.0 implementation for Go

golang-github-getlantern-context-dev/stable,stable 0.0~git20190109.c447772-1.1 all
  goroutine-based context state

golang-github-getlantern-hex-dev/stable,stable 0.0~git20220104.ad7e4b9-1 all
  Configurable hex encoding

golang-github-getlantern-hidden-dev/stable,stable 0.0~git20190325.f02dbb0-3.1 all
  Hide text in text

golang-github-getsentry-raven-go-dev/stable,stable 0.2.0+ds2-1 all
  Go client for the Sentry event/error logging system

golang-github-getsentry-sentry-go-dev/stable,stable 0.11.0-1 all
  Official Sentry SDK for Go (library)

golang-github-ghodss-yaml-dev/stable,stable 1.0.0+git20220118.d8423dc-2 all
  better way to marshal and unmarshal YAML in Golang

golang-github-gigawattio-window-dev/stable,stable 0.0~git20180317.0f5467e-2 all
  Go library to generate a rolling window for a sequence of strings

golang-github-gin-contrib-cors-dev/stable,stable 1.4.0-1 all
  Gin middleware/handler to enable CORS support

golang-github-gin-contrib-gzip-dev/stable,stable 0.0.6-1 all
  Gin middleware to enable GZIP support

golang-github-gin-contrib-sse-dev/stable,stable 0.1.0-2 all
  Server-Sent Events implementation in Go

golang-github-gin-contrib-static-dev/stable,stable 0.0~git20220829.3035101-1 all
  webserver for static files

golang-github-gin-gonic-gin-dev/stable,stable 1.8.1-1 all
  HTTP web framework written in Go

golang-github-git-lfs-git-lfs-dev/stable,stable,stable-security,stable-security 3.3.0-1+deb12u1 all
  Git Large File Support (library)

golang-github-git-lfs-gitobj-dev/stable,stable 2.1.1-1 all
  gitobj reads and writes Git objects

golang-github-git-lfs-go-netrc-dev/stable,stable 0.0~git20210914.f0c862d-1 all
  netrc file parser for Go programming language

golang-github-git-lfs-pktline-dev/stable,stable 0.0~git20210330.06e9096-2 all
  Toolkit for the Git pkt-line format (library)

golang-github-git-lfs-wildmatch-dev/stable,stable 2.0.1-1 all
  Pattern matching language for filepaths compatible with Git

golang-github-glacjay-goini-dev/stable,stable 0.0~git20150730-3 all
  INI file parser library for Go

golang-github-glendc-go-external-ip-dev/stable,stable 0.1.0-2 all
  get your external ip from multiple services (library)

golang-github-gliderlabs-ssh-dev/stable,stable 0.3.3-1 all
  Easy SSH servers in Golang

golang-github-glycerine-go-unsnap-stream-dev/stable,stable 0.0~git20210130.47dfef3-1 all
  library for decoding the snappy streaming format

golang-github-gmazoyer-peeringdb-dev/stable,stable 0.0~git20180219.dd23298-3 all
  PeeringDB API package for Go

golang-github-go-chef-chef-dev/stable,stable 0.0.1+git20161023.60.deb8c38-1.2 all
  Chef-Server API client in golang

golang-github-go-chi-chi-dev/stable,stable 5.0.7-1 all
  lightweight, idiomatic and composable router for building Go HTTP services

golang-github-go-chi-cors-dev/stable,stable 1.2.1-1 all
  CORS net/http middleware for Go

golang-github-go-co-op-gocron-dev/stable,stable 1.18.0-3 all
  easy and fluent Go cron scheduling

golang-github-go-debos-fakemachine-dev/stable 0.0.4-1+b2 amd64
  create and spawn virtual machines (library)

golang-github-go-delve-liner-dev/stable,stable 0.0~git20211124.709274f-2 all
  Purge Go line editor with history

golang-github-go-easygen-easygen-dev/stable,stable 5.1.9-2 all
  Easy to use universal code/text generator -- source

golang-github-go-errors-errors-dev/stable,stable 1.0.1-4 all
  errors with stacktraces for go

golang-github-go-git-go-billy-dev/stable,stable 5.3.1-3 all
  missing interface filesystem abstraction for Go

golang-github-go-git-go-git-dev/stable,stable 5.4.2-3 all
  highly extensible Git implementation in pure Go

golang-github-go-git-go-git-fixtures-dev/stable,stable 4.2.2-2 all
  Several git fixtures to run go-git tests

golang-github-go-ini-ini-dev/stable,stable 1.55.0-1 all
  Go package for control of INI file

golang-github-go-jose-go-jose-dev/stable-backports,stable-backports 4.0.5-1~bpo12+1 all
  Implementation of JOSE standards (JWE, JWS, JWT) in Go (library)

golang-github-go-kit-kit-dev/stable,stable 0.10.0-1 all
  Programming toolkit for microservices

golang-github-go-kit-log-dev/stable,stable 0.2.1-1 all
  minimal and extensible structured logger (Go library)

golang-github-go-ldap-ldap-dev/stable,stable 3.4.4-2 all
  Basic LDAP v3 functionality for the Go programming language

golang-github-go-log-log-dev/stable,stable 0.2.0-2 all
  universal log interface for GO language (library)

golang-github-go-logfmt-logfmt-dev/stable,stable 0.5.0-2 all
  Marshals and unmarshals logfmt messages

golang-github-go-logr-logr-dev/stable,stable 1.2.3-1 all
  simple logging interface for Go (library)

golang-github-go-logr-stdr-dev/stable,stable 1.2.2-3 all
  implements the logr interface from the golang-github-go-logr-logr (lib)

golang-github-go-macaron-bindata-dev/stable,stable 0.0~git20161222.0.85786f5-7 all
  in-memory static and template files for Macaron

golang-github-go-macaron-inject-dev/stable,stable 0.0~git20160627.0.d8a0b86-4 all
  utilities for mapping and injecting dependencies

golang-github-go-macaron-session-dev/stable,stable 0.0~git20151014.0.66031fc-2 all
  session management middleware for Macaron

golang-github-go-macaron-toolbox-dev/stable,stable 0.0~git20170220.0.6766b8f-7 all
  health check, pprof, profile and statistic services for Macaron

golang-github-go-macaroon-bakery-macaroon-bakery-dev/stable,stable 3.0.1-1 all
  High level operations for building systems with macaroons (library)

golang-github-go-macaroon-bakery-macaroonpb-dev/stable,stable 1.0.0-2 all
  Protobuf encoding used by macaroon-bakery (library)

golang-github-go-openapi-analysis-dev/stable,stable 0.21.2-1 all
  OpenAPI Specification object model analyser

golang-github-go-openapi-errors-dev/stable,stable 0.20.2-1 all
  common error handling code for OpenAPI

golang-github-go-openapi-inflect-dev/stable,stable 0.19.0-3 all
  golang library providing functions applying grammar rules to English words

golang-github-go-openapi-jsonpointer-dev/stable,stable 1:0.19.5-4 all
  fork of gojsonpointer with support for structs (Go library)

golang-github-go-openapi-jsonreference-dev/stable,stable 1:0.19.6-2 all
  implementation of gojsonreference with struct support

golang-github-go-openapi-loads-dev/stable,stable 0.21.1-2 all
  OpenAPI Specification object model

golang-github-go-openapi-runtime-dev/stable,stable 0.23.3-1 all
  OpenAPI runtime interfaces

golang-github-go-openapi-spec-dev/stable,stable 1:0.20.4-2 all
  OpenAPI specification object model

golang-github-go-openapi-strfmt-dev/stable,stable 0.21.2-1 all
  OpenAPI string formatting library

golang-github-go-openapi-swag-dev/stable,stable 1:0.21.1-1 all
  goodie bag in use in the go-openapi projects

golang-github-go-openapi-validate-dev/stable,stable 0.21.0-1 all
  OpenAPI toolkit validation helpers

golang-github-go-ozzo-ozzo-validation.v4-dev/stable,stable 4.3.0-2 all
  idiomatic Go (golang) validation package.

golang-github-go-ping-ping-dev/stable,stable 1.1.0-1 all
  simple but powerful ICMP echo (ping) library for Go

golang-github-go-piv-piv-go-dev/stable,stable 1.8.0-3 all
  Keys and certificates for YubiKeys, written in Go (library)

golang-github-go-playground-assert-v2-dev/stable,stable 2.0.1-3 all
  basic assertion library for Go

golang-github-go-playground-locales-dev/stable,stable 0.14.0-3 all
  set of locales generated from the CLDR Project

golang-github-go-playground-universal-translator-dev/stable,stable 0.17.0-2 all
  translator for Go using CLDR data and pluralization rules

golang-github-go-playground-validator-v10-dev/stable,stable 10.4.1-4 all
  Go library for struct and field validation

golang-github-go-restruct-restruct-dev/stable,stable 1.2.0-alpha-1 all
  Rich binary (de)serialization library for Golang (library)

golang-github-go-resty-resty-dev/stable,stable 2.6.0-1 all
  Simple HTTP and REST client library for Go

golang-github-go-sourcemap-sourcemap-dev/stable,stable 2.1.3+git20201028.eed1c20-4 all
  source maps consumer for Golang

golang-github-go-sql-driver-mysql-dev/stable,stable 1.5.0-2 all
  MySQL-Driver for Go's database/sql package

golang-github-go-stack-stack-dev/stable,stable 1.8.0-1 all
  capture, manipulate, and format call stacks

golang-github-go-test-deep-dev/stable,stable 1.0.8-1 all
  Golang deep variable equality test that returns human-readable differences

golang-github-go-xorm-builder-dev/stable,stable 0.3.3-3.1 all
  SQL builder for XORM written in Go

golang-github-go-xorm-core-dev/stable,stable 0.6.3-1 all
  lightweight wrapper of database/sql

golang-github-gobuffalo-envy-dev/stable,stable 1.6.4-2 all
  simplify working with ENV variables

golang-github-gobuffalo-flect-dev/stable,stable 0.3.0-1 all
  Inflection engine for Golang

golang-github-goburrow-modbus-dev/stable,stable 0.1.0-3 all
  fault-tolerant implementation of modbus protocol

golang-github-goburrow-serial-dev/stable,stable 0.1.0-2 all
  serial library for modbus written in Go

golang-github-gobwas-glob-dev/stable,stable 0.2.3+git20180208.19c076c-2 all
  Go glob pattern library

golang-github-gobwas-httphead-dev/stable,stable 0.1.0-2 all
  Tiny HTTP header value parsing lib (library)

golang-github-gocarina-gocsv-dev/stable,stable 0.0~git20180113.45cbb9c-1.1 all
  easy CSV serialization and deserialization golang package

golang-github-goccmack-gocc-dev/stable,stable 0.0~git20211213.7ea6993-1 all
  Go lexer and parser generator (library)

golang-github-goccy-go-yaml-dev/stable,stable 1.9.5-2 all
  yet another golang library for YAML support

golang-github-gocql-gocql-dev/stable,stable 1.3.2-1 all
  fast and robust Cassandra client for Go

golang-github-gofrs-flock-dev/stable,stable 0.8.1-1 all
  thread-safe file locking library in Golang

golang-github-gofrs-uuid-dev/stable,stable 4.3.1-1 all
  UUID library for Golang

golang-github-gogetdata-ggd-utils-dev/stable,stable 1.0.0+ds-1 all
  library for use in ggd

golang-github-gogits-chardet-dev/stable,stable 0.0~git20150115.0.2404f77+dfsg-5 all
  Charset detector library for Go

golang-github-gogits-go-gogs-client-dev/stable,stable 0.0~git20160830.0.d8aff57-2 all
  Gogs API client in Go

golang-github-gogo-googleapis-dev/stable,stable 1.4.0-2 all
  googleapis generated with gogoprotobuf

golang-github-gogo-protobuf-dev/stable,stable 1.3.2-3 all
  alternative protocol buffer support for Golang - sources

golang-github-gogo-status-dev/stable,stable 1.1.0-3 all
  gRPC-like status package for use with GoGo Protobuf types

golang-github-goji-httpauth-dev/stable,stable 0.0~git20160601.2da839a-3 all
  HTTP Authentication middleware

golang-github-goji-param-dev/stable,stable 0.0~git20160927.d7f49fd-6 all
  Rack / jQuery style parameter parsing for Go

golang-github-gokyle-fswatch-dev/stable,stable 0.0~git20121217.1dbdf83-3 all
  simple UNIX file system watching library in Go

golang-github-gokyle-twofactor-dev/stable,stable 1.0.1-1.1 all
  Two-factor authentication

golang-github-golang-freetype-dev/stable,stable 0.0~git20170609.e2365df+dfsg-2 all
  Freetype font rasterizer in the Go programming language

golang-github-golang-groupcache-dev/stable,stable 0.0~git20200121.8c9f03a-2 all
  caching and cache-filling library, a replacement for memcached

golang-github-golang-jwt-jwt-dev/stable,stable 4.4.3-1 all
  golang implementation of JSON Web Tokens (library)

golang-github-golang-jwt-jwt-v5-dev/stable-backports,stable-backports 5.2.2-1~bpo12+1 all
  golang implementation of JSON Web Tokens (library)

golang-github-golang-leveldb-dev/stable,stable 0.0~git20161231.0.3435554-3 all
  Implementation of the LevelDB key/value database in Go

golang-github-golang-mock-dev/stable,stable 1.6.0-2 all
  mocking framework for the Go programming language

golang-github-golang-protobuf-1-3-dev/stable,stable 1.3.5-4 all
  Go support for protocol buffers (version v1.3.x)

golang-github-golang-protobuf-1-5-dev/stable,stable 1.5.2-3 all
  Go support for protocol buffers (version v1.5.x)

golang-github-golang-snappy-dev/stable,stable 0.0.2-3 all
  Implementation of the Snappy compression format in Go

golang-github-gologme-log-dev/stable,stable 1.3.0-2 all
  A fork of the golang built in log package to add support for levels (library)

golang-github-gomagedon-expectate-dev/stable,stable 1.3.1-1 all
  lightweight testing utility for golang

golang-github-gomarkdown-markdown-dev/stable,stable 0.0~git20220731.dcdaee8-2 all
  Markdown parser and HTML renderer for Go

golang-github-gomodule-oauth1-dev/stable,stable 0.0~git20181215.9a59ed3-2 all
  OAuth 1.0 client package for Go

golang-github-gomodule-redigo-dev/stable,stable 1:1.8.3-1 all
  Go client for Redis

golang-github-gonvenience-bunt-dev/stable,stable 1.3.4-3 all
  creating true color output in terminals

golang-github-gonvenience-neat-dev/stable,stable 1.3.11-3 all
  create neat strings like colored YAML output (library)

golang-github-gonvenience-term-dev/stable,stable 1.0.2-2 all
  golang package with convenience functions for terminal related tasks

golang-github-gonvenience-text-dev/stable,stable 1.0.7-2 all
  convenience functions for strings

golang-github-gonvenience-wrap-dev/stable,stable 1.1.2-2 all
  golang package to wrap things into a bit of context

golang-github-google-blueprint-dev/stable,stable 0.0~git20201007.25128be-2 all
  Blueprint meta build system (library)

golang-github-google-btree-dev/stable,stable 1.0.0-1 all
  BTree implementation for Go

golang-github-google-certificate-transparency-dev/stable,stable 0.0~git20160709.0.0f6e3d1~ds1-3 all
  Framework for monitoring and auditing SSL certificates

golang-github-google-go-cmp-dev/stable,stable 0.5.9-1 all
  Package for comparing Go values in tests

golang-github-google-go-containerregistry-dev/stable-backports 0.14.0+ds1-2~bpo12+1 amd64
  Go library and CLIs for working with container registries (program)

golang-github-google-go-dap-dev/stable,stable 0.7.0-1 all
  Go implementation of the Debug Adapter Protocol (library)

golang-github-google-go-github-dev/stable,stable 48.1.0-2 all
  Go library for accessing the GitHub API

golang-github-google-go-intervals-dev/stable,stable 0.0.2-2 all
  Functions for set operations on intervals, like ranges (library)

golang-github-google-go-querystring-dev/stable,stable 1.1.0-2 all
  library for encoding structs into URL query parameters

golang-github-google-gofuzz-dev/stable,stable 1.2.0-1 all
  Fuzz testing for Go

golang-github-google-gopacket-dev/stable,stable 1.1.19-3 all
  packet capturing and decoding library for Go

golang-github-google-goterm-dev/stable,stable 0.0~git20200907.555d40f-3 all
  Go Terminal library with PTY support and colors

golang-github-google-gousb-dev/stable,stable 1.1.1-2 all
  provides low-level interface for accessing USB devices (library)

golang-github-google-jsonapi-dev/stable,stable 1.0.0-1 all
  jsonapi.org style payload serializer and deserializer

golang-github-google-martian-dev/stable,stable 3.3.2-2 all
  Martian is a library for building custom HTTP/S proxies

golang-github-google-nftables-dev/stable,stable 0.1.0-4~deb12u1 all
  Go library to interact with Linux nftables

golang-github-google-pprof-dev/stable,stable 0.0~git20211008.947d60d-1 all
  pprof is a tool for visualization and analysis of profiling data

golang-github-google-renameio-dev/stable,stable 2.0.0-2 all
  provides a way to atomically create or replace a file or symbolic link

golang-github-google-shlex-dev/stable,stable 0.0~git20191202.e7afc7f-1 all
  Simple lexer for Go that supports shell-style rules

golang-github-google-subcommands-dev/stable,stable 1.2.0-2 all
  go package for add some subcommands to single command

golang-github-google-uuid-dev/stable,stable 1.3.0-1 all
  generates and inspects UUIDs based on RFC 4122

golang-github-google-wire-dev/stable,stable 0.5.0-2 all
  Compile-time Dependency Injection for Go (library)

golang-github-googleapis-gax-go-dev/stable,stable 2.0.5-4 all
  Google API Extensions for Go

golang-github-googleapis-gnostic-dev/stable,stable 0.2.0-4 all
  compiler for OpenAPI specification - library

golang-github-googlecloudplatform-cloudsql-proxy-dev/stable,stable 1.17.0-6 all
  connect securely to a 2nd generation Cloud SQL DB (Go library)

golang-github-googlecloudplatform-guest-logging-go-dev/stable,stable 0.0~git20210621.facc9c0-1.1 all
  Go logging package with Google Cloud Platform interface (library)

golang-github-goombaio-namegenerator-dev/stable,stable 0.0.2-3 all
  random name generator implementation in Golang

golang-github-gopacket-gopacket-dev/stable,stable 1.0.0-1 all
  Provides packet processing capabilities for Go (library)

golang-github-gopasspw-pinentry-dev/stable,stable 0.0.2-2 all
  Pinentry client in Go (library)

golang-github-gophercloud-gophercloud-dev/stable,stable 0.12.0-1 all
  OpenStack SDK for Go

golang-github-gophercloud-utils-dev/stable,stable 0.0~git20200508.b0167b9-3 all
  utils for OpenStack Go library

golang-github-gopherjs-gopherjs-dev/stable,stable 0.0~git20170927.0.4152256-7 all
  Go to Javascript compiler

golang-github-gorhill-cronexpr-dev/stable,stable 1.0.0+git20180427.88b0669-2 all
  cron expression parser

golang-github-gorilla-csrf-dev/stable,stable 1.7.1-1 all
  Cross Site Request Forgery (CSRF) prevention middleware for Go

golang-github-gorilla-css-dev/stable,stable 1.0.0-3 all
  CSS3 tokenizer for Go (library)

golang-github-gorilla-handlers-dev/stable,stable 1.5.1-3 all
  collection of useful handlers for Go's net/http package

golang-github-gorilla-mux-dev/stable,stable 1.8.0-1 all
  powerful URL router and dispatcher for golang

golang-github-gorilla-schema-dev/stable,stable 1.2.0-2 all
  fills a struct with form values

golang-github-gorilla-securecookie-dev/stable,stable 1.1.1-2 all
  provides authenticated and encrypted cookie values

golang-github-gorilla-sessions-dev/stable,stable 1.2.1-1 all
  save cookie and filesystem sessions and allow custom session backends

golang-github-gorilla-websocket-dev/stable,stable 1.5.0-2 all
  Go package implementing the WebSocket protocol

golang-github-gosexy-gettext-dev/stable,stable 0~git20130221-2.1 all
  Gettext support for the Go language

golang-github-gosnmp-gosnmp-dev/stable,stable 1.35.0-1 all
  SNMP library written in Go

golang-github-gosuri-uilive-dev/stable,stable 0.0.4-1 all
  Go library for updating terminal output in realtime

golang-github-gosuri-uiprogress-dev/stable,stable 0.0~git20170224.d0567a9-1.1 all
  Go library to render progress bars in terminal applications

golang-github-gosuri-uitable-dev/stable,stable 0.0~git20170830.36ee7e94-2.1 all
  go library to improve readability in terminal apps using tabular data

golang-github-gotestyourself-gotest.tools-dev/stable,stable 3.0.3-1 all
  collection of go packages to support common testing patterns

golang-github-gotk3-gotk3-dev/stable,stable 0.6.1-1 all
  Go bindings for GTK3

golang-github-grafana-grafana-plugin-model-dev/stable,stable 0.0~git20200514.df1eb6b-2 all
  models for Grafana backend plugins

golang-github-grafana-regexp-dev/stable,stable 0.0~git20221122.6b5c0a4-2 all
  Faster version of the Go regexp package (library)

golang-github-graph-gophers-graphql-go-dev/stable,stable 1.5.0-1 all
  GraphQL server with a focus on ease of use

golang-github-gravitational-trace-dev/stable,stable 1.1.15-2 all
  Package for error handling and error reporting

golang-github-graylog2-go-gelf-dev/stable,stable 0.0+git20191017.1550ee6-1 all
  GELF library and writer for Go

golang-github-greatroar-blobloom-dev/stable,stable 0.7.1-1 all
  Blocked Bloom filters for Go

golang-github-gregjones-httpcache-dev/stable,stable 0.0~git20180305.9cad4c3-1.1 all
  Transport for http.Client that will cache responses

golang-github-grokify-html-strip-tags-go-dev/stable,stable 0.0~git20180907.e9e4496-1.1 all
  Golang library to HTML StripTags

golang-github-grpc-ecosystem-go-grpc-middleware-dev/stable,stable 1.3.0-1 all
  Go gRPC Middlewares: interceptor chaining, auth, logging, retries and more

golang-github-grpc-ecosystem-go-grpc-prometheus-dev/stable,stable 1.2.0+git20191002.6af20e3-3 all
  Prometheus monitoring for gRPC Go servers

golang-github-grpc-ecosystem-grpc-gateway-dev/stable,stable 1.6.4-2 all
  gRPC to JSON proxy generator for Golang -- sources

golang-github-grpc-ecosystem-grpc-opentracing-dev/stable,stable 0.0~git20180507.8e809c8-2 all
  expressive vendor-neutral APIs for distributed tracing and context propagation

golang-github-gtank-cryptopasta-dev/stable,stable 0.0~git20170601.1f550f6-1.1 all
  copy & paste-friendly golang crypto

golang-github-gucumber-gucumber-dev/stable,stable 0.0~git20160715.0.71608e2-1.1 all
  Cucumber BDD-style testing for Go -- source

golang-github-guptarohit-asciigraph-dev/stable,stable 0.4.1-4 all
  Make lightweight ASCII line graph in CLI apps with no other dependencies

golang-github-h2non-parth-dev/stable,stable 2.0.1-3 all
  Path parsing for segment unmarshaling and slicing

golang-github-hailocab-go-hostpool-dev/stable,stable 0.0~git20160125.0.e80d13c-1.1 all
  flexibly pool among multiple hosts from Go application

golang-github-hairyhenderson-go-codeowners-dev/stable,stable 0.2.2+git20201026.cdc7c07-2 all
  Go package that finds and parses GitHub CODEOWNERS files

golang-github-hansrodtang-randomcolor-dev/stable,stable 0.0~git20160512.d27108b-3 all
  random color generator

golang-github-hanwen-go-fuse-dev/stable,stable 2.1.0+git20220822.58a7e14-1 all
  Native Go bindings for the FUSE kernel module

golang-github-hanwen-usb-dev/stable,stable 0.0~git20141217.69aee45-3 all
  CGO bindings for libusb

golang-github-hashicorp-atlas-go-dev/stable,stable 0.0~git20230125.46e9b3e-1 all
  official Go client for HashiCorp's Atlas

golang-github-hashicorp-errwrap-dev/stable,stable 1.1.0-1 all
  Errwrap is a Go (golang) library for wrapping and querying errors

golang-github-hashicorp-go-azure-helpers-dev/stable,stable 0.13.1-3 all
  various helpers and wrappers for working with Azure

golang-github-hashicorp-go-bexpr-dev/stable,stable 0.1.2-3 all
  generic boolean expression evaluation in Golang

golang-github-hashicorp-go-checkpoint-dev/stable,stable 0.5.0-3 all
  Go Checkpoint Client

golang-github-hashicorp-go-cleanhttp-dev/stable,stable 0.5.2-1 all
  Functions for accessing "clean" Go http.Client values

golang-github-hashicorp-go-discover-dev/stable,stable 0.0+git20190905.34a6505-2 all
  discover nodes in cloud environments

golang-github-hashicorp-go-envparse-dev/stable,stable 0.1.0-1 all
  Minimal environment variable parser for Go (library)

golang-github-hashicorp-go-gcp-common-dev/stable,stable 0.8.0-1 all
  common code shared by GCP-maintained plugins

golang-github-hashicorp-go-getter-dev/stable,stable 1.4.1-1 all
  download from a URL using a variety of protocols

golang-github-hashicorp-go-hclog-dev/stable,stable 0.11.0-1 all
  common logging package for HashiCorp tools

golang-github-hashicorp-go-immutable-radix-dev/stable,stable 1.3.1-3 all
  immutable radix tree implementation in Golang

golang-github-hashicorp-go-memdb-dev/stable,stable 1.2.1-1 all
  in-memory database built on immutable radix trees

golang-github-hashicorp-go-msgpack-dev/stable,stable 0.5.5-1 all
  encode/decode and rpc library for msgpack and Binc

golang-github-hashicorp-go-multierror-dev/stable,stable 1.1.1-2 all
  Go package for representing a list of errors as a single error

golang-github-hashicorp-go-plugin-dev/stable,stable 1.0.1-4 all
  Golang plugin system over RPC

golang-github-hashicorp-go-raftchunking-dev/stable,stable 0.6.2-3 all
  chunking middleware for use by Raft clients

golang-github-hashicorp-go-reap-dev/stable,stable 0.0~git20160113.0.2d85522-3.1 all
  child process reaping utilities for Go

golang-github-hashicorp-go-retryablehttp-dev/stable,stable 0.7.1-1 all
  retryable HTTP client in Go

golang-github-hashicorp-go-rootcerts-dev/stable,stable 1.0.2-2 all
  functions for loading root certificates for TLS connections

golang-github-hashicorp-go-safetemp-dev/stable,stable 1.0.0-3 all
  Functions for working safely with temporary files and directories

golang-github-hashicorp-go-slug-dev/stable,stable 0.9.1-2 all
  functions to create slug archives

golang-github-hashicorp-go-sockaddr-dev/stable,stable 1.0.2-2 all
  IP address/UNIX socket convenience functions for Go

golang-github-hashicorp-go-syslog-dev/stable,stable 1.0.0-2 all
  Golang syslog wrapper, cross-compile friendly

golang-github-hashicorp-go-tfe-dev/stable,stable 0.11.1+git20201207.19dc0b8-3 all
  Terraform Cloud/Enterprise API Client/SDK in Golang

golang-github-hashicorp-go-uuid-dev/stable,stable 1.0.2-2 all
  generate UUID-format strings using high quality random bytes

golang-github-hashicorp-go-version-dev/stable,stable 1.3.0-1 all
  library for parsing and verifying versions and version constraints

golang-github-hashicorp-golang-lru-dev/stable,stable 0.5.4-2 all
  Golang LRU cache

golang-github-hashicorp-golang-lru-v2-dev/stable-backports,stable-backports 2.0.7-2~bpo12+1 all
  Golang LRU cache (v2 with support for generics)

golang-github-hashicorp-hcl-dev/stable,stable 1.0.0-1.1 all
  Go implementation of HashiCorp Configuration Language

golang-github-hashicorp-hcl-v2-dev/stable,stable 2.14.1-2 all
  Go implementation of HashiCorp Configuration Language (version 2)

golang-github-hashicorp-hil-dev/stable,stable 0.0~git20160711.1e86c6b-1 all
  small embedded language for string interpolations

golang-github-hashicorp-logutils-dev/stable,stable 1.0.0-2 all
  Utilities for slightly better logging in Go

golang-github-hashicorp-mdns-dev/stable,stable 1.0.3-2 all
  simple mDNS client/server library in Golang

golang-github-hashicorp-memberlist-dev/stable,stable 0.2.2-2 all
  Golang package for gossip based membership and failure detection

golang-github-hashicorp-net-rpc-msgpackrpc-dev/stable,stable 0.0~git20151116.0.a14192a-1.1 all
  Library for creating Go RPC client/server

golang-github-hashicorp-raft-boltdb-dev/stable,stable 0.0~git20171010.6e5ba93-3 all
  Raft backend implementation using BoltDB

golang-github-hashicorp-raft-dev/stable,stable 1.1.2-1 all
  implementation of the Raft consensus protocol

golang-github-hashicorp-scada-client-dev/stable,stable 0.0~git20160601.0.6e89678-2.1 all
  Golang client to the HashiCorp SCADA system

golang-github-hashicorp-serf-dev/stable,stable 0.9.4~ds1-1 all
  Service orchestration and management tool (source)

golang-github-hashicorp-terraform-json-dev/stable,stable 0.5.0-3 all
  helper types for the Terraform external data representation

golang-github-hashicorp-terraform-svchost-dev/stable,stable 0.0~git20200729.f050f53-3 all
  handling of friendly hostnames for terraform

golang-github-hashicorp-yamux-dev/stable,stable 0.0+git20190923.df201c7-1 all
  Golang connection multiplexing library

golang-github-hawkular-hawkular-client-go-dev/stable,stable 0.6.1-1 all
  Golang client for Hawkular

golang-github-haya14busa-go-checkstyle-dev/stable,stable 0.0~git20170303.5e9d09f-2 all
  Golang checkstyle module (library)

golang-github-haya14busa-go-sarif-dev/stable,stable 0.0~git20210102.e2c5fed-2 all
  Go structs for the SARIF object model (library)

golang-github-hectane-go-acl-dev/stable,stable 0.0~git20190604.da78bae-4 all
  Go library for manipulating ACLs on Windows

golang-github-henrydcase-nobs-dev/stable,stable 0.1+git20200305.7d891c7-5 all
  NOBS cryptographic primitives library in golang

golang-github-henvic-httpretty-dev/stable,stable 0.1.0-1 all
  Prints HTTP requests made with Go pretty on your terminal.

golang-github-heroku-rollrus-dev/stable,stable 0.0~git20190402.fde2a6b-2 all
  Logrus Rollbar Hook

golang-github-hetznercloud-hcloud-go-dev/stable,stable 1.35.3-1 all
  library for the Hetzner Cloud API

golang-github-hexops-gotextdiff-dev/stable,stable 1.0.3-2 all
  Unified text diffing in Go (copy of gopls internal diffing)

golang-github-hillu-go-yara-dev/stable,stable 4.2.4-2 all
  Go bindings for YARA

golang-github-hinshun-vt10x-dev/stable,stable 0.0~git20220301.5011da4-1 all
  vt10x terminal emulation backend

golang-github-hirochachacha-go-smb2-dev/stable,stable 1.1.0-2 all
  SMB2/3 client library written in Go (library)

golang-github-hjfreyer-taglib-go-dev/stable,stable 0.0~git20201229.d150ea9-4 all
  audio tag library in the spirit of taglib

golang-github-hjson-hjson-go-dev/stable,stable 3.1.0-2 all
  Hjson for Go (library)

golang-github-hlandau-buildinfo-dev/stable,stable 0.0~git20160722.0.b25d4b0-4 all
  Go build information utilities

golang-github-hlandau-dexlogconfig-dev/stable,stable 0.0~git20161112.0.244f29b-2 all
  logging configuration package for Go

golang-github-hlandau-goutils-dev/stable,stable 0.0~git20160722.0.0cdb66a-4 all
  miscellaneous Go utility packages

golang-github-hlandau-xlog-dev/stable,stable 1.0.0-3 all
  logging library for Go

golang-github-hmrc-vmware-govcd-dev/stable,stable 0.0.2+git20190404.eea2584-3 all
  vCloud Air API bindings for Golang

golang-github-hodgesds-perf-utils-dev/stable,stable 0.5.1-2 all
  Perf Utilities for Go (library)

golang-github-howeyc-gopass-dev/stable,stable 0.0~git20190910.7cb4b85+dfsg.1-1 all
  getpasswd for Go

golang-github-htcat-htcat-dev/stable,stable 1.0.2-1.1 all
  Parallel and Pipelined HTTP GET Utility for golang

golang-github-huandu-go-assert-dev/stable,stable 1.1.5-2 all
  Magic assert macros for Go

golang-github-huandu-xstrings-dev/stable,stable 1.3.3-1 all
  Package xstrings: A collection of useful string functions in Go.

golang-github-huin-goupnp-dev/stable,stable 0.0~git20171001.0.b388724-1.1 all
  UPnP library for Go

golang-github-hydrogen18-memlistener-dev/stable,stable 0.0~git20200120.dcc25e7-2 all
  In-memory listener for testing socket & HTTP servers in Golang (library)

golang-github-hydrogen18-stalecucumber-dev/stable,stable 0.0~git20180226.6de214d-1 all
  Reader and writer for Python's pickle format in Golang

golang-github-hydrogen18-stoppablelistener-dev/stable,stable 0.0~git20151210.0.dadc9cc-1.1 all
  stoppable TCP listener in Go

golang-github-iafan-cwalk-dev/stable,stable 0.0~git20191125.dd7f505-3 all
  Concurrent filepath.Walk replacement

golang-github-ianbruene-go-difflib-dev/stable,stable 1.2.0-2 all
  partial port of Python difflib package to Go

golang-github-iancoleman-orderedmap-dev/stable,stable 0.2.0-2 all
  Golang map where the keys keep the order that they're added

golang-github-iancoleman-strcase-dev/stable,stable 0.2.0-3 all
  converting string case to various cases

golang-github-ianlancetaylor-demangle-dev/stable,stable 0.0~git20200824.28f6c0f-2 all
  C++ symbol name demangler written in Go

golang-github-icrowley-fake-dev/stable,stable 0.0~git20180203.4178557-5 all
  fake data generator for Golang

golang-github-icza-gox-dev/stable,stable 0.0~git20210726.cd40a3f-4 all
  Minimalist extension to Go that complements the standard library (library)

golang-github-iglou-eu-go-wildcard-dev/stable,stable 1.0.3-2 all
  Fast and light wildcard pattern matching

golang-github-igm-pubsub-dev/stable,stable 1.0.0-3 all
  simple PubSub mechanism for GO

golang-github-igm-sockjs-go-dev/stable,stable 3.0.2-2 all
  WebSocket emulation - Go server library

golang-github-iguanesolutions-go-systemd-dev/stable,stable 5.1.0-2 all
  Golang bindings for systemd (library)

golang-github-imdario-mergo-dev/stable,stable 0.3.12-1 all
  Functions to merge structs and maps in Go

golang-github-inconshreveable-go-update-dev/stable,stable 0.0~git20160112.0.8152e7e+ds-3 all
  Build self-updating Golang programs

golang-github-inconshreveable-log15-dev/stable,stable 2.15-2 all
  structured, composable logging for Go

golang-github-inconshreveable-mousetrap-dev/stable,stable 1.0.0-1 all
  Go library to detect starting from Windows Explorer

golang-github-inconshreveable-muxado-dev/stable,stable 0.0~git20140312.0.f693c7e-2.1 all
  Stream multiplexing for Go

golang-github-inexio-go-monitoringplugin-dev/stable,stable 1.0.13-1 all
  Go lib for writing monitoring check plugins

golang-github-influxdata-go-syslog-dev/stable,stable 2.0.1-1 all
  Go parser for syslog messages

golang-github-influxdata-influxdb1-client-dev/stable,stable 0.0~git20220302.a9ab567-2 all
  Old clientv2 for InfluxDB 1.x (library)

golang-github-influxdata-influxql-dev/stable,stable 1.1.0-1 all
  parser for the InfluxDB query language

golang-github-influxdata-line-protocol-dev/stable,stable 0.0~git20181118.934b9e6-1.1 all
  InfluxDB line protocol implementation

golang-github-influxdata-tdigest-dev/stable,stable 0.0~git20180711.a7d76c6-1.1 all
  Ted Dunning's t-digest in Go

golang-github-influxdata-toml-dev/stable,stable 0.0~git20160905.0.ad49a5c-1.1 all
  TOML parser and encoder library for Golang

golang-github-influxdata-wlog-dev/stable,stable 0.0~git20160411.7c63b0a-1.1 all
  simple log level based Golang logger

golang-github-influxdata-yamux-dev/stable,stable 0.0~git20171107.1f58ded-5 all
  Golang connection multiplexing library

golang-github-influxdata-yarpc-dev/stable,stable 0.0.1-2 all
  Yet Another RPC for Go - dev package

golang-github-influxdb-enterprise-client-dev/stable,stable 0.0~git20151113.0.25665cb-5 all
  Golang client for speaking to the InfluxDB Enterprise application

golang-github-influxdb-influxdb-dev/stable,stable 1.6.7~rc0-1 all
  Scalable datastore for metrics, events, and real-time analytics. Dev package

golang-github-influxdb-usage-client-dev/stable,stable 0.0~git20151204.0.475977e-7 all
  library for speaking to the InfluxDB Anonymous Usage Reporting API

golang-github-insomniacslk-dhcp-dev/stable,stable 0.0~git20220915.043f172-2 all
  DHCPv6 and DHCPv4 packet library, client and server written in Go (library)

golang-github-integrii-flaggy-dev/stable,stable 1.4.0-1 all
  Idiomatic Go input parsing with subcommands, positional values, and flags

golang-github-intel-goresctrl-dev/stable,stable 0.3.0-2 all
  Go library for managing resctrl filesystem

golang-github-intel-tfortools-dev/stable,stable 0.2.0-1.1 all
  template scripting support to go programs

golang-github-invopop-yaml-dev/stable,stable 0.2.0-2 all
  better way to marshal and unmarshal YAML in Golang

golang-github-ionos-cloud-sdk-go-dev/stable,stable 6.1.4-1 all
  Go API client for IONOS Cloud

golang-github-iovisor-gobpf-dev/stable,stable 0.2.0-5 all
  Go bindings for creating BPF programs

golang-github-ishidawataru-sctp-dev/stable,stable 0.0+git20210707.9a39160-1 all
  SCTP library for the Go programming language

golang-github-issue9-assert-dev/stable,stable 0.0~git20170908.0.ceac1aa-5.1 all
  Simple extension to test a series of assert functions

golang-github-issue9-identicon-dev/stable,stable 0.0~git20170630.0.5196591-7 all
  generate an icon from identity information

golang-github-itchyny-go-flags-dev/stable,stable 1.5.0-3 all
  Go library for parsing command line arguments (itchyny's fork)

golang-github-itchyny-gojq-dev/stable,stable 0.12.11-1 all
  pure Go implementation of jq (library)

golang-github-itchyny-timefmt-go-dev/stable,stable 0.1.3-2 all
  Efficient time formatting library (strftime, strptime) for Go

golang-github-ivanpirog-coloredcobra-dev/stable,stable 1.0.1-3 all
  colorize the text output of the Cobra library (library)

golang-github-ivpusic-grpool-dev/stable,stable 1.0.0-1.1 all
  Lightweight Goroutine pool

golang-github-j-keck-arping-dev/stable,stable 1.0.3-1 all
  library to ping a host per arp datagram or query a host mac address

golang-github-jackc-chunkreader-v2-dev/stable,stable 2.0.1-2 all
  io.Reader wrapper that minimizes IO reads and memory allocations

golang-github-jackc-fake-dev/stable,stable 0.0~git20150926.812a484-3 all
  fake data generator for Golang

golang-github-jackc-pgconn-dev/stable,stable 1.11.0-2 all
  low-level PostgreSQL database driver

golang-github-jackc-pgio-dev/stable,stable 1.0.0-2 all
  low-level toolkit building messages in the PostgreSQL wire protocol

golang-github-jackc-pgmock-dev/stable,stable 0.0~git20210724.4ad1a82-2 all
  provides the ability to mock a PostgreSQL server

golang-github-jackc-pgpassfile-dev/stable,stable 1.0.0-2 all
  parser for PostgreSQL .pgpass files

golang-github-jackc-pgproto3-v2-dev/stable,stable 2.2.0-2 all
  encoder and decoder of the PostgreSQL wire protocol version 3

golang-github-jackc-pgservicefile-dev/stable,stable 0.0~git20200714.2b9c447-2 all
  parser for PostgreSQL service files (e.g. .pg_service.conf)

golang-github-jackc-pgtype-dev/stable,stable 1.10.0-4 all
  Go types for over 70 PostgreSQL types

golang-github-jackc-pgx-v4-dev/stable,stable 4.15.0-4 all
  PostgreSQL driver and toolkit for Golang

golang-github-jackc-puddle-dev/stable,stable 1.2.1-2 all
  Generic resource pool for Go (library)

golang-github-jackpal-gateway-dev/stable,stable 1.0.7-1 all
  library for discovering the address of a LAN gateway

golang-github-jackpal-go-nat-pmp-dev/stable,stable 1.0.2-3 all
  client for the NAT-PMP internet protocol

golang-github-jacobsa-bazilfuse-dev/stable,stable 0.0~git20150622-4 all
  fork of bazil.org/fuse for gcsfuse

golang-github-jacobsa-crypto-dev/stable,stable 0.0~git20190317.9f44e2d+dfsg1-4 all
  Some Go cryptography routines that are not included in the Go standard library

golang-github-jacobsa-fuse-dev/stable,stable 0.0~git20150806.0.9a7512a-4 all
  writing and mounting user-space file systems from Go

golang-github-jacobsa-gcloud-dev/stable,stable 0.0~git20150709-3 all
  convenience wrapper around google cloud platform APIs

golang-github-jacobsa-oglematchers-dev/stable,stable 0.0~git20150320-3 all
  matchers for testing/mocking frameworks such as ogletest

golang-github-jacobsa-oglemock-dev/stable,stable 0.0~git20150428-5 all
  mocking framework for Go

golang-github-jacobsa-ogletest-dev/stable,stable 0.0~git20170503.80d50a7-2 all
  unit testing framework for Go

golang-github-jacobsa-reqtrace-dev/stable,stable 0.0~git20150505-6 all
  simple request tracing

golang-github-jacobsa-syncutil-dev/stable,stable 0.0~git20150615-3 all
  code that supplements the Go stdlib sync package

golang-github-jacobsa-timeutil-dev/stable,stable 0.0~git20150615-2 all
  code supplementing Go's time package

golang-github-jacobsa-util-dev/stable,stable 0.0~git20150504-2 all
  utility code for jacobsa projects

golang-github-jaguilar-vt100-dev/stable,stable 0.0~git20201024.81de19c-2 all
  raw-mode vt100 screen reader

golang-github-jaksi-sshutils-dev/stable,stable 0.0.15-2 all
  Go SSH utils library to complement golang.org/x/crypto/ssh

golang-github-jamesclonk-vultr-dev/stable,stable 2.0.1-1 all
  Vultr API client library

golang-github-jamiealquiza-tachymeter-dev/stable,stable 2.0.0-3 all
  Go library for timing things and yielding rates, percentiles, and histograms

golang-github-jarcoal-httpmock-dev/stable,stable 1.1.0-1 all
  HTTP mocking for Golang

golang-github-jasonish-go-idsrules-dev/stable,stable 0.0~git20180130.c986a5f-1 all
  Go IDS rule parser

golang-github-jaypipes-pcidb-dev/stable,stable 1.0.0-1 all
  Small golang library for querying PCI database (pciids) information (library)

golang-github-jaytaylor-html2text-dev/stable,stable 0.0~git20211013.90c08c5-2 all
  Turns HTML into a plain-text equivalent

golang-github-jbenet-go-context-dev/stable,stable 0.0~git20150711.d14ea06-4 all
  context.Context extensions

golang-github-jcmturner-aescts.v2-dev/stable,stable 2.0.0-2 all
  AES CBC Ciphertext Stealing mode for Go

golang-github-jcmturner-dnsutils.v2-dev/stable,stable 2.0.0-2 all
  Golang library of DNS utilities

golang-github-jcmturner-gofork-dev/stable,stable 1.0.0-4 all
  forked and modified go standard library packages to work around issues

golang-github-jcmturner-goidentity.v6-dev/stable,stable 6.0.1-2 all
  Golang library for managing identities

golang-github-jcmturner-gokrb5.v8-dev/stable,stable 8.4.3-2 all
  Pure Go Kerberos library for clients and services

golang-github-jcmturner-rpc.v2-dev/stable,stable 2.0.3-2 all
  Remote Procedure Call libraries for golang

golang-github-jdkato-prose-dev/stable,stable 1.2.1-1 all
  Golang library for text processing

golang-github-jdkato-syllables-dev/stable,stable 0.1.0+git20170409.10.8961fa0-1.1 all
  Go syllable counter

golang-github-jedib0t-go-pretty-dev/stable,stable 6.4.4-2 all
  Pretty print tables, lists, progress-bars and text

golang-github-jedisct1-dlog-dev/stable,stable 0.7-1 all
  Super simple logger for Go

golang-github-jedisct1-go-clocksmith-dev/stable,stable 0.0~git20210101.da382b9-1 all
  Go sleep-aware sleep() function

golang-github-jedisct1-go-dnsstamps-dev/stable,stable 0.1.3-1 all
  DNS Stamps library for Go

golang-github-jedisct1-go-minisign-dev/stable,stable 0.2.1-1 all
  Minisign library for Golang

golang-github-jedisct1-xsecretbox-dev/stable,stable 1.0.2-1 all
  Go implementation of crypto_secretbox_xchacha20poly1305

golang-github-jeffail-gabs-dev/stable,stable 2.3.0-1 all
  For parsing, creating and editing unknown or dynamic JSON in Go

golang-github-jefferai-jsonx-dev/stable,stable 1.0.1-2 all
  Object or JSON -> JSONx

golang-github-jellydator-ttlcache-dev/stable-backports,stable-backports 3.0.1-2~bpo12+1 all
  In-memory cache with item expiration and generics (library)

golang-github-jeremija-gosubmit-dev/stable-backports,stable-backports 0.2.8-1~bpo12+1 all
  Library for parsing and submitting HTML forms

golang-github-jeromer-syslogparser-dev/stable,stable 0~20150717.ff71fe7a-1.1 all
  syslog parser library

golang-github-jessevdk-go-flags-dev/stable,stable 1.4.0-6 all
  Go library for parsing command line arguments

golang-github-jfbus-httprs-dev/stable,stable 0.0~git20180614.7861a11-1.1 all
  ReadSeeker for http.Response.Body

golang-github-jfrazelle-go-dev/stable,stable 0.0~git20160303.0.d30aec9-3.1 all
  Transitional package for golang-github-docker-go-dev

golang-github-jhillyerd-enmime-dev/stable,stable 0.9.3-2 all
  MIME mail encoding and decoding package for Go (library)

golang-github-jhoonb-archivex-dev/stable,stable 0.0+20170409-2 all
  archives folders (recursively) and files to zip and tar formats

golang-github-jimstudt-http-authentication-dev/stable,stable 0.0~git20140401.3eca13d-1.1 all
  Go implementation of RFC 2617 HTTP Authentication

golang-github-jinzhu-copier-dev/stable,stable 0.3.2-2 all
  Copy value from struct to struct and more (library)

golang-github-jinzhu-gorm-dev/stable,stable 1.9.6-2 all
  ORM library for Golang

golang-github-jinzhu-inflection-dev/stable,stable 1.0.0-1 all
  pluralize and singularize English nouns

golang-github-jinzhu-now-dev/stable,stable 1.1.1-2 all
  time toolkit for golang

golang-github-jkeiser-iter-dev/stable,stable 0.0~git20200628.c8aa0ae-2 all
  Go library for iteration (library)

golang-github-jlaffaye-ftp-dev/stable,stable 0.0~git20220829.b85cf1e-1 all
  FTP client package for Go

golang-github-jmespath-go-jmespath-dev/stable,stable 0.4.0-2 all
  Golang implementation of JMESPath

golang-github-jmhodges-clock-dev/stable,stable 1.0-3.1 all
  Go package for testing time-dependent code

golang-github-jmoiron-sqlx-dev/stable,stable 1.3.5-1 all
  General purpose extensions to Golang's database/sql library

golang-github-jochenvg-go-udev-dev/stable,stable 0.0~git20171110.d6b62d5-2 all
  Go bindings for libudev (library)

golang-github-johnkerl-lumin-dev/stable,stable 1.0.0-1 all
  pattern match highlighter (library)

golang-github-joho-godotenv-dev/stable,stable 1.5.1-1 all
  Go port of Ruby's dotenv library

golang-github-jonas-p-go-shp-dev/stable,stable 0.1.1-2 all
  library for reading and writing ESRI Shapefiles

golang-github-jonboulle-clockwork-dev/stable,stable 0.1.0-4.1 all
  Simple fake clock for Go

golang-github-josharian-intern-dev/stable,stable 1.0.0-3 all
  Intern string golang library

golang-github-josharian-native-dev/stable,stable 1.1.0-1 all
  Easy to use native encoding/binary.ByteOrder (library)

golang-github-jouyouyun-hardware-dev/stable,stable 0.1.8-1 all
  Golang Library for Get hardware info

golang-github-joyent-gocommon-dev/stable,stable 0.0~git20161202.b787089-4 all
  common Go library for Joyent's Triton and Manta

golang-github-joyent-gosdc-dev/stable,stable 0.0~git20161202.ec8b350-3 all
  Go library for interaction with the Joyent CloudAPI

golang-github-joyent-gosign-dev/stable,stable 0.0~git20161114.9abcee2-3 all
  Go HTTP signing library for Joyent's Triton and Manta

golang-github-jpillora-backoff-dev/stable,stable 1.0.0-1.1 all
  backoff algorithm in Golang

golang-github-jpillora-go-tld-dev/stable,stable 1.2.1-2 all
  Top Level Domain (TLD) Parser

golang-github-jroimartin-gocui-dev/stable,stable 0.4.0-3 all
  Minimalist Go package aimed at creating Console User Interfaces

golang-github-jsimonetti-rtnetlink-dev/stable,stable 1.3.0-1 all
  low-level access to the Linux rtnetlink API (library)

golang-github-json-iterator-go-dev/stable,stable 1.1.12-1 all
  High-performance drop-in replacement of "encoding/json"

golang-github-jsternberg-zap-logfmt-dev/stable,stable 1.0.0-1.1 all
  logfmt for zap

golang-github-jszwec-csvutil-dev/stable,stable 1.7.1-2 all
  fast and idiomatic mapping between CSV and Go values (library)

golang-github-jtacoma-uritemplates-dev/stable,stable 1.0.0-2 all
  URI Templates (RFC 6570) implemented in Go

golang-github-jteeuwen-go-bindata-dev/stable,stable 3.0.7+git20151023.72.a0ff256-4 all
  embed data in a Go program - library package

golang-github-jtolds-gls-dev/stable,stable 4.20.0-2 all
  Goroutine local storage

golang-github-juju-aclstore-dev/stable,stable 2.1.0-2 all
  Simple persistent store for ACLs, with HTTP API (library)

golang-github-juju-ansiterm-dev/stable,stable 1.0.0-1 all
  colored writers and tabwriters

golang-github-juju-clock-dev/stable,stable 1.0.2-2 all
  Clock definition and a testing clock (library)

golang-github-juju-cmd-dev/stable,stable 3.0.2-1 all
  Command line implementation framework (library)

golang-github-juju-collections-dev/stable,stable 1.0.1-1 all
  Deque and set implementations (library)

golang-github-juju-errors-dev/stable,stable 1.0.0-1 all
  Common juju errors and functions to annotate errors

golang-github-juju-gnuflag-dev/stable,stable 1.0.0-1 all
  GNU-compatible flag handling with a stdlib-like API for Go (library)

golang-github-juju-gomaasapi-dev/stable,stable 2.0.0-1 all
  Go bindings for talking to MAAS (library)

golang-github-juju-httpprof-dev/stable,stable 0.0~git20141217.14bf14c-4 all
  fork of net/http/pprof which works when not at the server's root

golang-github-juju-loggo-dev/stable,stable 1.0.0-1 all
  logging library for Go

golang-github-juju-mutex-dev/stable,stable 2.0.0-1 all
  Provides a named machine level mutex shareable between processes (library)

golang-github-juju-names-dev/stable,stable 4.0.0-2 all
  Package to deal with juju names (services, units, machines, etc) (library)

golang-github-juju-persistent-cookiejar-dev/stable,stable 1.0.0-1 all
  fork of net/http/cookiejar that allows serialisation of cookies (library)

golang-github-juju-qthttptest-dev/stable,stable 0.1.3-1 all
  Check that JSON HTTP endpoints respond appropriately (library)

golang-github-juju-ratelimit-dev/stable,stable 1.0.1-1.1 all
  Efficient token-bucket-based rate limiter module for Go

golang-github-juju-retry-dev/stable,stable 0.0~git20160928.1998d01-3 all
  encapsulates the mechanism around retrying commands

golang-github-juju-schema-dev/stable,stable 1.0.1-1 all
  coerce dynamically typed data structures into known forms (library)

golang-github-juju-simplekv-dev/stable,stable 1.1.0-2 all
  Naive key-value store with multiple backends (library)

golang-github-juju-testing-dev/stable,stable 1.0.3-1 all
  Testing gocheck suites and checkers used across juju projects (library)

golang-github-juju-usso-dev/stable,stable 1.0.1-2 all
  Ubuntu single sign-on library

golang-github-juju-utils-dev/stable,stable 0.0~git20200923.4646bfe-1 all
  General utility functions

golang-github-juju-version-dev/stable,stable 2.0.1-1 all
  intelligent version comparisons (library)

golang-github-juju-webbrowser-dev/stable,stable 1.0.0-2 all
  Go helpers for interacting with Web browsers (library)

golang-github-julienschmidt-httprouter-dev/stable,stable 1.3.0-2 all
  High performance HTTP request router for Go that scales well

golang-github-jung-kurt-gofpdf-dev/stable,stable 2.17.2+ds-3 all
  PDF document generator with high level support for text, drawing and images

golang-github-justinas-alice-dev/stable,stable 1.2.0-2 all
  Painless middleware chaining for Go

golang-github-jwilder-encoding-dev/stable,stable 0.0~git20170811.b4e1701-4 all
  library for working with compressed arrays of integers

golang-github-jzelinskie-whirlpool-dev/stable,stable 0.0~git20201016.0675e54-1 all
  whirlpool cryptographic hashing library

golang-github-k-sone-critbitgo-dev/stable,stable 1.4.0-2 all
  crit-bit for golang and its applications (sorted map, IP routing table)

golang-github-k0kubun-colorstring-dev/stable,stable 0.0~git20150214.0.9440f19-2.1 all
  Go library for colorizing strings for terminal output

golang-github-k0kubun-go-ansi-dev/stable,stable 0.0~git20180517.3bf9e29-3 all
  Windows-portable ANSI escape sequence utility

golang-github-k0kubun-pp-dev/stable,stable 3.0.7-1 all
  Go library to colored pretty printer on terminal

golang-github-k0swe-wsjtx-go-dev/stable,stable 4.0.1-1 all
  Golang binding for the WSJT-X amateur radio software's UDP interface (library)

golang-github-kardianos-minwinsvc-dev/stable,stable 1.0.0-2 all
  Stub for portability to Windows (library)

golang-github-kardianos-osext-dev/stable,stable 0.0~git20190222.2bc1f35-3 all
  Extend "os" package with Executable and ExecutableFolder

golang-github-kardianos-service-dev/stable,stable 1.2.1-1 all
  run Go programs as a service on major platforms

golang-github-karlseguin-ccache-dev/stable,stable 2.0.3-1 all
  Golang LRU Cache for high concurrency

golang-github-karlseguin-expect-dev/stable,stable 1.0.1+git20160716.12.5c2eadb-2 all
  Testing framework for Go with more concise syntax

golang-github-karrick-godirwalk-dev/stable,stable 1.15.3-3 all
  Fast directory traversal for Golang (library)

golang-github-karrick-goswarm-dev/stable,stable 1.4.7-1.1 all
  Memoization with asynchronous revalidation for Go

golang-github-kata-containers-govmm-dev/stable,stable 0.0~git20211108.e438cc5-1 all
  Provide Go APIs for creating and managing virtual machines

golang-github-kballard-go-shellquote-dev/stable,stable 0.0~git20180428.95032a8-2 all
  Go utilities for performing shell-like word splitting/joining

golang-github-kelseyhightower-envconfig-dev/stable,stable 1.3.0-2 all
  decode environment variables based on a user defined specification

golang-github-keltia-archive-dev/stable,stable 0.8.0-2 all
  Small Go library for handling archives of various types.

golang-github-kelvins-sunrisesunset-dev/stable,stable 1.0-3 all
  Go package that provides the sunrise and sunset equation. (library)

golang-github-kentik-patricia-dev/stable,stable 1.0.0-3 all
  Garbage collector-sensitive patricia tree (library)

golang-github-kevinburke-ssh-config-dev/stable,stable 1.0-2 all
  Go parser for ssh_config files

golang-github-kimor79-gollectd-dev/stable,stable 1.0.0-6 all
  go parser for the collectd binary protocol

golang-github-kisielk-gotool-dev/stable,stable 1.0.0-2 all
  library of some utility functions provided by cmd/go

golang-github-kisielk-sqlstruct-dev/stable,stable 0.0~git20150917.0.0b86a3e-2.1 all
  convenience functions for using structs with the database/sql package

golang-github-kisom-goutils-dev/stable,stable 0.0~git20161101.0.858c9cb-2.1 all
  Various TLS certificate tools and other utility libraries for Golang

golang-github-kjk-lzma-dev/stable,stable 1.0.0-7 all
  port of the lzma compression algorithm

golang-github-klauspost-compress-dev/stable,stable 1.15.12+ds1-3 all
  optimized compression packages

golang-github-klauspost-cpuid-dev/stable,stable 2.2.3-1 all
  CPU feature identification for Go

golang-github-klauspost-crc32-dev/stable,stable 1.2.0-1 all
  CRC32 hash with x64 optimizations

golang-github-klauspost-pgzip-dev/stable,stable 1.2.5-2 all
  parallel gzip (de)compression library for Go

golang-github-klauspost-reedsolomon-dev/stable,stable 1.9.13-1 all
  Reed-Solomon Erasure Coding in Go

golang-github-knadh-koanf-dev/stable,stable 0.10.0-3 all
  extensible library for reading config (file, S3 etc.) in Go applications

golang-github-knetic-govaluate-dev/stable,stable 3.0.0+git20171022.9aa4983-2 all
  Arbitrary expression evaluation for golang (library)

golang-github-knq-snaker-dev/stable,stable 0.2.0-1 all
  methods to convert CamelCase to and from snake_case

golang-github-knqyf263-go-apk-version-dev/stable,stable 0.0~git20200609.041fdbb-3 all
  parsing apk package versions for golang

golang-github-knqyf263-go-cpe-dev/stable,stable 0.0~git20180327.659663f6-4 all
  golang library for CPE (A Common Platform Enumeration 2.3)

golang-github-knqyf263-go-deb-version-dev/stable,stable 0.0~git20190517.09fca49-2 all
  golang library for parsing deb package versions

golang-github-knqyf263-go-rpm-version-dev/stable,stable 0.0~git20170716.74609b8-1.1 all
  golang library for parsing rpm package versions

golang-github-knqyf263-go-rpmdb-dev/stable,stable 0.0~git20210911.73bd0ce-3 all
  RPM DB library for go

golang-github-knqyf263-go-version-dev/stable,stable 1.1.1-3 all
  Go library for parsing and verifying versions, and version constraints

golang-github-knqyf263-nested-dev/stable,stable 0.0.1-3 all
  Golang library for easier way to handle the nested data structure

golang-github-kolo-xmlrpc-dev/stable,stable 0.0~git20200310.e035052-2 all
  Implementation of the XMLRPC client protocol in Go

golang-github-komkom-toml-dev/stable,stable 0.0~git20211215.3c8ee9d-2 all
  instream TOML to JSON encoder

golang-github-kong-go-kong-dev/stable,stable 0.15.0-1 all
  Go binding for Kong's admin API (library)

golang-github-konsorten-go-windows-terminal-sequences-dev/stable,stable 1.0.2-3 all
  Enable support for Windows Terminal Colors

golang-github-koofr-go-httpclient-dev/stable,stable 0.0~git20200420.93aa7c7-1 all
  Go HTTP client

golang-github-koofr-go-koofrclient-dev/stable,stable 0.0~git20190724.8e5366d-2 all
  Go Koofr client

golang-github-kori-go-listenbrainz-dev/stable,stable 0.0~git20190329.2d7276a-3 all
  Go wrapper for the ListenBrainz API.

golang-github-kotakanbe-go-pingscanner-dev/stable,stable 0.1.0+git20160420.1.58e188a-3.1 all
  Go library to scan live hosts by ping command

golang-github-kotakanbe-logrus-prefixed-formatter-dev/stable,stable 0.0~git20170801.0.75edb2e8-5 all
  Go package for Logrus Prefixed Log Formatter

golang-github-kr-binarydist-dev/stable,stable 0.1.0-1 all
  Go implementation of the bspatch algorithm

golang-github-kr-fs-dev/stable,stable 0.1.0-2 all
  Provides filesystem-related functions for Go

golang-github-kr-pretty-dev/stable,stable 0.3.0-1 all
  Pretty printing for Go values

golang-github-kr-pty-dev/stable,stable 1.1.6-2 all
  Go package for using unix pseudo-terminals

golang-github-kr-text-dev/stable,stable 0.2.0-2 all
  Go package for manipulating paragraphs of text

golang-github-kubernetes-gengo-dev/stable,stable 0.0~git20210915.39e73c8-2 all
  library for generating code based on Go files

golang-github-kurin-blazer-dev/stable,stable 0.5.3-1 all
  Go library for Backblaze's B2

golang-github-kylelemons-godebug-dev/stable,stable 1.1.0-2 all
  Debugging helper utilities for Go

golang-github-kyoh86-xdg-dev/stable,stable 1.2.0-3 all
  helper functions in golang to get xdg config, data and cache files

golang-github-kyokomi-emoji-dev/stable,stable 2.2.12-1 all
  Go library for printing emoji as Unicode characters

golang-github-la5nta-wl2k-go-dev/stable,stable 0.10.0-1 all
  Winlink framework for Go (library)

golang-github-labstack-echo-dev/stable,stable 4.2.1-3 all
  high performance, minimalist Go web framework

golang-github-labstack-gommon-dev/stable,stable 0.2.6-2 all
  common package that provides parser, coloring, logging  for go

golang-github-leemcloughlin-gofarmhash-dev/stable,stable 0.0~git20160919.0.0a055c5-6 all
  Implements Google's Farmhash in Golang

golang-github-leemcloughlin-jdn-dev/stable,stable 0.0~git20201102.6f88db6-3 all
  Julian Day Numbers for Go (library)

golang-github-lensesio-schema-registry-dev/stable,stable 0.1.0-2 all
  Kafka schema registry library

golang-github-leodido-go-urn-dev/stable,stable 1.2.1-3 all
  Go parser for Uniform Resource Names

golang-github-leodido-ragel-machinery-dev/stable,stable 0.0~git20181214.299bdde-1.1 all
  Machineries for development of ragel parsers

golang-github-leonelquinteros-gotext-dev/stable,stable 1.5.0-3 all
  Go GNU gettext utilities package (library)

golang-github-lestrrat-go-envload-dev/stable,stable 0.0~git20180220.a3eb8dd-3 all
  environment variable manipulation library

golang-github-lestrrat-go-pdebug-dev/stable,stable 0.0~git20180220.0.569c974-3 all
  Print debugging library for Go

golang-github-lestrrat-go-strftime-dev/stable,stable 1.0.6-1 all
  fast strftime implementation for Go (library)

golang-github-letsencrypt-challtestsrv-dev/stable,stable 1.2.1+ds-1 all
  ACME challenge mock server

golang-github-liamg-clinch-dev/stable,stable 1.5.6-2 all
  Go library for interactive CLI applications

golang-github-liamg-gifwrap-dev/stable,stable 0.0.7-1 all
  go library for displays GIF files in terminal

golang-github-liamg-tml-dev/stable,stable 0.6.0-1 all
  terminal markup language library for Go

golang-github-lib-pq-dev/stable,stable 1.10.7-2 all
  pure Go Postgres driver for Go’s database/sql package

golang-github-libdns-libdns-dev/stable,stable 0.2.0-2 all
  Core interfaces for universal DNS record manipulation across providers

golang-github-libgit2-git2go-v34-dev/stable,stable 34.0.0-3 all
  Go bindings for libgit2

golang-github-libvirt-libvirt-go-dev/stable,stable 6.0.0+git20200210.224cad8-2 all
  Go bindings for libvirt

golang-github-lightstep-lightstep-tracer-common-dev/stable,stable 1.1.0+git20210210.a8dfcb8-4 all
  files shared by most or all of the Lightstep tracer implementations

golang-github-likexian-gokit-dev/stable,stable 0.25.9-3 all
  toolkit for Go development

golang-github-linkedin-goavro-dev/stable,stable 2.10.1-1 all
  library that encodes and decodes Avro data

golang-github-linuxdeepin-go-dbus-factory-dev/stable,stable 1.9.6-3 all
  Go binding code for automatically generating DBus services (library)

golang-github-linuxdeepin-go-x11-client-dev/stable,stable 0.6.9-1 all
  deepin go x11 client

golang-github-linuxkit-virtsock-dev/stable,stable 0.0~git20170720.0.0416e3d-1.1 all
  Go bindings for Hyper-V and virtio sockets

golang-github-lithammer-dedent-dev/stable,stable 1.1.0-1 all
  Remove any common leading whitespace from multiline strings

golang-github-lithammer-fuzzysearch-dev/stable,stable 1.1.3-1 all
  FuzzySearch provides tiny and fast fuzzy search

golang-github-lk4d4-joincontext-dev/stable,stable 0.0+git20171026.1724345-4 all
  Golang library to join contexts

golang-github-logrusorgru-aurora-dev/stable,stable 3.0.0-2 all
  Golang ultimate ANSI-colors that supports Printf/Sprintf methods (library)

golang-github-logrusorgru-grokky-dev/stable,stable 0.0~git20180829.47edf01-2 all
  pure Golang Grok-like library

golang-github-lpabon-godbc-dev/stable,stable 1.0+git20140613.1.9577782-1.1 all
  Design-by-contract library for Go

golang-github-lsegal-gucumber-dev/stable,stable 0.0~git20160715.0.71608e2-1.1 all
  Transitional package for golang-github-gucumber-gucumber-dev

golang-github-lucas-clemente-quic-go-dev/stable,stable 0.29.0-1 all
  QUIC golang library

golang-github-lucasb-eyer-go-colorful-dev/stable,stable 1.2.0-1 all
  Library for handling color spaces in Go

golang-github-lunixbochs-vtclean-dev/stable,stable 1.0.0-1 all
  strips terminal escapes from text, can preserve color

golang-github-lunny-log-dev/stable,stable 0.0~git20160921.0.7887c61-7 all
  Logging library with sqlite support for Go

golang-github-lxc-incus-dev/stable-backports,stable-backports 6.0.4-1~bpo12+1 all
  Powerful system container and virtual machine manager - library

golang-github-m3db-prometheus-client-model-dev/stable,stable 0.2.1-1 all
  data model artifacts for Prometheus

golang-github-machinebox-graphql-dev/stable,stable 0.2.2-1.1 all
  simple low-level GraphQL HTTP client for Go

golang-github-magiconair-properties-dev/stable,stable 1.8.7-1 all
  Java properties scanner for Go

golang-github-mailgun-minheap-dev/stable,stable 0.0~git20170619.3dbe6c6-3 all
  User-friendly heap container (library)

golang-github-mailgun-multibuf-dev/stable,stable 0.0~git20150714.565402c-3 all
  Seekable and persistable bytes buffer (library)

golang-github-mailgun-timetools-dev/stable,stable 0.0~git20170619.f3a7b8f-2 all
  Go library with various time utilities (library)

golang-github-mailgun-ttlmap-dev/stable,stable 0.0~git20170619.c1c17f7-2 all
  In memory dictionary with TTLs (library)

golang-github-mailru-easyjson-dev/stable,stable 0.7.7-1 all
  Fast JSON serializer for golang - development files

golang-github-makenowjust-heredoc-dev/stable,stable 1.0.0-1 all
  Convert strings to here documents in Go

golang-github-makeworld-the-better-one-go-gemini-dev/stable,stable 0.12.1-2 all
  Client library for the Gemini protocol, in Go

golang-github-makeworld-the-better-one-go-isemoji-dev/stable,stable 1.1.0-3 all
  Go library to test if a string is an emoji

golang-github-malfunkt-iprange-dev/stable,stable 0.9.0-4 all
  IPv4 address parser for the nmap format

golang-github-manifoldco-promptui-dev/stable,stable 0.8.0-2 all
  Interactive prompt for command-line applications (library)

golang-github-maraino-go-mock-dev/stable,stable 0.0~git20180321.4c74c43-3 all
  mocking framework for the Go programming language

golang-github-marekm4-color-extractor-dev/stable,stable 1.2.0-2 all
  simple image color extractor written in Go

golang-github-markbates-goth-dev/stable,stable 1.42.0-9 all
  Multi-provider authentication for Go

golang-github-marstr-collection-dev/stable,stable 0.3.3+git20171004.e631537-1.1 all
  implementation of a few basic data structures

golang-github-marten-seemann-qpack-dev/stable,stable 0.2.1+ds-1 all
  minimal QPACK implementation in Go

golang-github-marten-seemann-qtls-go1-19-dev/stable,stable 0.1.0-3 all
  Go standard library TLS 1.3 implementation, modified for QUIC (Go-1.19)

golang-github-martinlindhe-base36-dev/stable,stable 1.0.0-3 all
  Base36 implementation in golang (library)

golang-github-maruel-natural-dev/stable,stable 1.1.0-3 all
  Natural sorting (natsort) in Go (library)

golang-github-maruel-panicparse-dev/stable,stable 2.3.0-1 all
  Crash your app in style (Go library)

golang-github-masahiro331-go-mvn-version-dev/stable,stable 0.0~git20210429.d3157d6-2 all
  Go library for parsing maven(java) package versions

golang-github-masterminds-goutils-dev/stable,stable 1.1.1-4 all
  Go implementation of some string manipulation libraries of Apache Commons

golang-github-masterminds-semver-dev/stable,stable 3.2.0-1 all
  Semantic versions library in Go

golang-github-masterminds-sprig-dev/stable,stable 3.2.3-5 all
  Useful template functions for Go templates (library)

golang-github-masterminds-vcs-dev/stable,stable 1.12.0-4 all
  VCS Repository Management for Go

golang-github-masterzen-simplexml-dev/stable,stable 0.0~git20190410.31eea30-1 all
  Go library to generate XML content from a naive DOM

golang-github-masterzen-winrm-dev/stable,stable 0.0~git20200615.c42b513-2 all
  Windows remote command execution library for Go

golang-github-masterzen-xmlpath-dev/stable,stable 0.0~git20140218.13f4951-4 all
  subset of the XPath specification for Go (deprecated)

golang-github-matryer-is-dev/stable,stable 1.4.1-1 all
  professional lightweight testing mini-framework for Go

golang-github-matryer-try-dev/stable,stable 1+git20161228.6.9ac251b-4 all
  Simple idiomatic retry package for Go

golang-github-mattermost-xml-roundtrip-validator-dev/stable,stable 0.1.0-4 all
  mitigations for multiple security issues in encoding/xml

golang-github-mattetti-filebuffer-dev/stable,stable 1.0.1-2 all
  implementation of a few file-like interfaces

golang-github-mattn-go-ciede2000-dev/stable,stable 0~20170301-3 all
  Go implementation of the CIE Delta E 2000 Color-Difference algorithm

golang-github-mattn-go-colorable-dev/stable,stable 0.1.13-1 all
  Golang library to colorable writer for windows

golang-github-mattn-go-ieproxy-dev/stable,stable 0.0.9-1 all
  Go package to detect the proxy settings on Windows platform (library)

golang-github-mattn-go-isatty-dev/stable,stable 0.0.17-1 all
  Golang library to implementation isatty interface

golang-github-mattn-go-pointer-dev/stable,stable 0.0~git20200722.90e3959-2 all
  utility for cgo

golang-github-mattn-go-runewidth-dev/stable,stable 0.0.14-1 all
  functions to get fixed width of the character or string

golang-github-mattn-go-shellwords-dev/stable,stable 1.0.10-2 all
  parse line as shell words in Golang

golang-github-mattn-go-sqlite3-dev/stable 1.14.16~ds1-1 amd64
  sqlite3 driver for go that using database/sql

golang-github-mattn-go-tty-dev/stable,stable 0.0.3-2 all
  Go tty library

golang-github-mattn-go-unicodeclass-dev/stable,stable 0.0.1-2 all
  Unicode class package (library)

golang-github-mattn-go-xmlrpc-dev/stable,stable 0.0.3-2 all
  XML-RPC interface for Go (library)

golang-github-mattn-go-xmpp-dev/stable,stable 0.0~git20220712.2eb2349-1 all
  go xmpp library (library)

golang-github-mattn-go-zglob-dev/stable,stable 0.0~git20171230.4959821-1.1 all
  glob library that descends into other directories

golang-github-max-sum-base32768-dev/stable,stable 0.0~git20191205.7937843-2 all
  go implementation of base32768, optimized for UTF-16 (library)

golang-github-maxatome-go-testdeep-dev/stable-backports,stable-backports 1.14.0-1~bpo12+1 all
  Extremely flexible golang deep comparison

golang-github-mazznoer-csscolorparser-dev/stable,stable 0.1.3-2 all
  Go (Golang) CSS color parser library (library)

golang-github-mb0-glob-dev/stable,stable 0.0~git20160210.1eb79d2-3 all
  Configurable globbing and matching algorithm for go (library)

golang-github-mcuadros-go-gin-prometheus-dev/stable,stable 0.1.0+git20190723.c7374e9-5 all
  Gin Web Framework Prometheus metrics exporter

golang-github-mcuadros-go-lookup-dev/stable,stable 0.0~git20171110.5650f26-3 all
  Small library on top of reflect for make lookups to any Structs or Maps

golang-github-mcuadros-go-version-dev/stable,stable 1.0.0-3 all
  version normalizer and comparison library for Go

golang-github-mdlayher-arp-dev/stable,stable 0.0~git20220512.6706a29-1 all
  Go module for the ARP protocol

golang-github-mdlayher-dhcp6-dev/stable,stable 0.0~git20190311.2a67805-2 all
  implements a DHCPv6 server, as described in RFC 3315 (library)

golang-github-mdlayher-ethernet-dev/stable,stable 0.0~git20220221.529eae5-1 all
  Marshaling and unmarshaling of Ethernet frames and VLAN tags

golang-github-mdlayher-ethtool-dev/stable,stable 0.0~git20221212.d43b2a7-1 all
  Go library to control the Linux ethtool generic netlink interface

golang-github-mdlayher-genetlink-dev/stable,stable 1.3.1-1 all
  generic netlink interactions and data types (library)

golang-github-mdlayher-ndp-dev/stable,stable 1.0.0-1 all
  Golang implementation of the Neighbor Discovery Protocol (library)

golang-github-mdlayher-netlink-dev/stable,stable 1.7.1-1 all
  low-level access to Linux netlink sockets (library)

golang-github-mdlayher-netx-dev/stable,stable 0.0~git20220422.c711c2f-1 all
  Collection of small Go networking packages (library)

golang-github-mdlayher-packet-dev/stable,stable 1.1.1-1 all
  Go library for Linux packet sockets (AF_PACKET)

golang-github-mdlayher-raw-dev/stable,stable 0.1.0-1 all
  Read and write data at the raw network interface device level

golang-github-mdlayher-socket-dev/stable,stable 0.4.0-1 all
  low-level network connection type to provide asynchronous I/O (library)

golang-github-mdlayher-vsock-dev/stable,stable 1.2.0-1 all
  Vsock provides access to Linux VM sockets (AF_VSOCK)

golang-github-mdlayher-wifi-dev/stable,stable 0.0~git20220330.a44c70b-1 all
  access to IEEE 802.11 Wi-Fi device actions and statistics (library)

golang-github-mdp-qrterminal-dev/stable,stable 3.0.0-2 all
  Display QR Codes in terminal (library)

golang-github-mendersoftware-go-lib-micro-dev/stable,stable 0.0~git20211108.4e20429+ds1-2 all
  Group of golang packages for developing microservices. (library)

golang-github-mendersoftware-mender-artifact-dev/stable,stable 3.9.0+ds1-1 all
  Library for managing Mender artifact files

golang-github-mendersoftware-openssl-dev/stable,stable 1.1.0-4 all
  OpenSSL bindings for Go.

golang-github-mendersoftware-progressbar-dev/stable,stable 0.0.3+ds1-4 all
  Minimal progressbar used in Mender projects (library)

golang-github-meowgorithm-babyenv-dev/stable,stable 1.3.1-2 all
  Go environment var parsing

golang-github-meowgorithm-babylogger-dev/stable,stable 1.2.0-2 all
  Go HTTP logger middleware

golang-github-mesilliac-pulse-simple-dev/stable,stable 0.0~git20170506.75ac54e-2 all
  Cgo bindings to PulseAudio's Simple API

golang-github-mesos-mesos-go-dev/stable,stable 0.0.6+dfsg-2 all
  Go language bindings for Apache Mesos

golang-github-mgutz-ansi-dev/stable,stable 0.0~git20200706.d51e80e-1 all
  Small, fast library to create ANSI colored strings and codes

golang-github-mgutz-minimist-dev/stable,stable 0.0~git20151219.39eb8cf-2 all
  parse argument options (library)

golang-github-mgutz-str-dev/stable,stable 1.2.0-4 all
  comprehensive set of string functions

golang-github-mgutz-to-dev/stable,stable 1.0.0-3 all
  Convenient type conversion utilities for Go

golang-github-mhilton-openid-dev/stable,stable 0.0~git20181012.aeae87e-2 all
  openid OP endpoint implementation (library)

golang-github-mholt-acmez-dev/stable,stable 0.1.3-2 all
  Premier ACME client library for Go (library)

golang-github-michaeltjones-walk-dev/stable,stable 0.0~git20161122.4748e29-3 all
  Fast parallel version of golang filepath.Walk()

golang-github-microcosm-cc-bluemonday-dev/stable,stable 1.0.20-1 all
  Go library for scrubbing user generated data of unapproved html

golang-github-micromdm-scep-dev/stable,stable 2.1.0-3 all
  SCEP go library

golang-github-miekg-dns-dev/stable,stable 1.1.50-2 all
  DNS protocol library for Go

golang-github-miekg-mmark-dev/stable,stable 1.3.6+dfsg-3 all
  Markdown processor in Go geared for the IETF (Go library)

golang-github-miekg-pkcs11-dev/stable,stable 1.0.3+dfsg1-2 all
  pkcs11 wrapper for Go

golang-github-mikesmitty-edkey-dev/stable,stable 0.0~git20170222.3356ea4-2 all
  generates ED25519 private keys in the OpenSSH private key format (Go library)

golang-github-minio-blake2b-simd-dev/stable,stable 0.0~git20160723.3f5f724-3 all
  Fast hashing using pure Go implementation of BLAKE2b with SIMD instructions

golang-github-minio-dsync-dev/stable,stable 0.0~git20170209.0.b9f7da7-3 all
  Distributed sync package for Go

golang-github-minio-highwayhash-dev/stable,stable 1.0.2-2 all
  Native Go implementation of HighwayHash (library)

golang-github-minio-madmin-go-dev/stable,stable 2.0.7-2 all
  Client SDK providing APIs to manage MinIO services (library)

golang-github-minio-md5-simd-dev/stable,stable 1.1.2-4 all
  SIMD accelerated MD5 package

golang-github-minio-minio-go-dev/stable,stable 6.0.53-1 all
  Go library for Amazon S3 compatible cloud storage

golang-github-minio-minio-go-v7-dev/stable,stable 7.0.46-1 all
  Go library for Amazon S3 compatible cloud storage

golang-github-minio-sha256-simd-dev/stable,stable 1.0.0-1 all
  implementation of SHA256 using SIMD instructions for Intel and ARM

golang-github-miolini-datacounter-dev/stable,stable 1.0.2-2 all
  Golang counters for readers/writers (library)

golang-github-miscreant-miscreant.go-dev/stable,stable 0.0~git20200214.26d3763-3 all
  misuse-resistant encryption library

golang-github-mitch000001-go-hbci-dev/stable,stable 0.4.0-2 all
  client library to use the HBCI standard

golang-github-mitchellh-cli-dev/stable,stable 1.1.1-1 all
  library for implementing command-line interfaces

golang-github-mitchellh-colorstring-dev/stable,stable 0.0~git20150917.0.8631ce9-1.1 all
  Golang library for colorizing strings for terminal output

golang-github-mitchellh-copystructure-dev/stable,stable 1.2.0-1 all
  library for deep copying values in Go

golang-github-mitchellh-go-fs-dev/stable,stable 0.0~git20180402.b7b9ca4-2 all
  Filesystem library for Go, implementing FAT filesystems so far

golang-github-mitchellh-go-homedir-dev/stable,stable 1.1.0-1 all
  Go library for detecting and expanding the user's home directory

golang-github-mitchellh-go-linereader-dev/stable,stable 0.0~git20190213.1b945b3-3 all
  read lines from an io.Reader and puts them onto a channel

golang-github-mitchellh-go-ps-dev/stable,stable 0.0~git20150710.0.e6c6068-1.1 all
  Find, list, and inspect processes from Go (golang)

golang-github-mitchellh-go-testing-interface-dev/stable,stable 1.14.1-1 all
  library to expose *testing.T as an interface

golang-github-mitchellh-go-vnc-dev/stable,stable 0.0~git20150629.723ed98-2 all
  VNC client and server library for Go

golang-github-mitchellh-go-wordwrap-dev/stable,stable 1.0.1-2 all
  Go package for wrapping words into multiple lines

golang-github-mitchellh-hashstructure-dev/stable,stable 1.1.0-1 all
  generate hash values for arbitrary values in Golang

golang-github-mitchellh-iochan-dev/stable,stable 1.0.0-3 all
  Go library for turning `io.Reader` into channels

golang-github-mitchellh-mapstructure-dev/stable,stable 1.5.0-2 all
  library for decoding generic map values into native Go structures

golang-github-mitchellh-multistep-dev/stable,stable 0.0~git20170316.391576a-3 all
  library for building up complex actions using discrete steps

golang-github-mitchellh-panicwrap-dev/stable,stable 0.0~git20191104.b3f3dc3-1 all
  library for catching and handling panics in Go applications

golang-github-mitchellh-prefixedio-dev/stable,stable 0.0~git20190213.5733675-2 all
  library that demultiplexes line-oriented data from an io.Reader

golang-github-mitchellh-reflectwalk-dev/stable,stable 1.0.1-1 all
  library for "walking" complex structures, similar to walking a filesystem

golang-github-mkrautz-goar-dev/stable,stable 0.0~git20150919.282caa8-1.1 all
  library for reading and writing ar archives in Go

golang-github-mmarkdown-mmark-dev/stable,stable 2.2.25+dfsg1-2 all
  powerful markdown processor in Go geared towards the IETF (library)

golang-github-mmcdole-gofeed-dev/stable,stable 1.1.3-1 all
  Parse RSS and Atom feeds in Go (library)

golang-github-mmcdole-goxpp-dev/stable,stable 0.0~git20200921.2f3784f-2 all
  Go XML Pull Parser

golang-github-mmcloughlin-avo-dev/stable,stable 0.5.0-1 all
  Generate x86 Assembly with Go (library)

golang-github-mna-redisc-dev/stable,stable 1.1.7-4 all
  redis cluster client

golang-github-moby-docker-image-spec-dev/stable-backports,stable-backports 1.3.1-2~bpo12+1 all
  Docker Image Specification v1 (library)

golang-github-moby-locker-dev/stable,stable 1.0.1-3 all
  Go library for creating finer-grained locking

golang-github-moby-patternmatcher-dev/stable,stable 0.5.0-2 all
  pattern matcher implemented in Go

golang-github-moby-pubsub-dev/stable,stable 1.0.0-2 all
  Pub/Sub implementation in Go

golang-github-moby-sys-dev/stable,stable 0.0~git20220606.416188a-1 all
  Library to parse mount info and mount filesystems

golang-github-moby-term-dev/stable,stable 0.0~git20221120.abb1982-1 all
  utilities for dealing with terminals

golang-github-modern-go-concurrent-dev/stable,stable 1.0.3-1.1 all
  Modern-go concurrency utilities

golang-github-modern-go-reflect2-dev/stable,stable 1.0.2-2 all
  Reflection API without runtime reflect.Value cost

golang-github-mohae-deepcopy-dev/stable,stable 0.0~git20170929.c48cc78-4 all
  create deep copies of things

golang-github-montanaflynn-stats-dev/stable,stable 0.6.4-2 all
  Statistics package for Go

golang-github-morikuni-aec-dev/stable,stable 1.0.0-3 all
  Golang wrapper for ANSI escape code

golang-github-moul-http2curl-dev/stable,stable 0.0~git20161031.0.4e24498+dfsg-1.1 all
  Go package for convert Golang's http.Request to CURL command line

golang-github-mozillazg-go-httpheader-dev/stable,stable 0.3.1-2 all
  Go library for encoding structs into header fields

golang-github-mozillazg-go-pinyin-dev/stable 0.19.0+ds.1-1+b6 amd64
  Chinese pinyin conversion library for Golang.

golang-github-mreiferson-go-httpclient-dev/stable,stable 0.0~git20160630.0.31f0106-2.1 all
  Go HTTP client with timeouts

golang-github-mreiferson-go-snappystream-dev/stable,stable 0.2.3-3 all
  Go package for framed snappy streams

golang-github-mrjones-oauth-dev/stable,stable 0.0~git20170225.0.3f67d9c-7 all
  OAuth 1.0 Library for Go

golang-github-mrunalp-fileutils-dev/stable,stable 0.5.0-2 all
  collection of utilities for file manipulation in golang

golang-github-mssola-user-agent-dev/stable,stable 0.5.1-1 all
  HTTP User Agent parser for Golang

golang-github-msteinert-pam-dev/stable,stable 0.0~git20170830.0.f4cd9f5-6 all
  Go wrapper module for the PAM API

golang-github-muesli-ansi-dev/stable,stable 0.0~git20211031.c9f0611-2 all
  raw ANSI sequence helpers for Go

golang-github-muesli-cancelreader-dev/stable,stable 0.2.2-2 all
  Cancelable reader for Go (library)

golang-github-muesli-crunchy-dev/stable,stable 0.4.0-2 all
  finds common flaws in passwords

golang-github-muesli-gitcha-dev/stable,stable 0.2.0-2 all
  Go helpers to work with git repositories

golang-github-muesli-go-app-paths-dev/stable,stable 0.2.1-2 all
  retrieve platform-specific paths (app-data, cache, config, etc.)

golang-github-muesli-goprogressbar-dev/stable,stable 0.2.0-2 all
  Print progress bars on the console with Go

golang-github-muesli-reflow-dev/stable,stable 0.3.0-2 all
  collection of (ANSI-sequence aware) text reflow operations & algorithms

golang-github-muesli-sasquatch-dev/stable,stable 0.0~git20210519.30aff9d-2 all
  simple data encryption library for Go

golang-github-muesli-smartcrop-dev/stable,stable 0.3.0+dfsg1-2 all
  smartcrop finds good image crops for arbitrary crop sizes

golang-github-muesli-termenv-dev/stable,stable 0.13.0-2 all
  Advanced ANSI style & color support for your terminal applications

golang-github-muesli-toktok-dev/stable,stable 0.0~git20210519.2b0817e-2 all
  typo/error resilient, human-readable token generator (Go library)

golang-github-muhammadmuzzammil1998-jsonc-dev/stable,stable 0.0~git20201229.615b091-2 all
  JSON with comments for Go!

golang-github-muhlemmer-gu-dev/stable-backports,stable-backports 0.3.1-2~bpo12+1 all
  Generic Utilities for the Go programming language (library)

golang-github-muhlemmer-httpforwarded-dev/stable-backports,stable-backports 0.1.0-2~bpo12+1 all
  Library for parsing the HTTP Forwarded header (RFC-7239)

golang-github-muka-go-bluetooth-dev/stable,stable 5.60-3 all
  Golang bluetooth client based on bluez DBus interfaces (library)

golang-github-munnerz-goautoneg-dev/stable,stable 0.0~git20191010.a7dc8b6-2 all
  golang functions for HTTP Content-Type autonegotiation (library)

golang-github-mvdan-fdroidcl-dev/stable,stable 0.6.0-1 all
  fdroidcl develpoment files

golang-github-mvo5-goconfigparser-dev/stable,stable 0.2.2-1 all
  Python compatible INI parser

golang-github-mvo5-uboot-go-dev/stable,stable 0.4+git256976a-2 all
  Read/write uboot environment

golang-github-mwitkow-go-conntrack-dev/stable,stable 0.0~git20190716.2f06839-3 all
  Go middleware for net.Conn tracking

golang-github-mxk-go-flowrate-dev/stable,stable 0.0~git20140419.0.cca7078-1.1 all
  Go package for limiting and monitoring data flow rate

golang-github-namsral-flag-dev/stable,stable 1.7.4~alpha+git20170814.67f268f-3 all
  Parse flags, environment variables and config files

golang-github-naoina-go-stringutil-dev/stable,stable 0.1.0-5 all
  Faster string utilities implementation for Go

golang-github-naoina-toml-dev/stable,stable 0.1.1-8 all
  TOML parser and encoder library for Golang

golang-github-nats-io-go-nats-dev/stable,stable 1.22.1-1 all
  Golang client for NATS, the cloud native messaging system

golang-github-nats-io-jwt-dev/stable,stable 2.3.0-1 all
  JWT tokens signed using NKeys for the NATS ecosystem

golang-github-nats-io-nats-server-dev/stable,stable 2.9.10-1 all
  High-Performance server for NATS.io (library)

golang-github-nats-io-nkeys-dev/stable,stable 0.3.0-2 all
  public-key signature system based on Ed25519

golang-github-nats-io-nuid-dev/stable,stable 1.0.1-1 all
  NATS Unique Identifiers

golang-github-nbio-st-dev/stable,stable 0.0~git20140626.e9e8d98-3 all
  Simple Test micro-framework for Go

golang-github-nbrownus-go-metrics-prometheus-dev/stable,stable 0.0~git20210712.974a626-4 all
  Prometheus support for go with additional nebula metrics (library)

golang-github-nbutton23-zxcvbn-go-dev/stable,stable 0.1-2.1 all
  Strong password generator in Go

golang-github-ncabatoff-go-seq-dev/stable,stable 0.0~git20180805.b08ef85-4 all
  sequence go values to allow sorting them (library)

golang-github-ncw-go-acd-dev/stable,stable 0.0~git20171120.887eb06-1 all
  Go library for accessing Amazon Cloud Drive

golang-github-ncw-swift-dev/stable,stable 1.0.53-2 all
  Go language interface to Swift / Openstack / Rackspace cloud files

golang-github-ncw-swift-v2-dev/stable,stable 2.0.1-1.1 all
  Go language interface to Swift

golang-github-nebulouslabs-bolt-dev/stable,stable 1.0+git20170823.0.a22e934-1.1 all
  low-level key/value database for Go

golang-github-nebulouslabs-demotemutex-dev/stable,stable 0.0~git20151003.0.235395f-1.1 all
  Allow an RWMutex writelock to be demoted to a readlock.

golang-github-nebulouslabs-ed25519-dev/stable,stable 0.0~git20150728.0.0e573b1-1.1 all
  Go implementation of the Ed25519 signature algorithm

golang-github-nebulouslabs-entropy-mnemonics-dev/stable,stable 0.0~git20170316.0.7b01a64-1.1 all
  Human readable entropy.

golang-github-nebulouslabs-errors-dev/stable,stable 0.0~git20170430.98e1f05-1.1 all
  errors with context, composition, and easy error checking

golang-github-nebulouslabs-fastrand-dev/stable,stable 0.0~git20170512.60b6156-1 all
  10x faster than crypto/rand

golang-github-nebulouslabs-go-upnp-dev/stable,stable 0.0~git20171003.0.1be4557-1.1 all
  Opinionated interface to Internet Gateway Devices

golang-github-nebulouslabs-merkletree-dev/stable,stable 0.0~git20170901.0.8482d02-1.1 all
  Go package for working with Merkle trees

golang-github-neelance-astrewrite-dev/stable,stable 0.0~git20160511.0.9934826-8 all
  Go tool to walk & rewrite AST

golang-github-neelance-sourcemap-dev/stable,stable 0.0~git20151028.0.8c68805-6 all
  Javascript source map reader and writer for Go

golang-github-neowaylabs-wabbit-dev/stable,stable 0.0~git20210927.0.73ad61d-1 all
  Golang AMQP mocking library

golang-github-nesv-go-dynect-dev/stable,stable 0.6.0+git20190806.63e11f6-3 all
  Go client library for Dyn's DynECT API

golang-github-netflix-go-expect-dev/stable,stable 0.0~git20220104.73e0943-1 all
  expect-like golang library to automate terminal/console interactions

golang-github-networkplumbing-go-nft-dev/stable,stable 0.2.0-2 all
  Go bindings for nft utility (library)

golang-github-newrelic-go-agent-dev/stable,stable 3.15.2-9 all
  library for monitoring go applications

golang-github-nfnt-resize-dev/stable,stable 0.0~git20180221.83c6a99-3 all
  Pure golang image resizing

golang-github-ngaut-deadline-dev/stable,stable 0.0~git20170224.0.71c16b1-7 all
  deadline reader/writer

golang-github-ngaut-go-zookeeper-dev/stable,stable 0.0~git20150813.0.9c3719e-7 all
  Native ZooKeeper client for Go

golang-github-ngaut-log-dev/stable,stable 0.0~git20170307.0.d2af3a6-5 all
  Provides a simple log wrapper for ngaut libraries

golang-github-ngaut-pools-dev/stable,stable 0.0~git20141008.0.6352e00-7 all
  provides pools for resources

golang-github-ngaut-sync2-dev/stable,stable 0.0~git20141008.0.7a24ed7-9 all
  Additional synchronization primitives extracted from Vitess

golang-github-nginxinc-nginx-plus-go-client-dev/stable,stable 0.10.0-1 all
  client for NGINX Plus API for Go (library)

golang-github-nicksnyder-go-i18n.v2-dev/stable,stable 2.1.2-1 all
  Translate Go program into multiple languages

golang-github-nightlyone-lockfile-dev/stable,stable 0.0~git20170804.6a197d5-1.1 all
  Golang library to handle locking via pid files

golang-github-niklasfasching-go-org-dev/stable,stable 1.6.6-1 all
  Org mode parser with HTML & pretty-printed Org rendering (Go library)

golang-github-nkovacs-streamquote-dev/stable,stable 1.0.0-5 all
  Go package providing a streaming version of strconv.Quote

golang-github-nlopes-slack-dev/stable,stable 0.1.0-2 all
  Go library for Slack API

golang-github-notedit-janus-go-dev/stable,stable 0.0~git20210115.fdce1b1-2 all
  Janus gateway Go API (library)

golang-github-nozzle-throttler-dev/stable,stable 1.1-4 all
  Fill the gap between WaitGroup and manually monitor goroutines with channels

golang-github-nrdcg-desec-dev/stable,stable 0.6.0-1 all
  Go library for accessing the deSEC API

golang-github-nrdcg-goinwx-dev/stable,stable 0.8.1-1.2 all
  INWX Go API client

golang-github-nsf-termbox-go-dev/stable,stable 0.0~git20160914-3 all
  pure Go implementation of termbox library

golang-github-nu7hatch-gouuid-dev/stable,stable 0.0~git20131221.0.179d4d0-5 all
  pure Go UUID implementation as specified in RFC 4122

golang-github-nwidger-jsoncolor-dev/stable,stable 20161209-2 all
  Produce colorized json output for Go

golang-github-nxadm-tail-dev/stable,stable 1.4.5+ds1-5 all
  Go package for reading from continuously updated files

golang-github-nytimes-gziphandler-dev/stable,stable 1.1.1-1 all
  Golang middleware to gzip HTTP responses

golang-github-odeke-em-cache-dev/stable,stable 0.0~git20151107.0.baf8e436-2 all
  Simple cache with expirable values

golang-github-odeke-em-cli-spinner-dev/stable,stable 0.0~git20150423.610063b-4 all
  Simple spinner library for commandline

golang-github-odeke-em-command-dev/stable,stable 0.0~git20151021.0.91ca5ec-2 all
  cli subcommands for Go

golang-github-odeke-em-ripper-dev/stable,stable 0.0~git20150415.0.bd1a682-3 all
  scrape licenses out of files -- library

golang-github-ogier-pflag-dev/stable,stable 0.0~git20160129.0.45c278a-5.1 all
  POSIX/GNU-style command-line flags for Go

golang-github-oklog-run-dev/stable,stable 1.1.0-2 all
  Universal mechanism to manage goroutine lifecycles

golang-github-oklog-ulid-dev/stable,stable 2.0.2+ds-2 all
  ULID generation library for Golang

golang-github-okzk-sdnotify-dev/stable,stable 0.0~git20180710.d9becc3-4 all
  systemd's service notification protocol (sd_notify)

golang-github-oleiade-reflections-dev/stable,stable 0.1.2+git20131121.2.632977f-2 all
  high level abstractions over Golang reflect library

golang-github-olekukonko-tablewriter-dev/stable,stable 0.0.5-2 all
  generate ASCII tables in Golang

golang-github-olekukonko-ts-dev/stable,stable 0.0~git20140412.0.ecf753e-2 all
  Simple go library to get Terminal Size

golang-github-oneofone-xxhash-dev/stable,stable 1.2.4-1.1 all
  native implementation of the excellent XXHash hashing algorithm

golang-github-onsi-ginkgo-dev/stable,stable 1.16.5-3 all
  BDD Testing Framework for Go (development files)

golang-github-onsi-ginkgo-v2-dev/stable-backports,stable-backports 2.15.0-1~bpo12+1 all
  BDD Testing Framework for Go (development files)

golang-github-op-go-logging-dev/stable,stable 1+git20160315.970db52-2 all
  Golang logging library

golang-github-opencontainers-go-digest-dev/stable,stable 1.0.0-2 all
  Common digest package used across the container ecosystem

golang-github-opencontainers-image-spec-dev/stable,stable 1.1.0~rc2-3 all
  Open Container Initiative (OCI) Image Format Specification

golang-github-opencontainers-runc-dev/stable,stable,stable-security,stable-security 1.1.5+ds1-1+deb12u1 all
  Open Container Project - development files

golang-github-opencontainers-runtime-tools-dev/stable,stable 0.9.0+git20220423.g0105384-2 all
  OCI Runtime Tools

golang-github-opencontainers-selinux-dev/stable,stable 1.10.0+ds1-1 all
  common selinux implementation

golang-github-opencontainers-specs-dev/stable,stable 1.0.2.118.g5cfc4c3-1 all
  Open Container Specifications

golang-github-openfga-go-sdk-dev/stable-backports,stable-backports 0.5.0-1~bpo12+1 all
  OpenFGA SDK for Go (library)

golang-github-opennota-urlesc-dev/stable,stable 0.0~git20160726.0.5bd2802-1.1 all
  Proper URL escaping as per RFC3986 for Go

golang-github-openpeedeep-xdg-dev/stable,stable 0.2.0-3 all
  Cross platform package that follows the XDG Standard

golang-github-openprinting-goipp-dev/stable,stable 1.0.0-2 all
  IPP core protocol in pure Go Library (RFC 8010)

golang-github-openshift-api-dev/stable,stable 4.0+git20190508.81d064c-4 all
  OpenShift API definitions

golang-github-openshift-imagebuilder-dev/stable,stable 1.2.3+ds1-2 all
  Builds container images using Dockerfile as input

golang-github-opensuse-umoci-dev/stable,stable 0.4.7+ds-3 all
  umoci development files

golang-github-opentracing-basictracer-go-dev/stable,stable 1.1.0-3 all
  basic implementation of the OpenTracing API for Go

golang-github-opentracing-contrib-go-grpc-dev/stable,stable 0.0~git20210225.73cb765-3 all
  OpenTracing support for gRPC client or server

golang-github-opentracing-contrib-go-stdlib-dev/stable,stable 1.0.0-2 all
  OpenTracing instrumentation for packages in the Go stdlib

golang-github-opentracing-opentracing-go-dev/stable,stable 1.2.0-2 all
  Go platform API for OpenTracing

golang-github-openzipkin-zipkin-go-dev/stable,stable 0.1.5+git20190103.2fd7f4a-1.1 all
  Zipkin tracer library for go

golang-github-optiopay-kafka-dev/stable,stable 2.1.1-1 all
  Go client library for Apache Kafka

golang-github-oschwald-geoip2-golang-dev/stable,stable 1.4.0-1 all
  Unofficial MaxMind GeoIP2 Reader for Go

golang-github-oschwald-maxminddb-golang-dev/stable,stable 1.8.0-1 all
  MaxMind DB Reader for Go

golang-github-osrg-gobgp-dev/stable,stable 3.10.0-1 all
  BGP implemented in Go (source)

golang-github-ostreedev-ostree-go-dev/stable,stable 0.0+git20190702.759a8c1-5 all
  Golang bindings for httt://github.com/ostreedev/ostree

golang-github-otiai10-copy-dev/stable,stable 1.2.0-3 all
  Golang copy directory recursively (library)

golang-github-ovh-go-ovh-dev/stable,stable 1.1.0-2 all
  Simple go wrapper for the OVH API

golang-github-ovn-org-libovsdb-dev/stable-backports,stable-backports 0.7.0-1~bpo12+1 all
  OVSDB Client Library

golang-github-oxtoacart-bpool-dev/stable,stable 0.0~git20150712.4e1c556-1.1 all
  Buffer/Byte pool for Go

golang-github-packer-community-winrmcp-dev/stable,stable 0.0~git20180921.c76d91c-2 all
  copy files to remote hosts using WinRM (Go library)

golang-github-packethost-packngo-dev/stable,stable 0.2.0-3 all
  Golang API client library for Packet (cloud provider)

golang-github-parnurzeal-gorequest-dev/stable,stable 0.2.15-1.1 all
  Go library for simplified HTTP client

golang-github-pascaldekloe-goe-dev/stable,stable 0.1.0-4 all
  enterprise tooling library for Golang

golang-github-patrickmn-go-cache-dev/stable,stable 2.1.0-1.1 all
  in-memory key:value store/cache (similar to Memcached)

golang-github-paulbellamy-ratecounter-dev/stable,stable 0.2.0+git20170719.a803f0e-4 all
  thread-safe RateCounter implementation in Golang

golang-github-paulrosania-go-charset-dev/stable,stable 0.0~git20151028.0.621bb39-3 all
  character set conversion for Go

golang-github-paypal-gatt-dev/stable,stable 0.0~git20151011.4ae819d-3 all
  building Bluetooth Low Energy peripherals

golang-github-pbnjay-memory-dev/stable,stable 0.0~git20210728.7b4eea6-2 all
  Provides go function to report total system memory

golang-github-pborman-getopt-dev/stable,stable 1.1.0-2 all
  getopt style option parsing for Go (library)

golang-github-pborman-uuid-dev/stable,stable 1.2.0-2 all
  Go bindings to work with UUIDs

golang-github-pd0mz-go-maidenhead-dev/stable,stable 0.0~git20170221.faa09c2-4 all
  Maidenhead Locator system in Golang (library)

golang-github-pearkes-cloudflare-dev/stable,stable 0.0~git20160103.765ac18-3 all
  Cloudflare library written in Go

golang-github-pearkes-dnsimple-dev/stable,stable 0.0~git20161003.0adf7d0-3 all
  DNSimple library written in Go

golang-github-pelletier-go-buffruneio-dev/stable,stable 0.2.0-1 all
  wrapper around bufio to provide buffered runes access

golang-github-pelletier-go-toml/stable 1.9.4-1+b6 amd64
  Go library for the TOML format — command-line programs

golang-github-pelletier-go-toml-dev/stable,stable 1.9.4-1 all
  Go library for the TOML format

golang-github-pelletier-go-toml.v2-dev/stable,stable 2.0.6-1 all
  Go library for the TOML format (go-toml v2)

golang-github-perimeterx-marshmallow-dev/stable,stable 1.1.4-2 all
  flexible and performant JSON unmarshalling in Go

golang-github-petar-gollrb-dev/stable,stable 0.0~git20130427.0.53be0d3+dfsg-7 all
  LLRB implementation of balanced binary search trees for Go

golang-github-peterbourgon-diskv-dev/stable,stable 3.0.0-2 all
  disk-backed key-value store

golang-github-peterh-liner-dev/stable,stable 1.2.2-1 all
  Command line editor with history

golang-github-peterhellberg-link-dev/stable,stable 1.0.0-6 all
  Go package for parsing link headers

golang-github-petermattis-goid-dev/stable,stable 0.0~git20180202.b0b1615-3 all
  programmatically retrieve the current goroutine's ID

golang-github-philhofer-fwd-dev/stable,stable 1.1.1-1 all
  Buffered Reader/Writer

golang-github-phpdave11-gofpdi-dev/stable,stable 1.0.13-2 all
  Go Free PDF Document Importer

golang-github-pierrec-lz4-dev/stable,stable 2.5.2-2 all
  LZ4 compression and decompression in pure Go

golang-github-pierrec-xxhash-dev/stable,stable 0.1.1-4 all
  pure Go implementation of xxHash (32 and 64 bits versions)

golang-github-pin-tftp-dev/stable,stable 2.2.0-3 all
  TFTP server and client library for Golang (library)

golang-github-pingcap-check-dev/stable,stable 0.0~git20170902.0.4c65d06-6 all
  rich testing extension for Go's testing package

golang-github-pion-datachannel-dev/stable,stable 1.5.5-1 all
  Go implementation of WebRTC Data Channels

golang-github-pion-dtls.v2-dev/stable,stable 2.2.6-1 all
  DTLS 1.2 Server/Client implementation for Go

golang-github-pion-ice.v2-dev/stable,stable 2.3.1-1 all
  Go implementation of ICE (library)

golang-github-pion-interceptor-dev/stable,stable 0.1.12-1 all
  Pluggable RTP/RTCP processors for building real time communication

golang-github-pion-logging-dev/stable,stable 0.2.2-2 all
  logging library used by Pion

golang-github-pion-mdns-dev/stable,stable 0.0.7-1 all
  Pure Go implementation of Multicast DNS (library)

golang-github-pion-randutil-dev/stable,stable 0.1.0-2 all
  Helper library for cryptographic and mathmatical randoms

golang-github-pion-rtcp-dev/stable,stable 1.2.10-1 all
  Go implementation of RTCP (library)

golang-github-pion-rtp-dev/stable,stable 1.7.13-1 all
  Go implementation of RTP (library)

golang-github-pion-sctp-dev/stable,stable 1.8.6-1 all
  Go implementation of SCTP

golang-github-pion-sdp-dev/stable,stable 3.0.6-1 all
  Go implementation of SDP (library)

golang-github-pion-srtp.v2-dev/stable,stable 2.0.12-1 all
  Go implementation of SRTP (library)

golang-github-pion-stun-dev/stable,stable 0.4.0-1 all
  Go implementation of STUN

golang-github-pion-transport-dev/stable,stable 2.0.2-1 all
  Transport testing for Pion

golang-github-pion-turn.v2-dev/stable,stable 2.1.0-1 all
  Pion TURN, an API for building TURN clients and servers (library)

golang-github-pion-udp-dev/stable,stable 2.0.1-1 all
  connection-oriented listener over a UDP PacketConn

golang-github-pion-webrtc.v3-dev/stable,stable 3.1.56-2 all
  Pure Go implementation of the WebRTC API (library)

golang-github-pires-go-proxyproto-dev/stable,stable 0.4.2-3 all
  golang library of PROXY protocol for v1 and v2

golang-github-pivotal-golang-clock-dev/stable,stable 0.0~git20151018.0.3fd3c19-2.1 all
  Time provider and clock testing library for Go

golang-github-pkg-browser-dev/stable-backports,stable-backports 0.0~git20210911.681adbf-2~bpo12+1 all
  Helpers to open files, readers, and URLs in a browser window

golang-github-pkg-diff-dev/stable,stable 0.0~git20210226.20ebb0f-1 all
  go library used to create, modify, and print diffs

golang-github-pkg-errors-dev/stable,stable 0.9.1-2 all
  Simple error handling primitives for Go

golang-github-pkg-profile-dev/stable,stable 1.2.1-2 all
  Simple profiling for Go

golang-github-pkg-sftp-dev/stable,stable 1.13.5-2 all
  SFTP support for the golang.org/x/crypto/ssh package

golang-github-pkg-term-dev/stable,stable 1.1.0-4 all
  package term manages POSIX terminals

golang-github-pkg-xattr-dev/stable,stable 0.4.9-1 all
  Extended attribute support for Go

golang-github-pmezard-go-difflib-dev/stable,stable 1.0.0-3 all
  partial port of Python difflib package to Go

golang-github-pmylund-go-cache-dev/stable,stable 0.0~git20150304-2 all
  Go library for in-memory key/value store similar to memcached

golang-github-pointlander-compress-dev/stable,stable 1.1.0-6 all
  parallelized modular compression library

golang-github-pointlander-jetset-dev/stable,stable 1.0.0-4 all
  JetSet is a compressed set of numbers

golang-github-pointlander-peg-dev/stable,stable 1.0.0-5 all
  implementation of a Packrat parser generator - dev package

golang-github-posener-complete-dev/stable,stable 1.2.3-2 all
  bash completion written in go

golang-github-powerman-deepequal-dev/stable,stable 0.1.0-3 all
  Go library with improved reflect.DeepEqual

golang-github-pquerna-cachecontrol-dev/stable,stable 0.0~git20171018.0dec1b3-2 all
  HTTP Cache-Control Parser and Interpretation

golang-github-pquerna-ffjson-dev/stable,stable 0.0~git20181028.e517b90-1.1 all
  faster JSON serialization for Go

golang-github-pquerna-otp-dev/stable,stable 1.3.0-1 all
  Google Authenticator compatible one time passwords for Go

golang-github-proglottis-gpgme-dev/stable,stable 0.1.1-2 all
  Go wrapper for the GPGME library

golang-github-prometheus-alertmanager-dev/stable,stable 0.25.0-1 all
  handle and deliver alerts created by Prometheus -- source

golang-github-prometheus-client-golang-dev/stable,stable 1.14.0-3 all
  Prometheus instrumentation library for Go applications

golang-github-prometheus-client-model-dev/stable,stable 0.3.0-3 all
  data model artifacts for Prometheus

golang-github-prometheus-common-dev/stable,stable 0.39.0-2 all
  common libraries for Prometheus components

golang-github-prometheus-community-pro-bing-dev/stable-backports,stable-backports 0.4.0-1~bpo12+1 all
  library for creating continuous probers

golang-github-prometheus-exporter-toolkit-dev/stable,stable 0.8.2-2 all
  Go library for Prometheus exporters

golang-github-prometheus-procfs-dev/stable,stable 0.8.0-3 all
  Golang library to retrieve metrics from the proc pseudo-filesystem

golang-github-prometheus-prom2json-dev/stable,stable 1.3.0+ds1-2 all
  tool to scrape a Prometheus client and dump the result as JSON (library)

golang-github-protonmail-go-autostart-dev/stable,stable 0.0~git20181114.c527205-2.1 all
  Go library to run a command after login

golang-github-protonmail-go-crypto-dev/stable,stable 0.0~git20230124.0acdc8a-4 all
  Go supplementary cryptography libraries

golang-github-protonmail-go-mime-dev/stable,stable 0.0~git20221031.8fd9bc3-2 all
  Go Mime Wrapper Library (library)

golang-github-protonmail-gopenpgp-dev/stable,stable 2.5.2-1 all
  high-level OpenPGP library built on top of golang crypto library

golang-github-psanford-wormhole-william-dev/stable,stable 1.0.6-2+deb12u1 all
  Magic wormhole CLI and API in Go (library)

golang-github-puerkitobio-goquery-dev/stable,stable 1.1.0+git20170324.3.ed7d758-1.1 all
  jQuery-style HTML manipulation in Go

golang-github-puerkitobio-purell-dev/stable,stable 1.1.1-1 all
  tiny Go library to normalize URLs

golang-github-putdotio-go-putio-dev/stable,stable 0.0~git20190822.19b9c63-3 all
  Put.io Go API client

golang-github-pzhin-go-sophia-dev/stable 0.0~git20191015.0.afcd224-6+b6 amd64
  Golang binding for the Sophia database

golang-github-qor-inflection-dev/stable,stable 0.0~git20151009.0.3272df6-2 all
  Pluralizes and singularizes English nouns

golang-github-quobyte-api-dev/stable,stable 0.0~git20160913.0.bf713b5-1.1 all
  Quobyte API client for Go

golang-github-r3labs-diff-dev/stable,stable 3.0.0-3 all
  diffing library for Go structures

golang-github-rabbitmq-amqp091-go-dev/stable,stable 1.5.0-2 all
  Go client for AMQP 0.9.1 (library)

golang-github-racksec-srslog-dev/stable,stable 0.0~git20180709.a4725f0-2 all
  replacement for the standard Golang library "log/syslog"

golang-github-rafaeljusto-redigomock-dev/stable,stable 3.0.1-2 all
  Unit tests using redigo library (Redis client in go)

golang-github-raintank-met-dev/stable,stable 0.0~git20161103.0.05a94bb-2.1 all
  wrapper around metric client libraries for Go

golang-github-rainycape-unidecode-dev/stable,stable 0.0~git20150906.0.c9cf8cd-6 all
  replace non-ASCII characters with their ASCII approximations

golang-github-rakyll-globalconf-dev/stable,stable 0.0~git20140819-2 all
  Effortlessly persist/retrieve flags in Go programs

golang-github-rakyll-statik-dev/stable,stable 0.1.1-5 all
  embed static files into a Go executable. Dev package

golang-github-rancher-go-rancher-metadata-dev/stable,stable 0.0~git20200311.7f4c936-3 all
  Go Bindings for Rancher-metadata service (library)

golang-github-rclone-ftp-dev/stable,stable 1.0.0-220913-160-1 all
  FTP client package for Go (library)

golang-github-rclone-rclone-dev/stable,stable 1.60.1+dfsg-2 all
  go source code of rclone

golang-github-rcrowley-go-metrics-dev/stable,stable 0.0~git20180125.8732c61-3 all
  Application level metrics capturing library for Go

golang-github-remeh-sizedwaitgroup-dev/stable,stable 0.0~git20180822.5e7302b-1.1 all
  Go library for limiting the amount of concurrent goroutines

golang-github-remyoudompheng-bigfft-dev/stable,stable 0.0+git20190728.6a916e3-2 all
  Golang big integer multiplication library

golang-github-remyoudompheng-go-liblzma-dev/stable,stable 0.0~git20190506.81bf2d4-3 all
  Go bindings for XZ Utils/liblzma

golang-github-renekroon-ttlcache-dev/stable,stable 2.11.1+ds-1 all
  In-memory string-interface{} map with expiration for Golang

golang-github-renstrom-dedent-dev/stable,stable 1.1.0-1 all
  Transitional package for golang-github-lithammer-dedent-dev

golang-github-restic-chunker-dev/stable,stable 0.4.0-2 all
  implementation of Content Defined Chunking (CDC) in Go

golang-github-retailnext-hllpp-dev/stable,stable 1.0.0+git20170901.6e8b6d3-3 all
  HyperLogLog++ cardinality estimation algorithm

golang-github-revel-revel-dev/stable,stable 1.0.0-2 all
  high productivity, full-stack web framework for the Go language

golang-github-reviewdog-errorformat-dev/stable,stable 0.0~git20220309.b075c45-1 all
  Vim's quickfix errorformat implementation in Go (library)

golang-github-rfjakob-eme-dev/stable,stable 1.1.2-1 all
  EME wide-block encryption for Go

golang-github-rhnvrm-simples3-dev/stable,stable 0.6.1-3 all
  AWS S3 Golang Library

golang-github-rican7-retry-dev/stable,stable 0.3.1-2 all
  Go library to perform actions repetitively

golang-github-rickb777-date-dev/stable,stable 1.20.1-1 all
  Go package for working with dates (library)

golang-github-rickb777-plural-dev/stable,stable 1.3.0-2 all
  Simple Go API for pluralisation. (library)

golang-github-rifflock-lfshook-dev/stable,stable 2.2-1.1 all
  local filesystem hook for logrus (Go library)

golang-github-rivo-tview-dev/stable,stable 0.0~git20221029.c4a7e50-1 all
  Rich interactive widgets for terminal-based UIs in Go

golang-github-rivo-uniseg-dev/stable,stable 0.4.2-1 all
  Unicode Text Segmentation for Go

golang-github-riywo-loginshell-dev/stable,stable 0.0~git20190610.2ed199a-3 all
  Golang library to get the login shell of the current user

golang-github-rjeczalik-notify-dev/stable,stable 0.9.3-3 all
  file system event notification library on steroids

golang-github-rkoesters-xdg-dev/stable,stable 0.0~git20181125.edd15b8-2 all
  FreeDesktop.org (xdg) Specs implemented in Go

golang-github-roaringbitmap-roaring-dev/stable,stable 0.4.21-2 all
  Roaring bitmaps in Go

golang-github-robertkrimen-otto-dev/stable,stable 0.0~git20200922.ef014fd-2 all
  JavaScript parser and interpreter in Go

golang-github-robfig-config-dev/stable,stable 0.0~git20141208-4 all
  Configuration file parser for INI format

golang-github-robfig-cron-dev/stable,stable 3.0.1-1 all
  cron library for go

golang-github-robfig-go-cache-dev/stable,stable 0.0.0+git20130306.9fc39e0-4 all
  in-memory key:value store/cache library for Go

golang-github-robfig-pathtree-dev/stable,stable 0.0~git20140121-4 all
  Go library for fast lookups using trees

golang-github-rogpeppe-fastuuid-dev/stable,stable 0.0~git20150106.0.6724a57-2.1 all
  fast generation of 192-bit UUIDs

golang-github-rogpeppe-go-internal-dev/stable,stable 1.9.0-1 all
  Selected Go-internal packages factored out from the standard library

golang-github-rootless-containers-proto-dev/stable,stable 0.1.2-2 all
  Protobuf descriptions for rootless containers purposes

golang-github-rootless-containers-rootlesskit-dev/stable,stable 1.1.0-1 all
  Linux-native "fake root" for rootless containers (library)

golang-github-rs-cors-dev/stable,stable 1.7.0-4 all
  net/http configurable handler to handle CORS requests

golang-github-rs-xid-dev/stable,stable 1.4.0-1 all
  globally unique id generator thought for the web

golang-github-rs-zerolog-dev/stable,stable 1.26.1-2 all
  Zero Allocation JSON Logger

golang-github-rsc-devweb/stable 0.0.0+2016.01.15.git.29cc9e1b05-2+b8 amd64
  Development web server

golang-github-rubenv-sql-migrate-dev/stable,stable 0.0~git20191213.0633851-3 all
  SQL schema migration tool for Go (library)

golang-github-rubyist-tracerx-dev/stable,stable 0.0~git20170927.0.7879593-1 all
  Output tracing information in your Go app based on environment variables

golang-github-russellhaering-goxmldsig-dev/stable,stable 1.2.0-1 all
  Pure Go implementation of XML Digital Signatures

golang-github-russross-blackfriday-dev/stable,stable 1.6.0-1 all
  Blackfriday: a markdown processor for Go

golang-github-russross-blackfriday-v2-dev/stable,stable 2.1.0-1 all
  Blackfriday: a markdown processor for Go version 2

golang-github-ruudk-golang-pdf417-dev/stable,stable 0.0~git20181029.1af4ab5-2 all
  PDF417 barcodes in Golang

golang-github-rwcarlsen-goexif-dev/stable,stable 0.0~git20190401.9e8deec-2 all
  Decode embedded EXIF meta data from image files with Go

golang-github-ryanuber-columnize-dev/stable,stable 2.1.1-2 all
  Easy column formatted output for golang

golang-github-ryanuber-go-glob-dev/stable,stable 1.0.0-2 all
  Basic string globs in golang

golang-github-ryszard-goskiplist-dev/stable,stable 0.0~git20150312.2dfbae5-3 all
  A skip list implementation in Go

golang-github-sabhiram-go-gitignore-dev/stable,stable 1.0.2+git20210923.525f6e1-1 all
  gitignore parser for go

golang-github-safchain-ethtool-dev/stable,stable 0.3.0-1 all
  simple ethtool-like library for Go

golang-github-sahilm-fuzzy-dev/stable,stable 0.1.0-1.1 all
  Go library for fuzzy string matching

golang-github-samalba-dockerclient-dev/stable,stable 0.0~git20160531.0.a303626-2 all
  Docker client library in Go

golang-github-samber-lo-dev/stable-backports,stable-backports 1.38.1-1~bpo12+1 all
  Lodash-style Go library based on Go generics

golang-github-samuel-go-zookeeper-dev/stable,stable 0.0~git20180130.c4fab1a-1 all
  native ZooKeeper client for Go

golang-github-sanity-io-litter-dev/stable,stable 1.5.5-1 all
  Pretty printer library for Go data structures to aid in debugging and testing

golang-github-sap-go-hdb-dev/stable,stable 0.100.10-3 all
  SAP HANA Database Client for Go

golang-github-saracen-walker-dev/stable,stable 0.1.2-1 all
  walker is a faster, parallel version, of filepath.Walk

golang-github-sasha-s-go-deadlock-dev/stable,stable 0.3.1-1 all
  Online deadlock detection in go

golang-github-satori-go.uuid-dev/stable,stable 1.2.0-3 all
  Go package for creating and parsing UUID

golang-github-satta-ifplugo-dev/stable,stable 0.0~git20200508.ca679be-6 all
  network link status notification for Go

golang-github-scaleway-scaleway-sdk-go-dev/stable,stable 1.0.0~beta12-1 all
  Scaleway API SDK for Go

golang-github-schollz-closestmatch-dev/stable,stable 2.1.0-3 all
  Golang library for fuzzy matching within a set of strings

golang-github-schollz-progressbar-dev/stable,stable 3.8.2-1 all
  thread-safe progress bar for Golang applications

golang-github-scylladb-termtables-dev/stable,stable 0.0~git20191203.c4c0b6d-3 all
  Fast and simple ASCII table generation.

golang-github-sean--pager-dev/stable,stable 0.0~git20180208.666be9b-3 all
  pager support for Go

golang-github-sean--seed-dev/stable,stable 0.0~git20170313.e2103e2-3 all
  securely seed Go's random number generator

golang-github-seandolphin-bqschema-dev/stable,stable 1.0.0-1 all
  Go library to process Google Big Query

golang-github-sebdah-goldie-dev/stable,stable 2.5.3+dfsg-2 all
  Golden file testing for Go (library)

golang-github-sebest-xff/stable 0.0~git20160910.6c115e0-2+b6 amd64
  Golang Middleware to handle X-Forwarded-For Header

golang-github-sebest-xff-dev/stable,stable 0.0~git20160910.6c115e0-2 all
  Golang Middleware to handle X-Forwarded-For Header (development files)

golang-github-seccomp-libseccomp-golang-dev/stable,stable 0.10.0-3 all
  golang bindings for libseccomp

golang-github-secure-io-sio-go-dev/stable,stable 0.3.1-2 all
  Authenticated encryption for streams in Go (library)

golang-github-secure-systems-lab-go-securesystemslib-dev/stable-backports,stable-backports 0.4.0-2~bpo12+1 all
  Cryptographic routines for Golang Secure Systems Lab projects at NYU (library)

golang-github-segmentio-fasthash-dev/stable,stable 1.0.3-3 all
  Fast, efficient hashing algorithms library

golang-github-segmentio-kafka-go-dev/stable,stable 0.2.1-1.1 all
  Kafka library in Go

golang-github-segmentio-ksuid-dev/stable,stable 1.0.4-2 all
  K-Sortable Globally Unique IDs (Go library)

golang-github-seiflotfy-cuckoofilter-dev/stable,stable 0.0~git20201222.bc60055-2 all
  Bloom filter replacement using cuckoo hashing

golang-github-sercand-kuberesolver-dev/stable,stable 3.1.1-1 all
  Grpc Load Balancer with Kubernetes resolver (library)

golang-github-serenize-snaker-dev/stable,stable 0.0~git20170425.0.1c7f653-1.1 all
  Convert camel cased strings to snake case and back

golang-github-sergi-go-diff-dev/stable,stable 1.2.0-2 all
  Diff, match and patch text in Go

golang-github-sevlyar-go-daemon-dev/stable,stable 0.1.5-3 all
  library for writing system daemons

golang-github-shenwei356-bio-dev/stable,stable 0.6.2-1 all
  lightweight and high-performance bioinformatics package in Golang (library)

golang-github-shenwei356-bpool-dev/stable,stable 0.0~git20160710.f9e0ee4-3 all
  Buffer/Byte pool for Go (library)

golang-github-shenwei356-breader-dev/stable,stable 0.3.1-1 all
  buffered file reader library for Go

golang-github-shenwei356-bwt-dev/stable,stable 0.6.0-2 all
  Burrows-Wheeler Transform and FM-index in golang (library)

golang-github-shenwei356-kmers-dev/stable,stable 0.1.0-2 all
  bit-packed k-mers methods for Golang (library)

golang-github-shenwei356-natsort-dev/stable,stable 0.0~git20190418.600d539-3 all
  natural strings sorting in Go (library)

golang-github-shenwei356-unik.v5-dev/stable,stable 5.0.1-2 all
  A k-mer serialization package for Golang (library)

golang-github-shenwei356-util-dev/stable,stable 0.5.0-1 all
  Golang utility packages (library)

golang-github-shenwei356-xopen-dev/stable,stable 0.0~git20181203.f4f16dd-2 all
  open files for buffered reading and writing in Go (library)

golang-github-shibukawa-configdir-dev/stable,stable 0.0~git20170330.e180dbd-1.1 all
  multi platform library of configuration directories for Golang

golang-github-shiena-ansicolor-dev/stable,stable 0.0~git20151119.0.a422bbe-3 all
  Ansicolor library for Golang

golang-github-shirou-gopsutil-dev/stable,stable 3.22.10-1 all
  Go package implementing psutils

golang-github-shogo82148-go-shuffle-dev/stable,stable 0.0~git20180218.27e6095-1 all
  Primitives for shuffling slices and user-defined collections in Go

golang-github-shopify-logrus-bugsnag-dev/stable,stable 0.0~git20171204.577dee2-3 all
  logrus-bugsnag is a hook that interfaces Logrus with Bugsnag

golang-github-shopify-sarama-dev/stable,stable 1.22.1-1 all
  Go library for Apache Kafka

golang-github-shopspring-decimal-dev/stable,stable 1.2.0-2 all
  arbitrary-precision fixed-point decimal numbers in go

golang-github-showmax-go-fqdn-dev/stable,stable 1.0.0-4 all
  Golang library to provide local machine FQDN

golang-github-shurcool-githubv4-dev/stable,stable 0.0~git20220520.0b4e329-1 all
  Go client library for accessing GitHub GraphQL API v4

golang-github-shurcool-gopherjslib-dev/stable,stable 0.0~git20200209.30f639d-3 all
  library that provides helpers for in-process GopherJS compilation

golang-github-shurcool-graphql-dev/stable,stable 0.0~git20220606.3cf50f8-1 all
  GraphQL client implementation (Go library)

golang-github-shurcool-httpfs-dev/stable,stable 0.0~git20190707.8d4bc4b-3 all
  Go library for working with the http.FileSystem interface

golang-github-shurcool-httpgzip-dev/stable,stable 0.0~git20190516.1c7afaa-4 all
  go library for use gzip compression when serving HTTP requests

golang-github-shurcool-sanitized-anchor-name-dev/stable,stable 1.0.0-3 all
  Go package for creating sanitized anchor names

golang-github-siddontang-go-dev/stable,stable 0.0~git20170517.0.cb568a3-5 all
  Collection of siddontang libraries for Go

golang-github-siddontang-rdb-dev/stable,stable 0.0~git20150307.0.fc89ed2-6 all
  Read Redis rdb files in Go

golang-github-sigstore-sigstore-dev/stable-backports,stable-backports 1.4.0-2~bpo12+1 all
  Common go library shared across sigstore services and clients (library)

golang-github-sirupsen-logrus-dev/stable,stable 1.9.0-1 all
  Logrus: a logging library for Go

golang-github-sjoerdsimons-ostree-go-dev/stable,stable 0.0~git20201014.8fae757-2 all
  Golang bindings for OSTree

golang-github-skarademir-naturalsort-dev/stable,stable 0.0~git20150715.0.69a5d87-1.1 all
  simple natural sorter for Go Strings

golang-github-skeema-mybase-dev/stable,stable 1.0.16-1 all
  CLI framework with MySQL-like option handling (library)

golang-github-skip2-go-qrcode-dev/stable,stable 0.0~git20200617.da1b656-4 all
  QR Code encoder (Go library)

golang-github-skratchdot-open-golang-dev/stable,stable 0.0~git20160302.0.75fb7ed-2.1 all
  library to open an URI in the user's preferred application

golang-github-slack-go-slack-dev/stable,stable 0.11.3-2 all
  access the Slack API in Go (library)

golang-github-slackhq-nebula-dev/stable,stable 1.6.1+dfsg-3 all
  performant, scalable network overlay (Go library)

golang-github-smallfish-simpleyaml-dev/stable,stable 0.0~git20170911.a320310-2 all
  Go package to interact with arbitrary YAML

golang-github-smallstep-assert-dev/stable,stable 0.0~git20200723.82e2b9b-4 all
  simple assertion framework written in go

golang-github-smallstep-certificates-dev/stable,stable 0.19.0-1 all
  go libraries for private certificate authority

golang-github-smallstep-cli-dev/stable,stable 0.15.16+ds-3 all
  go library for working with x509 certificates

golang-github-smallstep-nosql-dev/stable,stable 0.3.8-2 all
  abstraction layer for data persistency written in golang

golang-github-smallstep-truststore-dev/stable,stable 0.12.1-1 all
  Go library for local installation of development certificates

golang-github-smartystreets-assertions-dev/stable,stable 1.10.1+ds-2 all
  fluent assertion-style functions

golang-github-smartystreets-go-aws-auth-dev/stable,stable 1.0.0-1 all
  Go library to signs requests to Amazon Web Services

golang-github-smartystreets-goconvey-dev/stable,stable 1.6.4+dfsg-1 all
  Go testing in browser - sources

golang-github-smartystreets-gunit-dev/stable,stable 1.2.0+git20180314.6f0d627-2.1 all
  xUnit-style test fixture adapter for go test

golang-github-smira-commander-dev/stable,stable 0.0~git20140515.f408b00-1.1 all
  library to provide command-line commands and sub-commands

golang-github-smira-flag-dev/stable,stable 0.0~git20170926.695ea5e-1.1 all
  flag with a Get() interface{} method

golang-github-smira-go-aws-auth-dev/stable,stable 0.0~git20160320.0070896-1.1 all
  signs requests to Amazon Web Services

golang-github-smira-go-ftp-protocol-dev/stable,stable 0.0~git20140829.066b75c-2 all
  plugin for http.Transport with support for ftp:// protocol

golang-github-smira-go-xz-dev/stable,stable 0.0~git20150414.0c531f0-2.1 all
  simple .xz decompression using external program (xz --decompress)

golang-github-snapcore-snapd-dev/stable,stable 2.57.6-1 all
  snappy development go packages.

golang-github-socketplane-libovsdb-dev/stable,stable 0.1+git20160503.9.d4b9e7a53548-2.1 all
  OVSDB client library written in Go

golang-github-soheilhy-cmux-dev/stable,stable 0.1.5-2 all
  serve different services on the same port

golang-github-soniah-dnsmadeeasy-dev/stable,stable 1.1+git20150117.5578a8c-5 all
  DNSMadeEasy library written in Go

golang-github-soniah-gosnmp-dev/stable,stable 1.35.0-1 all
  Transitional dummy package

golang-github-soundcloud-go-runit-dev/stable,stable 0.0~git20150630.06ad41a-3 all
  Go library wrapping runit service status

golang-github-sourcegraph-go-lsp-dev/stable,stable 0.0~git20200429.219e11d-2 all
  Go types for the Language Server Protocol

golang-github-sourcegraph-jsonrpc2-dev/stable,stable 0.1.0-3 all
  client and server implementation of JSON-RPC 2.0 (library)

golang-github-spacejam-loghisto-dev/stable,stable 0.0~git20150819.0.3233097-2 all
  counters and logarithmically bucketed histograms for distributed systems

golang-github-spaolacci-murmur3-dev/stable,stable 1.1-3 all
  Native MurmurHash3 Go implementation

golang-github-spf13-afero-dev/stable,stable 1.9.3-1 all
  FileSystem Abstraction System for Go

golang-github-spf13-cast-dev/stable,stable 1.5.0-2 all
  Safe and easy casting from one type to another in Go

golang-github-spf13-cobra-dev/stable,stable 1.6.1-1 all
  Go library for creating powerful modern Go CLI applications

golang-github-spf13-fsync-dev/stable,stable 0.9.0-2 all
  Keeps files or directories in sync for Go

golang-github-spf13-jwalterweatherman-dev/stable,stable 1.1.0+really1.1.0-2 all
  Go library for both printing to the terminal and logging to files

golang-github-spf13-nitro-dev/stable,stable 0.0~git20131003.0.24d7ef3-4.1 all
  Quick and easy performance analyzer library for Go

golang-github-spf13-pflag-dev/stable,stable 1.0.6~git20210604-d5e0c0615ace-1 all
  Drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags

golang-github-spf13-viper-dev/stable,stable 1.10.1-1 all
  Go configuration with fangs

golang-github-spkg-bom-dev/stable,stable 0.0~git20160624.59b7046-3 all
  Strip UTF-8 byte order marks

golang-github-src-d-gcfg-dev/stable,stable 1.4.0-3 all
  reads INI-style configuration files into Go structs

golang-github-ssgelm-cookiejarparser-dev/stable,stable 1.0.0-3 all
  Go library that parses a curl cookiejar file into a Go http.CookieJar

golang-github-ssor-bom-dev/stable,stable 0.0~git20170718.0.6386211-5 all
  small Go library to clean bom from byte array or reader

golang-github-stacktic-dropbox-dev/stable,stable 0.0~git20160424.0.58f839b-2.1 all
  Go client library for the Dropbox core and Datastore API

golang-github-stathat-go-dev/stable,stable 0.0~git20130314.0.01d012b-2.1 all
  Go package for reporting stat counts and values to StatHat

golang-github-stefanberger-go-pkcs11uri-dev/stable-backports,stable-backports 0.0~git20201008.78d3cae-2~bpo12+1 all
  Golang pkcs11 URI library (library)

golang-github-steveyen-gtreap-dev/stable,stable 0.0~git20150807.0.0abe01e-7 all
  gtreap is an immutable treap implementation in the Go Language

golang-github-stevvooe-resumable-dev/stable,stable 0.0~git20150521.0.51ad441-2.1 all
  Subset of the Go `crypto` Package with a Resumable Hash Interface

golang-github-stoewer-go-strcase-dev/stable,stable 1.2.0-4 all
  go library for converting between naming formats

golang-github-streadway-amqp-dev/stable,stable 0.0~git20200716.e6b33f4-3 all
  Go client for AMQP 0.9.1

golang-github-stretchr-objx-dev/stable,stable 0.5.0-1 all
  Go package for dealing with maps, slices, JSON and other data

golang-github-stretchr-testify-dev/stable,stable 1.8.1-1 all
  sacred extension to the standard Go testing package

golang-github-stvp-go-udp-testing-dev/stable,stable 0.0~git20150316.0.abcd331-3 all
  UDP test helpers for Go

golang-github-stvp-roll-dev/stable,stable 0.0~git20170522.3627a5c-4 all
  Simple(er) Rollbar client for Go

golang-github-stvp-tempredis-dev/stable,stable 0.0~git20181119.b82af84-1 all
  Go package to start and stop temporary redis-server processes

golang-github-suapapa-go-eddystone-dev/stable,stable 1.3.1-1 all
  golang library for supporting Eddystone

golang-github-subosito-gotenv-dev/stable,stable 1.2.0+git20190917.de67a66-3 all
  Load environment variables from `.env` or `io.Reader` in Go.

golang-github-surma-gocpio-dev/stable,stable 1.1.0+git20160926.fcb6877-1.1 all
  Go package for cpio archives

golang-github-svanharmelen-jsonapi-dev/stable,stable 1.0.0+git20180618.0c0828c-4 all
  jsonapi.org style payload serializer and deserializer

golang-github-svent-go-flags-dev/stable,stable 1-2 all
  go library for parsing command line arguments

golang-github-svent-go-nbreader-dev/stable,stable 0~20150201-4 all
  non-blocking io.Reader for go

golang-github-sylabs-json-resp-dev/stable,stable 0.6.0-3 all
  marshall and unmarshall response data and errors in JSON format

golang-github-sylabs-sif-dev/stable,stable 2.8.3-1 all
  reference implementation of the Singularity Image Format (SIF)

golang-github-syncthing-notify-dev/stable,stable 0.0~git20210616.c6b7342-2 all
  File system event notification library on steroids

golang-github-syncthing-syncthing-dev/stable,stable 1.19.2~ds1-1 all
  decentralized file synchronization - dev package

golang-github-syndtr-goleveldb-dev/stable,stable 0.0~git20200815.5c35d60-1 all
  LevelDB key/value database in Go

golang-github-tailscale-tscert-dev/stable,stable 0.0~git20220316.54bbcb9-2 all
  Minimal library implementing parts of the Tailscale client API

golang-github-tarm-serial-dev/stable,stable 0.0+git20151113-5.1 all
  Go package for serial port communucation

golang-github-tatsushid-go-prettytable-dev/stable,stable 0.0~git20141013.ed2d14c-3 all
  Builds a simple text table with a multibyte, doublewidth character support

golang-github-tchap-go-patricia-dev/stable,stable 2.3.1-1 all
  generic patricia trie (also called radix tree)

golang-github-tcnksm-go-gitconfig-dev/stable,stable 0.1.2-1.1 all
  Golang library for gitconfig values

golang-github-tdewolff-minify-dev/stable,stable 2.12.4-2 all
  Go minifiers for web formats

golang-github-tdewolff-parse-dev/stable,stable 2.6.5-1 all
  Go parsers for web formats

golang-github-tdewolff-test-dev/stable,stable 1.0.7-1 all
  Go test helper functions

golang-github-tealeg-xlsx-dev/stable,stable 1.0.3+git20181024.dbf71b6-2 all
  golang library for reading and writing XLSX files

golang-github-teambition-rrule-go-dev/stable,stable 1.8.1-1 all
  Go library for working with recurrence rules for calendar dates. (library)

golang-github-templexxx-cpu-dev/stable,stable 0.0.9-3 all
  Provides CPU related information in Go

golang-github-templexxx-cpufeat-dev/stable,stable 0.0~git20170927.0.3794dfb-5 all
  internal/cpu in Go

golang-github-templexxx-reedsolomon-dev/stable,stable 0.1.1+git20170927.7092926-4 all
  Reed-Solomon Erasure Code engine in Go

golang-github-templexxx-xorsimd-dev/stable,stable 0.4.1-2 all
  XOR code engine in pure Go, more than 270GB/S per core

golang-github-tent-canonical-json-go-dev/stable,stable 0.0~git20130607.0.96e4ba3-3 all
  Canonical JSON marshaling in Go

golang-github-tent-http-link-go-dev/stable,stable 0.0~git20130702.0.ac974c6-6 all
  HTTP Link parsing in Go

golang-github-teris-io-shortid-dev/stable,stable 1.0+git20171029.771a37c-3 all
  auper short, fully unique, non-sequential and URL friendly Ids

golang-github-terra-farm-udnssdk-dev/stable,stable 1.3.5-1 all
  ultradns SDK

golang-github-tevino-abool-dev/stable,stable 0.0~git20170917.9b9efcf-2 all
  Atomic Boolean library, optimized for performance yet simple to use

golang-github-texttheater-golang-levenshtein-dev/stable,stable 1.0.1-2 all
  Go implementation of the Levenshtein algorithm (library)

golang-github-thales-e-security-pool-dev/stable,stable 0.0.2-4 all
  Collection of go packages from Vitess (library)

golang-github-thalesignite-crypto11-dev/stable,stable 1.2.5-2 all
  implementation of Golang crypto interfaces with PKCS#11 as backend

golang-github-thcyron-uiprogress-dev/stable,stable 0.0~git20171218.25e98ff-3 all
  render progress bars in terminal applications

golang-github-thecreeper-go-notify-dev/stable,stable 0.2.0-4 all
  implementation of the GNOME DBus Notifications Specification

golang-github-thedevsaddam-gojsonq-dev/stable,stable 2.5.2-4 all
  Simple Go package to query over JSON data (library)

golang-github-thejerf-suture-dev/stable,stable 4.0.1-1 all
  supervisor trees for Go

golang-github-theupdateframework-go-tuf-dev/stable-backports,stable-backports 0.5.2-5~bpo12+1 all
  Securing software in golang (library)

golang-github-thlib-go-timezone-local-dev/stable,stable 0.0~git20210907.ef149e4-5 all
  get the full name of the local timezone (Go library)

golang-github-thoas-go-funk-dev/stable,stable 0.9.3-1 all
  Modern Go utility library which provides helpers (map, find, contains, filter)

golang-github-thoj-go-ircevent-dev/stable,stable 0.2-2 all
  Event based IRC Client library in Go

golang-github-thomasrooney-gexpect-dev/stable,stable 0.0~git20161231.5482f03-4 all
  pure golang expect library

golang-github-thomsonreuterseikon-go-ntlm-dev/stable,stable 0.0~git20151030.0.b00ec39-1.1 all
  NTLM Implementation for Go

golang-github-tideland-golib-dev/stable,stable 4.24.2-1 all
  collection of misc Go packages

golang-github-tidwall-btree-dev/stable,stable 0.3.0-2 all
  B-Tree implementation for Go

golang-github-tidwall-buntdb-dev/stable,stable 1.1.7-1 all
  embeddable, in-memory key/value database for Go

golang-github-tidwall-gjson-dev/stable,stable 1.14.4-2 all
  JSON parser for Go

golang-github-tidwall-grect-dev/stable,stable 0.1.0-1 all
  Get the outer rectangle from GeoJSON, WKT, WKB

golang-github-tidwall-match-dev/stable,stable 1.1.1-2 all
  simple string pattern matcher for Go

golang-github-tidwall-pretty-dev/stable,stable 1.0.5-1 all
  Efficient JSON beautifier and compactor for Go

golang-github-tidwall-rtree-dev/stable,stable 0.0~git20180113.6cd4270-3 all
  RTree implementation for Go

golang-github-tidwall-sjson-dev/stable-backports,stable-backports 1.2.5-2~bpo12+1 all
  Set JSON values very quickly in Go (library)

golang-github-tidwall-tinyqueue-dev/stable,stable 0.1.1-2 all
  Binary heap priority queues in Go

golang-github-timberio-go-datemath-dev/stable,stable 0.1.0+git20200323.74ddef6-3 all
  Go library for parsing Elasticsearch datemath expressions

golang-github-tinylib-msgp-dev/stable,stable 1.1.6-1 all
  Go code generator for MessagePack (source)

golang-github-tjfoc-gmsm-dev/stable,stable 1.3.0+ds-4 all
  GM SM2/3/4 library based for Golang

golang-github-tklauser-go-sysconf-dev/stable,stable 0.3.9-2 all
  sysconf for Go, without using cgo (library)

golang-github-tklauser-numcpus-dev/stable,stable 0.3.0-2 all
  Go module to get the number of CPUs (library)

golang-github-tmc-grpc-websocket-proxy-dev/stable,stable 0.0~git20200427.3cfed13-3 all
  proxy to upgrade grpc-gateway streaming endpoints to use websockets

golang-github-tmc-scp-dev/stable,stable 0.0+20170825-2 all
  basic implementation of scp for go

golang-github-tobi-airbrake-go-dev/stable,stable 0.0~git20150109-3 all
  Go library to report exceptions and errors to the Airbrake service

golang-github-tombuildsstuff-giovanni-dev/stable,stable 0.20.0-1 all
  alternative Azure Storage SDK for Go

golang-github-tonistiigi-fsutil-dev/stable,stable 0.0~git20200331.f427cf1-2 all
  Incremental file directory sync tools (library)

golang-github-tonistiigi-units-dev/stable,stable 0.0~git20180711.6950e57-2 all
  Simple byte size formatting library

golang-github-toorop-go-dkim-dev/stable,stable 0.0~git20201103.e1cd1a0-2 all
  DKIM package for golang (library)

golang-github-toqueteos-webbrowser-dev/stable,stable 1.2.0+git20190725.dc97d39-2 all
  Convenient Web-browser controller library for Go

golang-github-traefik-yaegi-dev/stable,stable 0.14.3-1 all
  Another Elegant Go Interpreter - dev package

golang-github-ttacon-chalk-dev/stable,stable 0.1-2 all
  Go library for prettifying terminal/console output

golang-github-tv42-httpunix-dev/stable,stable 0.0~git20150427.b75d861-3 all
  library to talk HTTP over Unix domain sockets

golang-github-twinj-uuid-dev/stable,stable 0.10.0+git20160909.96.7bbe408-7 all
  RFC 4122 and DCE 1.1 compliant UUIDs in Go

golang-github-twmb-murmur3-dev/stable,stable 1.1.6-1 all
  fast, fully fledged murmur3 in Go

golang-github-twotwotwo-sorts-dev/stable,stable 0.0~git20160814.bf5c1f2-3 all
  Parallel and radix sorting in Go

golang-github-twstrike-otr3-dev/stable,stable 0.0~git20161015.0.744856d-3.1 all
  Go implementation of the OTR 3 protocol

golang-github-u-root-uio-dev/stable,stable 0.0~git20220204.dac05f7-2 all
  commonly used utilities for u-root

golang-github-ua-parser-uap-go-dev/stable,stable 0.0~git20211112.00c877e-2 all
  Go implementation of ua-parser

golang-github-ugorji-go-codec/stable 1.2.8-1+b3 amd64
  idiomatic codec and rpc lib for msgpack, cbor, json (codecgen)

golang-github-ugorji-go-codec-dev/stable,stable 1.2.8-1 all
  idiomatic codec and rpc lib for msgpack, cbor, json (library)

golang-github-ugorji-go-msgpack-dev/stable,stable 0.0~git20130605.792643-5 all
  encode/decode and rpc library for msgpack and Binc

golang-github-ulikunitz-xz-dev/stable,stable 0.5.6-2 all
  Pure golang package for reading and writing xz-compressed files

golang-github-ungerik-go-sysfs-dev/stable,stable 0.0~git20210209.68e6f4d-1 all
  Go package for Linux sysfs

golang-github-unknwon-com-dev/stable,stable 1+git20170819.7677a1d-2 all
  commonly used functions for Golang

golang-github-unknwon-goconfig-dev/stable,stable 1.0.0-1 all
  configuration file (.ini) parser

golang-github-unknwon-paginater-dev/stable,stable 0.0~git20170405.0.45e5d63-7 all
  Helper module for custom pagination calculation

golang-github-unrolled-render-dev/stable,stable 1.4.0-2 all
  Easily render JSON, XML, binary, or HTML templates responses (library)

golang-github-unrolled-secure-dev/stable,stable 1.0.9-2 all
  HTTP middlewares for Go that facilitates security checks (library)

golang-github-urfave-cli-dev/stable,stable 1.22.9-2 all
  package for building command line apps in Go

golang-github-urfave-cli-v2-dev/stable,stable 2.3.0-2 all
  package for building command line apps in Go (version 2)

golang-github-urfave-negroni-dev/stable,stable 0.2.0-3 all
  Idiomatic HTTP Middleware for Golang

golang-github-valyala-bytebufferpool-dev/stable,stable 1.0.0-3 all
  Anti-memory-waste byte buffer pool for go

golang-github-valyala-fasthttp-dev/stable,stable 1:1.31.0-4 all
  fast HTTP library for Go

golang-github-valyala-fastjson-dev/stable,stable 1.6.3-4 all
  fast JSON parser and validator for Go (library)

golang-github-valyala-fastrand-dev/stable,stable 1.1.0-2 all
  fast and scalable pseudorandom generator for Go (library)

golang-github-valyala-fasttemplate-dev/stable,stable 1.2.2+ds1-1 all
  simple and fast template engine for Go

golang-github-valyala-gozstd-dev/stable,stable 1.17.0+ds1-1 all
  go wrapper for zstd (library)

golang-github-valyala-histogram-dev/stable,stable 1.2.0+ds-2 all
  fast histograms for Go (library)

golang-github-valyala-quicktemplate-dev/stable,stable 1.7.0+ds1-1 all
  fast, powerful, yet easy to use template engine for Go (library)

golang-github-valyala-tcplisten-dev/stable,stable 0.0~git20210309.652d3b4-2 all
  Customizable TCP net.Listener for Go (library)

golang-github-varlink-go-dev/stable,stable 0.4.0-2 all
  Golang implementation of the Varlink protocol

golang-github-vaughan0-go-ini-dev/stable,stable 0.0~git20130923.0.a98ad7e-3 all
  INI parsing library for Go

golang-github-vbatts-go-mtree-dev/stable,stable 0.4.4-2 all
  file systems verification library, in likeness of mtree(8)

golang-github-vbatts-tar-split-dev/stable,stable 0.11.2+ds1-1 all
  tar archive assembly/disassembly (source)

golang-github-vbauerster-mpb-dev/stable,stable 7.3.2-1 all
  multi progress bar for Go cli applications

golang-github-vektah-gqlparser-dev/stable,stable 2.5.1-2 all
  Port of the parser from graphql-js into golang (library)

golang-github-viant-assertly-dev/stable,stable 0.5.4-1 all
  Arbitraty datastructure validation golang library

golang-github-viant-toolbox-dev/stable,stable 0.33.2-4 all
  Toolbox - golang utility library

golang-github-victoriametrics-fastcache-dev/stable,stable 1.12.0+ds1-1 all
  fast thread-safe in-memory cache for big number of entries in Go (library)

golang-github-victoriametrics-metrics-dev/stable,stable 1.23.0+ds1-1 all
  lightweight alternative to prometheus/client_golang (library)

golang-github-victoriametrics-metricsql-dev/stable,stable 0.49.0+ds1-1 all
  standalone PromQL and MetricsQL parser (library)

golang-github-victoriametrics-victoriametrics-dev/stable,stable 1.79.5+ds1-2 all
  fast, cost-effective and scalable time series database (library)

golang-github-viki-org-dnscache-dev/stable,stable 0.0~git20130720.0.c70c1f2-1.1 all
  DNS cache for Go

golang-github-vimeo-go-magic-dev/stable,stable 1.0.0-1.1 all
  Go bindings for libmagic

golang-github-vincent-petithory-dataurl-dev/stable,stable 0.0~git20191104.d1553a7-1.1 all
  Data URL Schemes in Golang (library)

golang-github-virtuald-go-ordered-json-dev/stable,stable 0.0~git20170621.b18e6e6-2 all
  ordered json library

golang-github-vishvananda-netlink-dev/stable,stable 1.1.0.125.gf243826-4 all
  netlink library for go

golang-github-vishvananda-netns-dev/stable,stable 0.0~git20211101.5004558-1 all
  network namespaces in go

golang-github-vitrun-qart-dev/stable,stable 0.1-5 all
  generates not-so-ugly qr codes

golang-github-vividcortex-ewma-dev/stable,stable 1.1.1-2 all
  Exponentially Weighted Moving Average algorithms for Go

golang-github-vividcortex-godaemon-dev/stable,stable 0.0~git20210427.f8c5ec7-1 all
  Daemonize Go applications deviously

golang-github-vividcortex-gohistogram-dev/stable,stable 1.0.0-2 all
  Streaming approximate histograms in Go (library)

golang-github-vividcortex-mysqlerr-dev/stable,stable 0.0~git20210426.69f897f-1 all
  MySQL Server Error Constants

golang-github-vjeantet-grok-dev/stable,stable 1.0.0-3 all
  simple library to use/parse grok patterns with Go

golang-github-vmihailenco-msgpack.v5-dev/stable,stable 5.3.5-2 all
  MessagePack (msgpack.org) encoding for Golang (library)

golang-github-vmihailenco-tagparser-dev/stable,stable 0.1.1-4 all
  Golang tag parser

golang-github-vmihailenco-tagparser.v2-dev/stable,stable 2.0.0-2 all
  Opinionated Golang tag parser (library)

golang-github-vmware-govmomi-dev/stable,stable 0.24.2-3 all
  Go library for the VMware vSphere API

golang-github-vmware-photon-controller-go-sdk-dev/stable,stable 0.0~PROMOTED-339-1.1 all
  VMware Photon Controller API library

golang-github-vmware-vmw-guestinfo-dev/stable 0.0~git20220317.510905f-1 amd64
  access VMware guestinfo variables in Go (library)

golang-github-vmware-vmw-ovflib-dev/stable,stable 0.0~git20200204.53a0e9f-2 all
  parse Open Virtualization Format (OVF) environment in Go (library)

golang-github-voxelbrain-goptions-dev/stable,stable 2.5.11-2.1 all
  flexible Go parser for command line options

golang-github-vulcand-oxy-dev/stable,stable 1.3.0-3 all
  Go middlewares for HTTP servers & proxies (library)

golang-github-vulcand-predicate-dev/stable,stable 1.1.0-2 all
  Library for creating predicate mini-languages in Go

golang-github-vultr-govultr-dev/stable,stable 2.17.2-2 all
  Vultr Go API client

golang-github-wader-gojq-dev/stable,stable 0.0~git20230131.53cfdef-1 all
  pure Go implementation of jq (library)

golang-github-wader-readline-dev/stable,stable 0.0~git20230129.b333442-1 all
  Readline is a pure go(golang) implementation for GNU-Readline like library

golang-github-weaveworks-mesh-dev/stable,stable 0.1+git20180323.0c91e69-1 all
  go library to build distributed systems

golang-github-weppos-dnsimple-go-dev/stable,stable 0.0~git20160204.0.65c1ca7-2.1 all
  DNSimple API v1 client for Go

golang-github-weppos-publicsuffix-go-dev/stable,stable 0.15.0-5 all
  Domain name parser on the Public Suffix List (library)

golang-github-wildducktheories-go-csv-dev/stable,stable 0.0~git20210709.8745000-1 all
  tools for manipulating CSV files

golang-github-will-rowe-nthash-dev/stable,stable 0.4.0-1 all
  Go implementation of ntHash

golang-github-willf-bloom-dev/stable,stable 3.3.1-1 all
  Go package implementing Bloom filters

golang-github-willfaught-gockle-dev/stable,stable 0.0~git20230112.8fc81aa-1 all
  simpler and mockable gocql

golang-github-wlynxg-anet-dev/stable-backports,stable-backports 0.0.5-2~bpo12+1 all
  Network abstraction layer supporting Android and Linux

golang-github-wsxiaoys-terminal-dev/stable,stable 0.0~git20160513.0.0940f3f-1.1 all
  Colorful terminal output for Golang

golang-github-x-cray-logrus-prefixed-formatter-dev/stable,stable 0.5.2-2 all
  text formatter based on logrus.TextFormatter

golang-github-x448-float16-dev/stable,stable 0.8.4-3 all
  IEEE 754 half-precision format (library)

golang-github-x86kernel-htmlcolor-dev/stable,stable 0.0~git20190529.c589f58-3 all
  HTML syntax highlighter for Go

golang-github-xanzy-go-cloudstack-dev/stable,stable 2.9.0-1 all
  Golang API client to interact with Apache CloudStack

golang-github-xanzy-go-gitlab-dev/stable,stable 0.73.1-2 all
  Simple and uniform GitLab API for Go

golang-github-xanzy-ssh-agent-dev/stable,stable 0.3.2-1 all
  Go library for creating SSH agents

golang-github-xdg-go-pbkdf2-dev/stable,stable 1.0.0-2 all
  PBKDF2 key generation (library)

golang-github-xdg-go-scram-dev/stable,stable 1.1.1-1 all
  RFC-5802 SCRAM in Go (library)

golang-github-xdg-go-stringprep-dev/stable,stable 1.0.3-1 all
  RFC-3454 stringprep and RFC-4013 SASLprep in Go (library)

golang-github-xeipuuv-gojsonpointer-dev/stable,stable 0.0~git20190905.02993c4-3 all
  JSON Pointer implementation in Golang

golang-github-xeipuuv-gojsonreference-dev/stable,stable 0.0~git20180127.bd5ef7b-3 all
  JSON Reference implementation in Golang

golang-github-xeipuuv-gojsonschema-dev/stable,stable 1.2.0-3 all
  Go library for validating JSON data against JSON Schema documents

golang-github-xenolf-lego-dev/stable,stable 4.9.1-1 all
  Let's Encrypt ACME library

golang-github-xhit-go-simple-mail-dev/stable,stable 2.13.0-1 all
  Package for sending email; supports keep alive, TLS and SSL (library)

golang-github-xi2-xz-dev/stable,stable 0.0~git20171230.48954b6-4 all
  native Go XZ decompression

golang-github-xiang90-probing-dev/stable,stable 0.0.2-2 all
  Go library for HTTP probing

golang-github-xlab-handysort-dev/stable,stable 0.0~git20150421.fb3537e-3 all
  Alphanumeric string sorting algorithm implementation in Go

golang-github-xlab-treeprint-dev/stable,stable 0.0~git20181112.a009c39-1 all
  simple ASCII tree composing tool

golang-github-xlzd-gotp-dev/stable,stable 0.0~git20181030.c8557ba-3 all
  Golang OTP (One-Time Password) Library

golang-github-xo-terminfo-dev/stable,stable 0.0~git20210125.ca9a967-2 all
  terminfo package in pure go

golang-github-xorcare-pointer-dev/stable,stable 1.2.2-1 all
  for simplifying the creation of optional fields of basic type

golang-github-xordataexchange-crypt/stable 0.0.2+git20170626.21.b2862e3-3+b11 amd64
  Store/retrieve encrypted configs from etcd or Consul (CLI tool)

golang-github-xordataexchange-crypt-dev/stable,stable 0.0.2+git20170626.21.b2862e3-3 all
  Store/retrieve encrypted configs from etcd or Consul (Go library)

golang-github-xorpaul-uiprogress-dev/stable,stable 0.0~git20170224.d0567a9-1.1 all
  Go library to render progress bars in terminal applications

golang-github-xrash-smetrics-dev/stable,stable 0.0~git20201216.039620a-1 all
  String metrics library written in Go

golang-github-xtaci-kcp-dev/stable,stable 5.6.1-2 all
  Full-Featured Reliable-UDP Library for golang

golang-github-xtaci-smux-dev/stable,stable 1.5.16+ds-1 all
  Simple Multiplexing for golang

golang-github-xtaci-tcpraw-dev/stable,stable 1.2.25-2 all
  Packet-oriented connection golan library by simulating TCP

golang-github-xyproto-pinterface-dev/stable,stable 2.0-2 all
  Interface types for simple* and permission* packages

golang-github-xyproto-simpleredis-dev/stable,stable 2.0-3 all
  easy way to use Redis from Go

golang-github-yggdrasil-network-yggdrasil-go-dev/stable,stable 0.4.7-1 all
  Fully encrypted global-scale mesh network (library)

golang-github-yl2chen-cidranger-dev/stable,stable 1.0.2-1 all
  Fast IP to CIDR lookup in Golang

golang-github-ymomoi-goval-parser-dev/stable,stable 0.0~git20170813.0.0a0be1d-3 all
  OVAL parser written in go

golang-github-yohcop-openid-go-dev/stable,stable 1.0.0-1 all
  OpenID consumer implementation in Go (library)

golang-github-yosssi-ace-dev/stable,stable 0.0.5-3.1 all
  HTML template engine for Go (library package)

golang-github-yosssi-ace-proxy-dev/stable,stable 0.0~git20141007.0.ecd9b78-5.1 all
  Proxy for the Ace template engine (Go library)

golang-github-yosssi-gohtml-dev/stable,stable 0.0~git20180130.97fbf36-1.1 all
  HTML formatter for Go

golang-github-youmark-pkcs8-dev/stable,stable 1.1-3 all
  Go package to parse and convert private keys in PKCS#8 format (library)

golang-github-youpy-go-riff-dev/stable,stable 1.0+git20131220+ds-1.1 all
  Go library to read/write RIFF format

golang-github-youpy-go-wav-dev/stable,stable 0.3.0+ds-1.1 all
  Go library to read/write WAVE(RIFF waveform Audio) Format

golang-github-yourbasic-graph-dev/stable,stable 1.0.5-3 all
  graph algorithms and data structures

golang-github-yudai-gojsondiff-dev/stable,stable 1.0.0+git20180504.0525c87-3 all
  compare two JSON strings

golang-github-yudai-golcs-dev/stable,stable 0.0~git20170316.ecda9a5-3 all
  Go Longest Common Subsequence

golang-github-yuin-gluare-dev/stable,stable 0.0~git20170607.d7c94f1-2 all
  Regular expression library for the GopherLua

golang-github-yuin-goldmark-dev/stable,stable 1.5.4-1 all
  CommonMark compliant and extensible Markdown parser written in Go

golang-github-yuin-goldmark-emoji-dev/stable,stable 1.0.1-2 all
  emoji extension for the goldmark Markdown parser (Go library)

golang-github-yuin-goldmark-highlighting-dev/stable,stable 0.0~git20220208.594be19-1 all
  syntax highlighting extension for the goldmark Markdown parser

golang-github-yuin-gopher-lua-dev/stable,stable 0.0~git20170915.0.eb1c729-5 all
  virtual machine and compiler for Lua in Go

golang-github-yvasiyarov-newrelic-platform-go-dev/stable,stable 0.0~git20160601.9c099fb-3 all
  Newrelic Platform SDK for Go

golang-github-zaf-g711-dev/stable,stable 1.2-1.1 all
  encode and decode ITU-T G.711 sound data

golang-github-zalando-go-keyring-dev/stable-backports,stable-backports 0.2.2-1~bpo12+2 all
  Cross-platform keyring interface for Go (library)

golang-github-zclconf-go-cty-debug-dev/stable,stable 0.0~git20191215.b22d67c-2 all
  debugging and inspection utilities for cty

golang-github-zclconf-go-cty-dev/stable,stable 1.12.1-1 all
  type system for dynamic values in Golang applications

golang-github-zclconf-go-cty-yaml-dev/stable,stable 1.0.2-3 all
  YAML marshalling and unmarshalling for go-cty

golang-github-zeebo-wyhash-dev/stable,stable 0.0.1-3 all
  Go port of wyhash v3

golang-github-zenazn-goji-dev/stable,stable 1.0.1-2 all
  minimalistic web framework for Golang

golang-github-zenhack-go.notmuch-dev/stable,stable 0.0~git20190821.5a19619-2 all
  Go language bindings for notmuch mail (library)

golang-github-zitadel-logging-dev/stable-backports,stable-backports 0.6.2-1~bpo12+1 all
  Logging extension library

golang-github-zitadel-oidc-dev/stable-backports,stable-backports 3.37.0-1~bpo12+1 all
  OpenID Connect client and server library certified by the OpenID Foundation

golang-github-zitadel-schema-dev/stable-backports,stable-backports 1.3.1-1~bpo12+1 all
  Library to fill a struct with form values

golang-github-ziutek-mymysql-dev/stable,stable 1.5.4+git20170206.23.0582bcf-2 all
  MySQL Client API

golang-github-zmap-rc2-dev/stable,stable 0.0~git20190804.abaa705-4 all
  RC2 Cipher in Golang

golang-github-zorkian-go-datadog-api-dev/stable,stable 2.30.0-1 all
  Go implementation of the Datadog API

golang-github-zyedidia-clipboard-dev/stable,stable 1.0.3-1 all
  clipboard for golang

golang-github-zyedidia-glob-dev/stable,stable 0.0~git20170209.dd4023a-1.1 all
  Go package for glob matching

golang-github-zyedidia-pty-dev/stable,stable 1.1.1+git20180126.3036466-4 all
  Go package for using Unix pseudo-terminals

golang-github-zyedidia-tcell-dev/stable,stable 2.0.6-1 all
  Cell based view for text terminals

golang-github-zyedidia-terminal-dev/stable,stable 0.0~git20180726.533c623-2 all
  vt10x terminal emulation backend

golang-gitlab-golang-commonmark-puny-dev/stable,stable 0.0~git20191124.9f83538-2 all
  Functions for encoding/decoding to/from punycode (library)

golang-gitlab-jonas.jasas-condchan-dev/stable,stable 0.0~git20190210.36637ad-2 all
  Cancellable sync.Cond (library)

golang-gitlab-lupine-go-mimedb-dev/stable,stable 1.33.0-3 all
  Baked-in MIME types for standalone Go binaries

golang-gitlab-yawning-edwards25519-extra-dev/stable,stable 0.0~git20211229.2f91fcc-2 all
  Extensions to the Go standard library's Ed25519 and curve25519 implementations (library)

golang-glog-dev/stable,stable 0.0~git20160126.23def4e-5 all
  Leveled execution logs for Go

golang-go/stable 2:1.19~1 amd64
  Go programming language compiler, linker, compiled stdlib

golang-go-flags-dev/stable,stable 1.4.0-6 all
  Transitional package for golang-github-jessevdk-go-flags-dev

golang-go-semver-dev/stable,stable 0.3.0-1 all
  Transitional package for golang-github-coreos-go-semver-dev

golang-go-xdg-dev/stable,stable 0~bzr20140219-3 all
  Go interface for XDG standards

golang-go-zfs-dev/stable,stable 3.0.0-1 all
  Go library for ZFS manipulation

golang-go.cypherpunks-balloon-dev/stable,stable 1.1.1-2 all
  Password hashing with Balloon in pure Go(library)

golang-go.cypherpunks-recfile-dev/stable,stable 0.4.3-2 all
  Pure Go implementation of GNU recutils/recfile databases

golang-go.opencensus-dev/stable,stable 0.24.0-1 all
  Stats collection and distributed tracing framework

golang-go.uber-atomic-dev/stable,stable 1.10.0-2 all
  Simple wrappers for primitive types to enforce atomic access

golang-go.uber-multierr-dev/stable,stable 1.6.0-1 all
  multierr allows combining one or more Go errors together

golang-go.uber-zap-dev/stable,stable 1.23.0-1 all
  Blazing fast, structured, leveled logging in Go

golang-go4-dev/stable,stable 0.0~git20201209.d4a0794-1 all
  go4 collection of packages

golang-gocapability-dev/stable,stable 0.0+git20200815.42c35b4-2 all
  Utilities for manipulating POSIX capabilities in Go

golang-gocloud-dev/stable,stable 0.23.0-1 all
  Go Cloud Development Kit (Go CDK) for open cloud development in Go

golang-godebiancontrol-dev/stable,stable 0.0~git20140119-2 all
  Go Debian control file parser

golang-gogoprotobuf-dev/stable,stable 1.3.2-3 all
  transitional package -- safe to remove

golang-goji-dev/stable,stable 2.0.2-2 all
  minimalistic and flexible HTTP request multiplexer for Go

golang-golang-x-arch-dev/stable,stable 0.2.0-1 all
  Library with machine architecture information

golang-golang-x-crypto-dev/stable,stable 1:0.4.0-1 all
  Supplementary Go cryptography libraries

golang-golang-x-exp-dev/stable,stable 0.0~git20221028.83b7d23-2 all
  experimental and deprecated packages

golang-golang-x-image-dev/stable,stable 0.5.0-1 all
  supplementary Go image libraries

golang-golang-x-mod-dev/stable,stable 0.7.0-1 all
  Go module mechanics libraries

golang-golang-x-net-dev/stable,stable 1:0.7.0+dfsg-1 all
  Supplementary Go networking libraries

golang-golang-x-oauth2-dev/stable,stable 0.3.0-1 all
  make OAuth2 authorized and authenticated HTTP requests

golang-golang-x-oauth2-google-dev/stable,stable 0.3.0-1 all
  Google APIs support for OAuth2

golang-golang-x-sync-dev/stable,stable 0.1.0-1 all
  Supplemental Go synchronization libraries

golang-golang-x-sys-dev/stable,stable 0.3.0-1 all
  Low-level interaction with the operating system

golang-golang-x-term-dev/stable,stable 0.3.0-1 all
  Go terminal and console support (library)

golang-golang-x-text-dev/stable,stable 0.7.0-1 all
  Supplementary Go text-related libraries

golang-golang-x-time-dev/stable,stable 0.3.0-1 all
  Go supplementary time packages

golang-golang-x-tools/stable 1:0.5.0+ds-1 amd64
  supplementary Go tools

golang-golang-x-tools-dev/stable,stable 1:0.5.0+ds-1 all
  supplementary Go tools (development files)

golang-golang-x-vuln-dev/stable,stable 0.0~git20230201.4c848ed-1 all
  client and tools for the Go vulnerability database (library)

golang-golang-x-xerrors-dev/stable,stable 0.0~git20200804.5ec99f8-1 all
  new Go 1.13 error values

golang-golang.zx2c4-wireguard-dev/stable,stable 0.0.20220316-1 all
  Userspace implementation of WireGuard in Go (library)

golang-gomega-dev/stable,stable 1.10.3-1 all
  Matcher/assertion library for the Go programming language

golang-gonum-v1-plot-dev/stable,stable 0.7.0-5 all
  repository for plotting and visualizing data (library)

golang-google-api-dev/stable,stable 0.61.0-1 all
  Google APIs Client Library

golang-google-appengine-dev/stable,stable 1.6.7-2 all
  basic functionality for Google App Engine

golang-google-cloud-compute-metadata-dev/stable,stable 0.56.0-3 all
  Google Cloud Platform APIs (only cloud/compute/metadata)

golang-google-cloud-dev/stable,stable 0.56.0-3 all
  Google Cloud Platform APIs

golang-google-genproto-dev/stable,stable 0.0~git20200413.b5235f6-3 all
  Generated Go packages for common protocol buffer types

golang-google-grpc-dev/stable,stable 1.33.3-2 all
  implementation of gRPC in Go

golang-google-protobuf-dev/stable,stable 1.28.1-3 all
  Go support for protocol buffers (APIv2)

golang-gopkg-alecthomas-kingpin.v2-dev/stable,stable 2.2.6-4 all
  command-line and flag parser for Go

golang-gopkg-alexcesaro-quotedprintable.v3-dev/stable,stable 0.0~git20150716.0.2caba25-7 all
  Implements quoted-printable and message header encoding in Go

golang-gopkg-alexcesaro-statsd.v1-dev/stable,stable 0.0~git20160306.0.c289775-2.1 all
  simple and efficient Golang StatsD client

golang-gopkg-asn1-ber.v1-dev/stable,stable 1.5.4-1 all
  ASN1 BER Encoding / Decoding Library for the GO programming language

golang-gopkg-bufio.v1-dev/stable,stable 1-2 all
  buffered I/O in Golang

golang-gopkg-check.v1-dev/stable,stable 0.0+git20200902.038fdea-1 all
  Rich testing extension for Go's testing package

golang-gopkg-cheggaaa-pb.v1-dev/stable,stable 1.0.25-1 all
  simple console progress bar for Go

golang-gopkg-cheggaaa-pb.v2-dev/stable,stable 2.0.7-1 all
  simple console progress bar for Go

golang-gopkg-eapache-channels.v1-dev/stable,stable 1.1.0-2 all
  collection of helpers around golang's existing channels

golang-gopkg-eapache-go-resiliency.v1-dev/stable,stable 1.2.0-1 all
  resiliency patterns for golang

golang-gopkg-eapache-queue.v1-dev/stable,stable 1.1.0-2 all
  fast golang queue using ring-buffer

golang-gopkg-editorconfig-editorconfig-core-go.v1-dev/stable,stable 1.2.0-7 all
  EditorConfig file parser and writer in Go

golang-gopkg-errgo.v1-dev/stable,stable 1.0.1-2 all
  Dependable Go errors with tracebacks, version 1

golang-gopkg-errgo.v2-dev/stable,stable 2.1.0-2 all
  Dependable Go errors with tracebacks, version 2

golang-gopkg-fatih-pool.v2-dev/stable,stable 0.0~git20171010.010e0b7-3 all
  thread safe connection pool for net.Conn interface

golang-gopkg-freddierice-go-losetup.v1-dev/stable,stable 0.0~git20170407.fc9adea-1.1 all
  Golang losetup implementation

golang-gopkg-gcfg.v1-dev/stable,stable 1.2.3-2 all
  read INI-style configuration files into Go structs

golang-gopkg-go-playground-colors.v1-dev/stable,stable 1.2.0-4 all
  color manipulation, conversion and printing library/utility

golang-gopkg-goose.v1-dev/stable,stable 0.0~git20170406.3228e4f-4 all
  Go bindings for talking to OpenStack (library)

golang-gopkg-gorp.v1-dev/stable,stable 1.7.2-2 all
  Go Relational Persistence - an ORM-ish library for Go (library)

golang-gopkg-guregu-null.v2-dev/stable,stable 2.2+git20150913.0.4ac4f00-1.1 all
  Reasonable handling of nullable SQL and JSON values

golang-gopkg-guregu-null.v3-dev/stable,stable 3.1+git20160228.0.41961ce-1.1 all
  Reasonable handling of nullable SQL and JSON values

golang-gopkg-h2non-filetype.v1-dev/stable,stable 1.1.3+ds1-1 all
  Go package to infer file types based on the magic numbers header signature

golang-gopkg-h2non-gock.v1-dev/stable,stable 1.1.2-1 all
  HTTP traffic mocking and testing made easy in Go

golang-gopkg-hlandau-acmeapi.v2-dev/stable,stable 2.0.2-1 all
  ACME v2 (RFC 8555) client library for Go

golang-gopkg-hlandau-configurable.v1-dev/stable,stable 1.0.1-7 all
  Go package for managing program configuration

golang-gopkg-hlandau-easyconfig.v1-dev/stable,stable 1.0.17-5 all
  Go package with easy bindings for configurable

golang-gopkg-hlandau-service.v2-dev/stable,stable 2.0.17-2 all
  Go package for writing services

golang-gopkg-hlandau-svcutils.v1-dev/stable,stable 1.0.10-7 all
  utilities for writing services in Go

golang-gopkg-httprequest.v1-dev/stable,stable 1.2.1-3 all
  helper types for issuing and handling HTTP requests

golang-gopkg-inf.v0-dev/stable,stable 0.9.1-2 all
  Golang library for "infinite-precision" decimal arithmetic

golang-gopkg-ini.v1-dev/stable,stable 1.66.2-1 all
  INI file read and write functionality in Go

golang-gopkg-jarcoal-httpmock.v1-dev/stable,stable 0.0~git20180304.61bcb58-2.1 all
  HTTP mocking for Golang

golang-gopkg-jcmturner-aescts.v1-dev/stable,stable 1.0.1-4 all
  AES CBC Ciphertext Stealing mode for Go

golang-gopkg-jcmturner-dnsutils.v1-dev/stable,stable 1.0.1-2 all
  Golang library of DNS utilities

golang-gopkg-jcmturner-goidentity.v2-dev/stable,stable 2.0.0-2 all
  Golang library for managing identities

golang-gopkg-jcmturner-gokrb5.v5-dev/stable,stable 5.3.0+dfsg-2 all
  Pure Go Kerberos library for clients and services

golang-gopkg-jcmturner-rpc.v0-dev/stable,stable 0.0.2-2 all
  Remote Procedure Call libraries for golang

golang-gopkg-juju-environschema.v1-dev/stable,stable 1.0.2-1 all
  Schema descriptions for Juju environment configurations (library)

golang-gopkg-lxc-go-lxc.v2-dev/stable,stable 0.0+git20220627.ad3d9f7-2 all
  Go bindings for liblxc

golang-gopkg-macaron.v1-dev/stable,stable 1.2.2-3 all
  modular web framework in Go

golang-gopkg-macaroon.v1-dev/stable,stable 0.0~git20150121.0.ab3940c-1.1 all
  Macaroon implementation in go

golang-gopkg-macaroon.v2-dev/stable,stable 2.1.0-3 all
  Native Go implementation of macaroons (library)

golang-gopkg-mail.v2-dev/stable,stable 2.3.1-2 all
  simple and efficient package to send emails

golang-gopkg-mgo.v2-dev/stable,stable 2016.08.01-7 all
  Go library for MongoDB

golang-gopkg-natefinch-lumberjack.v2-dev/stable,stable 2.1-2 all
  Go package for writing logs to rolling files

golang-gopkg-neurosnap-sentences.v1-dev/stable,stable 1.0.6-1.1 all
  Sentence tokenizer for Go

golang-gopkg-olivere-elastic.v2-dev/stable,stable 2.0.12-2 all
  Elasticsearch client for Golang

golang-gopkg-olivere-elastic.v5-dev/stable,stable 5.0.83-1 all
  Elasticsearch client for Golang

golang-gopkg-pg.v5-dev/stable,stable 5.3.3-3.1 all
  PostgreSQL client and ORM for Golang

golang-gopkg-redis.v2-dev/stable,stable 2.3.2-2 all
  Redis client for Golang

golang-gopkg-redis.v5-dev/stable,stable 5.2.9-4 all
  type-safe Redis client for Golang

golang-gopkg-rethinkdb-rethinkdb-go.v6-dev/stable,stable 6.2.1-2 all
  Go language driver for RethinkDB (library)

golang-gopkg-retry.v1-dev/stable,stable 1.0.3-2 all
  Simple retry mechanism for Go

golang-gopkg-sourcemap.v1-dev/stable,stable 1.0.5+git20170213.0.6e83ace-1 all
  Source Maps consumer for Golang

golang-gopkg-square-go-jose.v1-dev/stable,stable 1.1.2-4 all
  Javascript Object Signing and Encryption (JOSE) for Go

golang-gopkg-square-go-jose.v2-dev/stable,stable 2.6.0-2 all
  implementation of JOSE standards (JWE, JWS, JWT) in Go

golang-gopkg-src-d-go-billy.v4-dev/stable,stable 4.3.2-1 all
  Missing interface filesystem abstraction for Go

golang-gopkg-src-d-go-git.v4-dev/stable,stable 4.11.0-3 all
  highly extensible Git implementation in pure Go

golang-gopkg-telebot.v3-dev/stable,stable 3.1.2-1 all
  bot framework for the Telegram Bot API

golang-gopkg-testfixtures.v2-dev/stable,stable 2.2.0-2 all
  Rails-like test fixtures for Go

golang-gopkg-tomb.v1-dev/stable,stable 0.0~git20141024.0.dd63297-8 all
  API to track the lifecyle of Golang goroutines, and provide clean termination

golang-gopkg-tomb.v2-dev/stable,stable 0.0~git20161208.d5d1b58-3 all
  API to track the lifecyle of Golang goroutines, and provide clean termination

golang-gopkg-tylerb-graceful.v1-dev/stable,stable 1.2.15-6 all
  Go package for gracefully shutting down HTTP server

golang-gopkg-validator.v2-dev/stable,stable 0.0+git20160116-3.1 all
  Go package for validator library

golang-gopkg-vansante-go-ffprobe.v2-dev/stable-backports,stable-backports 2.1.1-2~bpo12+1 all
  Library to easily get the ffprobe output of a given file (library)

golang-gopkg-vmihailenco-msgpack.v2-dev/stable,stable 4.3.1-2 all
  Msgpack encoding for Golang

golang-gopkg-warnings.v0-dev/stable,stable 0.1.2-1.1 all
  implements error handling with non-fatal errors (warnings)

golang-gopkg-xmlpath.v2-dev/stable,stable 0.0~git20150820.0.860cbec-5.1 all
  strict subset of the XPath specification for the Go language

golang-gopkg-yaml.v2-dev/stable,stable 2.4.0-4 all
  YAML support for the Go language

golang-gopkg-yaml.v3-dev/stable,stable 3.0.1-3 all
  YAML support for the Go language

golang-goprotobuf-dev/stable 1.3.5-4+b3 amd64
  transitional dummy package

golang-goptlib-dev/stable,stable 1.2.0-1 all
  library for Tor pluggable transports written in Go

golang-grpc-gateway/stable 1.6.4-2+b23 amd64
  gRPC to JSON proxy generator for Golang -- binaries

golang-guestfs-dev/stable,stable 1:1.48.6-2 all
  guest disk image management system - Golang bindings

golang-gvisor-gvisor-dev/stable,stable 0.0~20221219.0-2 all
  Application Kernel for Containers (library)

golang-h12-socks-dev/stable,stable 1.0.2-1 all
  SOCKS (SOCKS4, SOCKS4A and SOCKS5) proxy library for golang

golang-honnef-go-augeas-dev/stable,stable 0.0~git20161110.0.ca62e35-1.1 all
  Go bindings for Augeas

golang-honnef-go-tools-dev/stable,stable 2023.1-1 all
  libraries for advanced Go linter

golang-inet-netstack-dev/stable,stable 0.0~git20211120.8aa80cf2-6 all
  Pure Go network stack

golang-k8s-klog-dev/stable,stable 2.80.1-2 all
  leveled execution logs for Go (library)

golang-k8s-kube-openapi-dev/stable,stable 0.0~git20211014.b3fe75c-2 all
  Kubernetes OpenAPI spec generation & serving (library)

golang-k8s-sigs-json-dev/stable,stable 0.0~git20211208.9f7c6b3-2 all
  Golang JSON decoder library for kubernetes sig-api-machinery

golang-k8s-sigs-structured-merge-diff-dev/stable,stable 4.1.2+ds1-2 all
  implementation for "server-side apply" (library)

golang-k8s-sigs-yaml-dev/stable,stable 1.3.0-1 all
  better way to marshal and unmarshal YAML in Golang (library)

golang-k8s-system-validators-dev/stable,stable 1.4.0-1 all
  System-oriented validators for kubeadm preflight checks (library)

golang-k8s-utils-dev/stable,stable 0.0~git20221128.99ec85e-1 all
  Non-Kubernetes-specific utility libraries (library)

golang-layeh-gopher-luar-dev/stable,stable 1.0.4-1.1 all
  Simplifies data passing between Go and GopherLua

golang-lukechampine-blake3-dev/stable,stable 1.1.6-1 all
  Pure-Go implementation of BLAKE3 cryptographic hash

golang-maunium-go-mauflag-dev/stable-backports,stable-backports 1.0.0-2~bpo12+1 all
  Extendable argument parser for Golang

golang-maunium-go-maulogger-dev/stable-backports,stable-backports 2.4.1-2~bpo12+1 all
  Simple easy to use logger in go

golang-maunium-go-mautrix-dev/stable-backports,stable-backports 0.11.1-2~bpo12+1 all
  Matrix framework in golang

golang-mode/stable,stable 3:1.6.0-1 all
  Emacs mode for editing Go code -- transitional package

golang-modernc-internal-dev/stable,stable 1.0.0-2 all
  modernc-specific internals

golang-mongodb-mongo-driver-dev/stable,stable 1.8.4+ds1-3 all
  MongoDB official driver for Go

golang-mreiferson-httpclient-dev/stable,stable 0.0~git20160630.0.31f0106-2.1 all
  Transitional package for golang-github-mreiferson-go-httpclient-dev

golang-mvdan-editorconfig-dev/stable,stable 0.2.0-3 all
  EditorConfig support in Go

golang-mvdan-gofumpt-dev/stable,stable 0.4.0-1 all
  stricter gofmt (library)

golang-mvdan-sh-dev/stable,stable 3.6.0-1 all
  shell parser, formatter, and interpreter (library)

golang-mvdan-xurls-dev/stable,stable 2.4.0-1 all
  Extract urls from text (library)

golang-nhooyr-websocket-dev/stable,stable 1.8.7-3 all
  Minimal and idiomatic WebSocket library for Go (library)

golang-opentelemetry-otel-dev/stable,stable 1.1.0-2 all
  OpenTelemetry Go API and SDK

golang-oras-oras-go-dev/stable,stable 1.1.1-1 all
  ORAS Go library

golang-pault-go-archive-dev/stable,stable 1.0-2 all
  bindings to work with a Debian archive

golang-pault-go-blobstore-dev/stable,stable 0.0~git20180314.d6d187c-1.1 all
  de-duplicating storage abstraction

golang-pault-go-config-dev/stable,stable 0.1-3 all
  Go package for using structs for configuration/flags

golang-pault-go-debian-dev/stable,stable 0.9-2 all
  library to parse and handle common Debian file formats

golang-pault-go-gecos-dev/stable,stable 1.0-1.1 all
  read GECOS entries from /etc/passwd programmatically

golang-pault-go-macchanger-dev/stable,stable 0.0~git20170902.0.0252df5-1.1 all
  library to change MAC addresses on Linux systems

golang-pault-go-technicolor-dev/stable,stable 0.1-1.1 all
  implements a high level interface to write ANSI color sequences

golang-pault-go-topsort-dev/stable,stable 0.0~git20160529.f98d2ad-2 all
  library to topologically sort a DAG

golang-pault-go-ykpiv-dev/stable,stable 1.3.4-2 all
  high level cgo wrapper around libykpiv.so.1

golang-petname/stable 2.11~git20191129.8e5a1ed-2+b6 amd64
  generate pronouncable, perhaps even memorable, pet names

golang-procfs-dev/stable,stable 0.8.0-3 all
  transitional dummy package

golang-protobuf-extensions-dev/stable,stable 1.0.1-3 all
  Protocol Buffer extensions for the Go language

golang-redhat-audit-dev/stable,stable 1:3.0.9-1 all
  Go client bindings for the libaudit library

golang-redoctober/stable 0.0~git20161017.0.78e9720-5+b12 amd64
  Software-based two-man rule style encryption and decryption server

golang-refraction-networking-utls-dev/stable,stable 1.2.1-2 all
  TLS golang library with low-level access

golang-rice/stable 1.0.2-1+b11 amd64
  tool for embedding web resources into Go executables

golang-robustirc-bridge-dev/stable,stable 1.8-1 all
  Go packages to connect to RobustIRC

golang-rsc-binaryregexp-dev/stable,stable 0.2.0-3 all
  Go regexp for binary/latin-1 data

golang-rsc-pdf-dev/stable,stable 0.1.0+git20180525.c47d69c-3 all
  Golang library that provides a reader for the PDF format

golang-rsc-qr-dev/stable,stable 0.0~git20161121.48b2ede-1.1 all
  Basic QR encoder

golang-sigsum-sigsum-go-dev/stable-backports,stable-backports 0.11.1-1~bpo12+1 all
  tools for public and transparent logging of signed checksums (library)

golang-siphash-dev/stable,stable 1.0.0-2 all
  Go implementation of SipHash-2-4

golang-snappy-go-dev/stable,stable 0.0.2-3 all
  Transitional package for golang-github-golang-snappy-dev

golang-snowflake-dev/stable,stable 2.5.1-1 all
  WebRTC pluggable transport for Tor (library)

golang-sorcix-irc-dev/stable,stable 1.1.0-2 all
  generic support for the IRC protocol in Go

golang-sourcehut-emersion-go-scfg-dev/stable,stable 0.0~git20211215.c2c7a15-2 all
  Go library for a simple configuration file format

golang-sourcehut-emersion-gqlclient-dev/stable,stable 0.0~git20221107.1d1d46a-2 all
  GraphQL client and code generator for Go (library)

golang-sourcehut-rockorager-tcell-term-dev/stable,stable 0.4.0-1 all
  Virtual terminal widget for tcell

golang-sourcehut-sircmpwn-getopt-dev/stable,stable 0.0~git20191230.23622cc-2 all
  POSIX-compatible getopt implementation for Go (library)

golang-src/stable,stable 2:1.19~1 all
  Go programming language - source files

golang-sslmate-src-go-pkcs12-dev/stable,stable 0.0~git20210415.c5206de-2 all
  Go library for encoding and decoding PKCS#12 files (library)

golang-starlark-dev/stable,stable 0.0~git20210122.f935de8-2 all
  Interpreter for the Starlark configuration language

golang-statik/stable 0.1.1-5+b7 amd64
  embed static files into a Go executable

golang-step-cli-utils-dev/stable,stable 0.7.5+ds-2 all
  common code between step-cli and step-ca

golang-step-crypto-dev/stable,stable 0.24.0-1 all
  common code between step-cli and step-ca (go libraries)

golang-step-linkedca-dev/stable,stable 0.19.0-1 all
  go support library for Linked Certificate Authorities

golang-strk.kbt-projects-go-libravatar-dev/stable,stable 0.0~git20161111.0.d628b68-7 all
  Simple Go library for serving federated avatars

golang-thrift-dev/stable 0.17.0-2+b2 amd64
  Go language support for Thrift

golang-truststore/stable 0.12.1-1+b3 amd64
  Transitional package

golang-uber-automaxprocs-dev/stable,stable 1.4.0-3 all
  automatically set GOMAXPROCS to match Linux container CPU quota

golang-uber-goleak-dev/stable,stable 1.2.0-1 all
  goroutine leak detector

golang-v2ray-core-dev/stable,stable 4.34.0+ds-1 all
  Library platform for building proxies in golang

golang-vbom-util-dev/stable,stable 0.0~git20180919.efcd4e0-3 all
  Go utility packages (library)

golang-vhost-dev/stable,stable 0.0~git20140120-3 all
  Go library to implement virtual hosting for different protocols
:
:
no need to scroll through all of it.  notice the great reliance on github, as it seems.

might want to do it yourself or find someone else.  who runs linux mint or other operating system.  then go line by line of the source code of the featured program.

i really wanted to check this out:

https://abav.lugaralgum.com/sketch-a-day/

https://github.com/villares/sketch-a-day

it's python but requires a library borrowed from javascript.  i keep getting errors trying to download it with "pip".

the code examples are since 2018 so i gather it's a 5gb+ download which is too much for me now.

sort of on topic.  from what i posted just above.  some of the routines are convertable to basic or other programming language.  even better if one knows how to implement a few libraries.  such as those for math vectors and sparse arrays.
Reply
#3
Good Lord! Maybe this FM effect and that sketch-a-day are good challenges to throw to chatgpt or similar, "make this in QB64PE!" LoL!
Reply
#4
Just for giggles, I asked google if it could convert the GoLang code to QB64PE, and here's what it came up with: 

Quote:Converting this GoLang code to QB64PE 4.x is not a straightforward process because the two languages have very different paradigms, standard libraries, and approaches to image manipulation and animation. However, I can provide a conceptual translation and a partial QB64PE implementation that demonstrates the core logic.

The main challenges in this conversion are:
  • Pointers and Structures: Go uses structs and pointers extensively, which are handled differently in QB64PE.
  • Libraries: The Go code relies on external libraries like bild, which have no direct equivalent in QB64PE. You would have to manually recreate the functionality (e.g., blending, resizing).
  • Image Handling: QB64PE uses its own built-in graphics functions for handling images (_LOADIMAGE, _PUTIMAGE), which differ from Go's image package.
  • Concurrency: Go's concurrency model (goroutines) is not applicable here but is a key difference between the languages.

Here's the conceptual translation and a partial QB64PE implementation.

Conceptual Translation

The Go program lightbox.go reads an image, processes each pixel through a series of mathematical operations, and then saves the result as an animated PNG. The core steps are:

  1. Read Image: It opens an image file named input.jpg. In QB64PE, you'd use _LOADIMAGE.

  2. Process Frames: It iterates to create multiple frames for the animation. For each frame, it iterates over every pixel in the original image.

  3. Frequency Modulation (FM) Effect: This is the most complex part. For each pixel, it applies a frequency modulation effect using math.Cos based on the pixel's RGB values and its position (x-coordinate). It also adds a time progression offset to make the effect animate over the frames.

  4. Remapping: The result of the FM is a value between -1 and 1. It remaps this to an 8-bit color channel value (0-255).

  5. Blending: After creating the initial distorted frame, it blends it with the original image using a HardMix function. This function's logic needs to be manually replicated.

  6. Resizing: It resizes the blended image to half its original size. QB64PE has a _RESIZE function that can accomplish this.

  7. Save Animation: Finally, it saves the frames as an animated PNG. This requires an external library or manual implementation in QB64PE since it doesn't natively support APNG.

Partial QB64PE 4.x Implementation

VB.Net

Code: (Select All)
' QB64PE 4.x Partial Conversion of lightbox.go
' NOTE: This is a conceptual and partial conversion.
'       - It lacks error handling.
'       - The APNG save functionality requires a separate library or custom code.
'       - The 'HardMix' and other complex image processing functions need to be fully implemented.

' Declare custom types and functions at the top, if needed.
' QB64PE supports custom types with TYPE...END TYPE.
' We'll simulate the main logic without custom types for simplicity.

' --- Global Variables (Simulated) ---
' No need for global variables in this simple conversion, but they'd be declared here.

' --- Main Program ---
DECLARE SUB processImageFrames (sourceImage AS LONG, freqMultiplier AS DOUBLE, frameCount AS INTEGER, destFrames() AS LONG)
DECLARE FUNCTION HardMix (r1 AS INTEGER, g1 AS INTEGER, b1 AS INTEGER, r2 AS INTEGER, g2 AS INTEGER, b2 AS INTEGER) AS INTEGER

DIM SHARED sourceImage AS LONG
DIM SHARED frameCount AS INTEGER
DIM SHARED freqMultiplier AS DOUBLE

' Initialize variables
freqMultiplier = 5
frameCount = 8

' Load the source image.
sourceImage = _LOADIMAGE("input.jpg", 32) ' 32-bit color for alpha support

IF sourceImage = 0 THEN
    PRINT "Error: Could not load input.jpg"
    END
END IF

DIM frames(frameCount) AS LONG

' Process the frames
CALL processImageFrames(sourceImage, freqMultiplier, frameCount, frames())

' Save the frames as an APNG.
' This part is not native to QB64PE and would require an external library or custom code.
' For demonstration purposes, we'll just show the first frame.
' _PUTIMAGE , (0, 0), frames(0)

' Clean up images
_FREEIMAGE sourceImage
FOR i = 0 TO frameCount - 1
    _FREEIMAGE frames(i)
NEXT i

END

' --- Subroutines and Functions ---

SUB processImageFrames (sourceImage AS LONG, freqMultiplier AS DOUBLE, frameCount AS INTEGER, destFrames() AS LONG)
    DIM width AS INTEGER
    DIM height AS INTEGER
    DIM minOmega AS DOUBLE
    DIM baseOmega AS DOUBLE
   
    width = _WIDTH(sourceImage)
    height = _HEIGHT(sourceImage)
   
    ' Calculate the omega values based on the Go code
    minOmega = 2 * 3.14159265358979323846 / (0.05 * width)
    baseOmega = minOmega * freqMultiplier
   
    FOR frame = 0 TO frameCount - 1
        ' Create a new image for the destination frame
        destFrames(frame) = _NEWIMAGE(width, height, 32)
       
        DIM timeOffset AS DOUBLE
        timeOffset = frame / frameCount * 2 * 3.14159265358979323846
       
        ' Iterate through each pixel
        FOR y = 0 TO height - 1
            DIM rf AS DOUBLE
            DIM gf AS DOUBLE
            DIM bf AS DOUBLE
           
            rf = 0
            gf = 0
            bf = 0
           
            FOR x = 0 TO width - 1
                DIM pixel AS _UNSIGNED LONG
                pixel = _GETIMAGE(sourceImage, x, y)
               
                DIM r, g, b, a AS INTEGER
                r = _RED32(pixel)
                g = _GREEN32(pixel)
                b = _BLUE32(pixel)
                a = _ALPHA32(pixel)
               
                ' Add the pixel values to the running total (simulated Go code logic)
                rf = rf + (r / 255.0) - 1
                gf = gf + (g / 255.0) - 1
                bf = bf + (b / 255.0) - 1
               
                ' Apply frequency modulation
                DIM rm AS DOUBLE
                DIM gm AS DOUBLE
                DIM bm AS DOUBLE
               
                rm = COS(baseOmega * x + rf + timeOffset)
                gm = COS(baseOmega * x + gf + timeOffset)
                bm = COS(baseOmega * x + bf + timeOffset)
               
                ' Remap signal back to channel value (0-255)
                DIM rv, gv, bv AS INTEGER
                rv = _UNSIGNED(INT((rm + 1) * 127.5))
                gv = _UNSIGNED(INT((gm + 1) * 127.5))
                bv = _UNSIGNED(INT((bm + 1) * 127.5))
               
                ' Set the pixel in the destination image
                DIM newPixel AS _UNSIGNED LONG
                newPixel = _RGB32(rv, gv, bv)
               
                _PUTIMAGE , (x, y), newPixel, destFrames(frame)
            NEXT x
        NEXT y
       
        ' Apply blending and resizing (conceptual, not fully implemented here)
        ' Blending would require a pixel-by-pixel loop and a custom blend function.
        ' QB64PE's _RESIZE function can handle the resizing.
        DIM tempImage AS LONG
        tempImage = destFrames(frame)
        destFrames(frame) = _RESIZE(tempImage, width / 2, height / 2)
        _FREEIMAGE tempImage
       
    NEXT frame
END SUB

' The HardMix function would be complex to implement pixel by pixel.
' Here's a conceptual placeholder.
FUNCTION HardMix (r1 AS INTEGER, g1 AS INTEGER, b1 AS INTEGER, r2 AS INTEGER, g2 AS INTEGER, b2 AS INTEGER) AS INTEGER
    ' The Go function's logic:
    ' f(i, j) = 0 if j < 1 - i, else 1
    ' This would need to be applied to each color channel (normalized 0-1) and then remapped.
   
    ' This is a simplified placeholder.
    DIM r AS DOUBLE
    DIM g AS DOUBLE
    DIM b AS DOUBLE
   
    DIM f1 AS DOUBLE
    DIM f2 AS DOUBLE
   
    f1 = r1 / 255.0
    f2 = r2 / 255.0
   
    IF f2 < 1 - f1 THEN
        r = 0
    ELSE
        r = 1
    END IF
   
    ' ... and so on for g and b
   
    HardMix = _RGB32(r * 255, g * 255, b * 255)
END FUNCTION
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Is there a 2001 trip effect written in QB64? TarotRedhand 4 996 05-28-2022, 02:38 PM
Last Post: bplus

Forum Jump:


Users browsing this thread: