TOML

TOML is a serialization format similar to inifile but with a spec.

Example

title = "Example config"

foo = -12345
bar = 3.14
baz = true

timestamp = 2025-03-19T12:34:56Z

plugins = [
  "foo",
  { name = "bar", version = 2 },
  "baz",
]

[database]
server = "192.168.1.1"

[database.credentials]
user = "admin"

See also