Description
Convert between Dhall and TOML.
Description
Use this package if you want to convert between dhall expressions and TOML. You can use this package as a library or an executable:
See
Dhall.DhallToToml
orDhall.TomlToDhall
modules if you want to use this package as a libraryUse
dhall-to-toml
,toml-to-dhall
programs from this package if you want an executable.
The Dhall.DhallToToml
and Dhall.TomlToDhall
modules also contains instructions for how to use this package
README.md
dhall-toml
NOTE: this package has not been completed see the roadmap section
For installation or development instructions, see:
Full documentation here:
Introduction
This dhall-toml
package provides a Dhall to TOML compiler.
Example
$ dhall-to-toml <<< "{ foo = 1, bar = True }"
foo = 1
bar = true
Roadmap
- [x] - minimal
dhall-to-toml
- [ ] - schema inference for
toml-to-dhall
- [x] - minimal
toml-to-dhall
- [ ] - documentation in docs.dhall-lang.org.