golang-github-ghodss-yaml 1.0.0+git20220118.d8423dc-2 source package in Ubuntu

Changelog

golang-github-ghodss-yaml (1.0.0+git20220118.d8423dc-2) unstable; urgency=medium

  * Team upload.
  * B-D and Depends on golang-gopkg-yaml.v2-dev (non-virtual package)

 -- Nilesh Patra <email address hidden>  Fri, 24 Jun 2022 17:41:56 +0530

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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-ghodss-yaml_1.0.0+git20220118.d8423dc-2.dsc 2.4 KiB 1d3c22487118b95966597429a2008cfdb8a3e1f72cc6501eb7f2a962fcf1e5fd
golang-github-ghodss-yaml_1.0.0+git20220118.d8423dc.orig.tar.xz 13.2 KiB 00da477ad84fb1301a59661e31725bb81974c1f23b369042cbf6e77b3156fdce
golang-github-ghodss-yaml_1.0.0+git20220118.d8423dc-2.debian.tar.xz 3.7 KiB 97f9dfdbd8ec0d71a75ca2e3e400b710fe37458aa13b6847df99b3cac09fda7b

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.