Jump to content

TOML

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 159.2.174.37 (talk) at 21:01, 24 January 2023 (→‎Syntax). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

TOML
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
Open format?Yes
Websitetoml.io Edit this at Wikidata

TOML is a file format for configuration files. It is intended to be easy to read and write due to obvious semantics which aim to be "minimal", and is designed to map unambiguously to a dictionary. Its specification is open-source, and receives community contributions. TOML is used in a number of software projects,[2][3][4] and is implemented in many programming languages.[5] The name "TOML" is an acronym for "Tom's Obvious, Minimal Language"[6] referring to its creator, Tom Preston-Werner.

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 = "TOML Example"

[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates

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

[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"

[clients]
data = [ ["gamma", "delta"], [1, 2] ]

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

Use cases

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

Comparison to other formats

Criticism

Although there is not a consensus, TOML has received several critiques since its first release. The HitchDev lists the following points as problematic in TOML:[7]

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

The libconfini project has since released a more extensive critique of TOML from the INI perspective,[8] listing the following points (among others) as problematic:

  • TOML lets the configuration file decide about data types (syntax typing), when de facto it is the client application that decides. Any mismatching type will be either ignored or converted to the expected type (depending on the parser) anyway
  • TOML re-introduces what human-friendly languages normally try to get rid of: a verbose syntax and the necessity of using quotes for strings
  • TOML syntax is always case-sensitive, despite the fact that there are situations where configuration files must be case-insensitive (as, for instance, configuration files that map a FAT32 filesystem or HTML tags)
  • TOML uses square brackets for arrays even though square brackets are already reserved for table names; furthermore any special syntax for arrays brings the language back to syntax typing
  • A TOML table must be populated in a single step; merging multiple TOML files is problematic
  • TOML arbitrarily introduces a syntax for dates
  • TOML allows (but discourages) the empty string as a key
  • TOML's quoting rules introduce confusion between actual strings (free content) and enumeration labels (i.e. choices within closed sets of options)
  • TOML's rules cannot be inferred from the content, therefore editing a TOML file requires prior knowledge of the language
  • TOML is backward-incompatible with INI

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. ^ "The Manifest Format - The Cargo Book". doc.rust-lang.org.
  3. ^ Drew DeVault (2021-07-28). "My wish-list for the next YAML". 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.
  4. ^ "TOML: Tom's Obvious Minimal Language". toml.io. Retrieved 2022-08-08.
  5. ^ "toml-lang/toml". GitHub. 23 May 2022.
  6. ^ "Learn toml in Y Minutes". learnxinyminutes.com. Retrieved 2022-08-08.
  7. ^ What is wrong with TOML?
  8. ^ An INI critique of TOML

External links