v/vlib/toml
Larpon 65e9503556
toml: check for immutable tables (#12612)
2021-11-29 15:10:23 +02:00
..
ast
checker toml: fix float checker bug for `-0.01` (#12590) 2021-11-27 21:03:26 +02:00
decoder
input
parser toml: check for immutable tables (#12612) 2021-11-29 15:10:23 +02:00
scanner toml: fix, test and optimize `nan` and `inf` values (#12592) 2021-11-27 21:26:28 +02:00
tests toml: check for immutable tables (#12612) 2021-11-29 15:10:23 +02:00
to toml: add conversion of ast inf and nan to Any (#12567) 2021-11-25 12:33:54 +02:00
token
util
README.md
any.v
toml.v toml: clean up and improve spaced and dotted key parsing (#12576) 2021-11-25 16:51:54 +02:00

README.md

TOML module

toml is a fully fledged TOML v1.0.0 compatible parser written in pure V.

Usage

import toml
import toml.to

// Complete text from the example in the README.md:
// https://github.com/toml-lang/toml/blob/3b11f6921da7b6f5db37af039aa021fee450c091/README.md#Example
const toml_text = '# 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"
]'

fn main() {
	doc := toml.parse(toml_text) or { panic(err) }
	title := doc.value('title').string()
	println('title: "$title"')
	ip := doc.value('servers.alpha.ip').string()
	println('Server IP: "$ip"')

	toml_json := to.json(doc)
	println(toml_json)
}