diff options
author | Louis Pilfold <louis@lpil.uk> | 2022-01-01 18:53:12 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-01-01 18:53:12 +0000 |
commit | ee6fed818f9925df00df129873c6858618d0c92a (patch) | |
tree | 9c3e3e4ac0947f1a9357a0fae90f2e8363e56bde | |
parent | d8b217db0ead5e0bbf5ee8aa0919d8223c7f425f (diff) | |
download | gleam_json-ee6fed818f9925df00df129873c6858618d0c92a.tar.gz gleam_json-ee6fed818f9925df00df129873c6858618d0c92a.zip |
Note Thoas usage
-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 -``` |