#arc #toml #input

yanked arc_from_toml

0.1.0 Feb 9, 2020

#129 in #arc

MPL-2.0 license

10KB
199 lines

Covert from TOML to ARC Readable Config

Output

title = "TOML Example"
owner = {
    name = "Tom Preston-Werner"
    organization = "GitHub"
    bio = "GitHub Cofounder & CEO\nLikes tater tots and beer."
    dob = "1979-05-27 07:32:00 +00:00"
}
database = {
    server = "192.168.1.1"
    ports = [8001, 8001, 8002]
    connection_max = 5000
    enabled = true
}
servers = {
    alpha = {
        ip = "10.0.0.1"
        dc = "eqdc10"
    }
    beta = {
        ip = "10.0.0.2"
        dc = "eqdc10"
        country = "中国"
    }
}
clients = {
    data = [["gamma", "delta"], [1, 2]]
    hosts = ["alpha", "omega"]
}
products = [
    {
        name = "Hammer"
        sku = 738594937
    }
    {
        name = "Nail"
        sku = 284758393
        color = "gray"
    }
]

Input

title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
organization = "GitHub"
bio = "GitHub Cofounder & CEO\nLikes tater tots and beer."
dob = 1979-05-27T07:32:00Z # First class dates? Why not?

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

[servers]

  # You can indent as you please. Tabs or spaces. TOML don't care.
  [servers.alpha]
  ip = "10.0.0.1"
  dc = "eqdc10"

  [servers.beta]
  ip = "10.0.0.2"
  dc = "eqdc10"
  country = "中国" # This should be parsed as UTF-8

[clients]
data = [ ["gamma", "delta"], [1, 2] ] # just an update to make sure parsers support it

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

# Products

  [[products]]
  name = "Hammer"
  sku = 738594937

  [[products]]
  name = "Nail"
  sku = 284758393
  color = "gray"

Dependencies

~3MB
~53K SLoC