golang-github-ghodss-yaml 1.0.0-1.1 source package in Ubuntu

Changelog

golang-github-ghodss-yaml (1.0.0-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Tue, 05 Jan 2021 11:58:19 +0100

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-ghodss-yaml_1.0.0-1.1.dsc 2.2 KiB 87ea99594f1ba20dc612ab71386a5cd2c7aad5b0388a77e9336841427b7b6db3
golang-github-ghodss-yaml_1.0.0.orig.tar.gz 11.5 KiB 8a76b47cd171944612aae1cfa08bbb971b63fec16794c839252808392097de44
golang-github-ghodss-yaml_1.0.0-1.1.debian.tar.xz 3.3 KiB 9d09d879721a3a8baa31d5f4c4a1a9f387ea0c2e52b621d21ca76fa2feedecb3

Available diffs

No changes file available.

Binary packages built by this source

golang-github-ghodss-yaml-dev: better way to marshal and unmarshal YAML in Golang

 This package is a wrapper around go-yaml designed to enable a
 better way of handling YAML when marshaling to and from structs.
 .
 In short, this library first converts YAML to JSON using
 go-yaml and then uses json.Marshal and json.Unmarshal to
 convert to or from the struct. This means that it effectively
 reuses the JSON struct tags as well as the custom JSON methods
 MarshalJSON and UnmarshalJSON unlike go-yaml.