Toml Elixir v1.0.0 TomlElixir
TomlElixir
TOML parser for elixir.
Installation
The package can be installed by adding toml_elixir
to your list of
dependencies in mix.exs
:
def deps do
[{:toml_elixir, "~> 1.0.0"}]
end
Usage
TomlElixir is used by calling parse functions
Summary
Functions
Parse toml string to map or return raw list. Return ok/error tuple
Parse toml string to map or return raw list. Raises error on failure
Types
toml_value()
toml_value :: {:string, binary} | {:datetime, tuple} | {:number, number} | {:boolean, boolean}