mirror of
https://github.com/mudler/luet.git
synced 2025-07-19 17:59:11 +00:00
Instead of using gox on one side and an action to release, we can merge them together with goreleaser which will build for extra targets (arm, mips if needed in the future) and it also takes care of creating checksums, a source archive, and a changelog and creating a release with all the artifacts. All binaries should respect the old naming convention, so any scripts out there should still work. Signed-off-by: Itxaka <igarcia@suse.com>
24 lines
789 B
Go
24 lines
789 B
Go
// Package toml is a TOML parser and manipulation library.
|
|
//
|
|
// This version supports the specification as described in
|
|
// https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.5.0.md
|
|
//
|
|
// Marshaling
|
|
//
|
|
// Go-toml can marshal and unmarshal TOML documents from and to data
|
|
// structures.
|
|
//
|
|
// TOML document as a tree
|
|
//
|
|
// Go-toml can operate on a TOML document as a tree. Use one of the Load*
|
|
// functions to parse TOML data and obtain a Tree instance, then one of its
|
|
// methods to manipulate the tree.
|
|
//
|
|
// JSONPath-like queries
|
|
//
|
|
// The package github.com/pelletier/go-toml/query implements a system
|
|
// similar to JSONPath to quickly retrieve elements of a TOML document using a
|
|
// single expression. See the package documentation for more information.
|
|
//
|
|
package toml
|