TOML

From HandWiki
Short description: Configuration file format
TOML
TOML Logo.svg
Filename extension.toml
Internet media typeNot registered[1]
Developed byTom Preston-Werner
Community
Initial release23 February 2013; 11 years ago (2013-02-23)
Latest release
v1.0.0
(January 11, 2021; 3 years ago (2021-01-11))
Type of formatData interchange
Website{{{1}}}

Tom's Obvious, Minimal Language (TOML) is a file format for configuration files.[2] It is intended to be easy to read and write due to obvious semantics which aim to be "minimal", and it is designed to map unambiguously to a dictionary. Originally created by Tom Preston-Werner, its specification is open source. TOML is used in a number of software projects[3][4][5] and is implemented in many programming languages.[6]

Syntax

TOML's syntax primarily consists of key = value pairs, [section names], and # (for comments). TOML's syntax somewhat resembles that of .INI files, but it includes a formal specification, whereas the INI file format suffers from many competing variants.

Its specification includes a list of supported data types: String, Integer, Float, Boolean, Datetime, Array, and Table.

Example

# This is a TOML document.

title = "ImpalaPay Co."

[database]
server = "192.168.1.1"
ports = [ 8000, 8001, 8002 ]
connection_max = 5000
enabled = true

# Line breaks are OK when inside arrays
hosts = [
  "alpha",
  "omega"
]

[servers]

  # Indentation (tabs and/or spaces) is allowed but not required
  [servers.alpha]
  ip = "10.0.0.1"
  dc = "eqdc10"

  [servers.beta]
  ip = "10.0.0.2"
  dc = "eqdc10"

Use cases

TOML is used in a variety of settings (some related to its creator), such as:

Criticism

TOML has been criticized on a number of points:[10][11]

  • TOML is verbose; it is not DRY and syntactically noisy.
  • TOML's hierarchies can be difficult to infer from syntax alone.
  • Overcomplication: Like YAML, TOML has too many features.
  • In TOML the syntax determines the data types ("syntax typing").

See also

References

  1. There is a mime type proposal for TOML consisting in application/toml, but this has never been officially registered among IANA's Media Types.
  2. Preston-Werner, Tom; Gedam, Pradyun (January 11, 2021). "TOML: English v1.0.0". https://toml.io/en/v1.0.0. 
  3. "The Manifest Format - The Cargo Book". https://doc.rust-lang.org/cargo/reference/manifest.html. 
  4. Drew DeVault (2021-07-28). "My wish-list for the next YAML". https://drewdevault.com/2021/07/28/The-next-YAML.html. "YAML is both universally used, and universally reviled. It has a lot of problems, but it also is so useful in solving specific tasks that it’s hard to replace. Some new kids on the block (such as TOML) have successfully taken over a portion of its market share, but it remains in force in places where those alternatives show their weaknesses." 
  5. "TOML: Tom's Obvious Minimal Language". https://toml.io/en/. 
  6. "toml-lang/toml". 23 May 2022. https://github.com/toml-lang/toml. 
  7. "tomllib — Parse TOML files". https://docs.python.org/3/library/tomllib.html. 
  8. "The Manifest Format - The Cargo Book". https://doc.rust-lang.org/cargo/reference/manifest.html. 
  9. "10. Project.toml and Manifest.toml · Pkg.jl". https://pkgdocs.julialang.org/v1/toml-files/. 
  10. What is wrong with TOML?
  11. An INI critique of TOML

External links