golang-github-pelletier-go-toml.v2 2.0.6-1 source package in Ubuntu

Changelog

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

  * New upstream version 2.0.6
  * Bump dependency: golang-github-stretchr-testify-dev (>= 1.8.1)
  * Bump Standards-Version to 4.6.2 (no change)

 -- Anthony Fok <email address hidden>  Mon, 23 Jan 2023 07:29:00 -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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-pelletier-go-toml.v2_2.0.6-1.dsc 2.4 KiB 8d4c033a17b8c73d1ebdae71f15280c81eb53ac9e77e029e30983875bec8304c
golang-github-pelletier-go-toml.v2_2.0.6.orig.tar.gz 870.8 KiB 90c77524503d123f3a6b64b7dce02d7d94769bd9e05e024b622f63533b00dc5f
golang-github-pelletier-go-toml.v2_2.0.6-1.debian.tar.xz 5.3 KiB 1040b7777fd5688ecb7f6d85abdbb15432c2f86f530fd44a0c46c1299aa5ad6e

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.