Popularity
8.4
Stable
Activity
4.6
-
58
11
16

Programming language: Crystal
Tags: Configuration    
Latest version: v0.6.1

crystal-toml alternatives and similar shards

Based on the "Configuration" category.
Alternatively, view crystal-toml alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of crystal-toml or a related project?

Add another 'Configuration' Shard

README

toml.cr

Build Status

A TOML parser for Crystal, compliant with the v0.4.0 version of TOML.

Installation

Add this to your application's shard.yml:

dependencies:
  toml:
    github: crystal-community/toml.cr
    branch: master

Usage

require "toml"

toml_string = %(
  title = "TOML Example"

  [owner]
  name = "Lance Uppercut"
  dob = 1979-05-27T07:32:00Z
)

toml = TOML.parse(toml_string)
puts toml["title"] #=> "TOML Example"

owner = toml["owner"].as(Hash)
puts owner["name"] #=> "Lance Uppercut"
puts owner["dob"]  #=> "1979-05-27 07:32:00 UTC"