README.md
# gloml
[](https://hex.pm/packages/gloml)
[](https://hexdocs.pm/gloml/)
A toml parsing library for gleam ✨ All gleam targets and runtimes are supported by gloml.
*Timestamps are not currently supported.*
```gleam
import gleam/io
pub fn main() {
decode(
"
[my-project]
version = \"1.2.3\"
",
d.field("my-project", d.field("version", d.string)),
)
|> io.println()
}
```
## Quick start
```sh
cd priv; npm install; cd .. # install dependencies for js
gleam test # Run the tests
```
## Installation
If available on Hex this package can be added to your Gleam project:
```sh
gleam add gloml
```
and its documentation can be found at <https://hexdocs.pm/gloml>.