diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -2,6 +2,17 @@ Work with JSON in Gleam! +Under the hood library uses [Thoas](https://github.com/lpil/thoas/), the fastest +and most memory efficient pure Erlang JSON encoder/decoder. + +## Installation + +Add this package to your Gleam project. + +```shell +gleam add gleam_json +``` + ### Encoding ```rust @@ -52,11 +63,3 @@ pub type MyError { InvalidFormat(dynamic.DecodeError) } ``` - -## Installation - -Add this package to your Gleam project. - -```shell -gleam add gleam_json -``` |