git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/toml/doc.go (about)

     1  /*
     2  Package toml implements decoding and encoding of TOML files.
     3  
     4  This package supports TOML v1.0.0, as listed on https://toml.io
     5  
     6  There is also support for delaying decoding with the Primitive type, and
     7  querying the set of keys in a TOML document with the MetaData type.
     8  
     9  The git.sr.ht/~pingoo/stdx/toml/cmd/tomlv package implements a TOML validator,
    10  and can be used to verify if TOML document is valid. It can also be used to
    11  print the type of each key.
    12  */
    13  package toml