Source: golang-github-ghodss-yaml Section: devel Priority: extra Maintainer: Debian Go Packaging Team Uploaders: Tim Potter , Anthony Fok Build-Depends: debhelper (>= 10), dh-golang, golang-any, golang-yaml.v2-dev Standards-Version: 4.0.0 Homepage: https://github.com/ghodss/yaml Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-ghodss-yaml.git Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-ghodss-yaml.git XS-Go-Import-Path: github.com/ghodss/yaml Testsuite: autopkgtest-pkg-go Package: golang-github-ghodss-yaml-dev Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, golang-yaml.v2-dev Description: 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.