toml-parser alternatives and similar packages
Based on the "Language" category.
Alternatively, view toml-parser alternatives based on common mentions on social networks and blogs.
-
elm-compiler
Compiler for Elm, a functional language for reliable webapps. -
stylish-haskell
Haskell code prettifier [Moved to: https://github.com/haskell/stylish-haskell] -
haskell-src-exts
Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer -
haskell-tools-ast-fromghc
Developer tools for Haskell -
language-python
A parser for Python 2.x and 3.x written in Haskell -
liquid-fixpoint
Horn Clause Constraint Solving for Liquid Types -
nirum
Nirum: IDL compiler and RPC/distributed object framework for microservices -
elm-export
Create Elm types and JSON decoders from Haskell source. -
tal
An implementation of Typed Assembly Language (Morrisett, Walker, Crary, Glew) -
camfort
Light-weight verification and transformation tools for Fortran -
language-c-quote
C/CUDA/OpenCL/Objective-C quasiquoting library. -
language-ecmascript
Haskell library: ECMAScript parser, pretty-printer and additional tools -
aterm-utils
Utility functions for working with aterms as generated by Minitermite -
ministg
Ministg is an interpreter for a high-level, small-step, operational semantics for the STG machine.
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of toml-parser or a related project?
README
toml-parser
This package provides a complete and light-weight parser for the TOML configuration language. TOML is specified by https://github.com/toml-lang/toml. This language is designed to be easy to understand and unambiguous.
This implementation uses Alex and Happy to generate an efficient lexer and parser. The code is fully commented and should be useful as an example of how to use these tools to parse other languages.
Example
# This is a TOML document.
title = "Example document"
[section]
string = "hello, world"
integers = [0, +1, -2, 3_333_333]
float = 4.2e10
inlinemap = { x = 1, y = 'two' }
[nesting]
[nesting.first]
longstring = """multiline "string" syntax"""
longquote = '''escapes \not \interpreted'''
[nesting.second]
datetime = 2017-05-04T12:13:14Z
lookinggood = true
Contact Information
Please contact me via GitHub or on the #haskell IRC channel on irc.freenode.net