Popularity
8.3
Declining
Activity
0.0
Stable
56
11
13
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.
-
totem
Crystal configuration with spirit. Load and parse configuration in JSON, YAML, dotenv formats.
Collect and Analyze Billions of Data Points in Real Time
Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Promo
www.influxdata.com
Do you think we are missing an alternative of crystal-toml or a related project?
README
toml.cr
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"