golang-github-pelletier-go-toml.v2 2.0.0~beta6-1 source package in Ubuntu

Changelog

golang-github-pelletier-go-toml.v2 (2.0.0~beta6-1) unstable; urgency=medium

  * New upstream version 2.0.0~beta6
  * Reorder fields in debian/control and debian/copyright
    as would be generated in the next dh-make-golang release after 0.6.0-1
  * Skip installation of binaries (jsontoml, tomljson, tomll) for now

 -- Anthony Fok <email address hidden>  Wed, 23 Feb 2022 06:30:05 -0700

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-pelletier-go-toml.v2_2.0.0~beta6-1.dsc 2.4 KiB 41241bd82e7f0c546261cdfcaf76a914a684b8fcfa8329c4dfb72d80e5bc681f
golang-github-pelletier-go-toml.v2_2.0.0~beta6.orig.tar.gz 863.1 KiB 5ea7662d73c26ffd1dafdda5374cb4dcc50547396b119f89275f4bdfe395e6b2
golang-github-pelletier-go-toml.v2_2.0.0~beta6-1.debian.tar.xz 5.1 KiB 595559257604564c945ec8e7279e5be99ba6cda1ecb7e7aa1e420b1e29ad83da

Available diffs

No changes file available.

Binary packages built by this source

golang-github-pelletier-go-toml.v2-dev: Go library for the TOML format (go-toml v2)

 go-toml v2 is a Go library for the TOML format.
 It supports TOML (Tom's Obvious, Minimal Language) version v1.0.0.
 .
 Features:
 .
 Stdlib behavior
 As much as possible, this library is designed to behave similarly
 as the standard library's encoding/json.
 .
 Performance
 While go-toml favors usability, it is written with performance in mind.
 Most operations should not be shockingly slow.
 .
 Strict mode
 Decoder can be set to "strict mode", which makes it error when some parts
 of the TOML document was not prevent in the target structure.
 This is a great way to check for typos.
 .
 Contextualized errors
 When decoding errors occur, go-toml returns DecodeError), which contains
 a human readable contextualized version of the error.
 .
 Local date and time support
 TOML supports native local date/times. It allows to represent a given
 date, time, or date-time without relation to a timezone or offset.
 To support this use-case, go-toml provides LocalDate, LocalTime, and
 LocalDateTime. Those types can be transformed to and from time.Time,
 making them convenient yet unambiguous structures for their respective
 TOML representation.