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

Changelog

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

  * New upstream version 2.2.1
  * Bump versioned dependencies as per go.mod
  * Bump Standards-Version to 4.7.0 (no change)

 -- Anthony Fok <email address hidden>  Fri, 26 Apr 2024 04:23:21 -0600

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

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-pelletier-go-toml.v2_2.2.1-1.dsc 2.4 KiB 67b56c042afdf3b2058f7aa31b07f8f2ad1c7a19599aa992cc76ffff68c9133b
golang-github-pelletier-go-toml.v2_2.2.1.orig.tar.gz 887.7 KiB e0853235989fef941f76d2c13ce8500e99f7010ea3f61b379c0183372c199f0a
golang-github-pelletier-go-toml.v2_2.2.1-1.debian.tar.xz 5.4 KiB 5b3d7df2b5a8164974182ae0910f97c469bba913f1457958eb10072d24d05a68

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.