Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

14 linhas
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