aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md19
1 files changed, 11 insertions, 8 deletions
diff --git a/README.md b/README.md
index 2961785..9a0c9fc 100644
--- a/README.md
+++ b/README.md
@@ -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
-```