You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
470 B

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