summaryrefslogtreecommitdiff
path: root/formats/README.md
diff options
context:
space:
mode:
authordimitark <dime.kotevski@gmail.com>2021-06-15 14:03:15 +0200
committerGitHub <noreply@github.com>2021-06-15 15:03:15 +0300
commit74d51d8f82b00c67bf58941ef348d0d86575ab8d (patch)
tree525963d2c5b0b5338e70b1cf765fc2aa3acf5df8 /formats/README.md
parenta6e1cb827c3b37877c65eeaf3fbe1c76069e8f5d (diff)
downloadkotlinx.serialization-74d51d8f82b00c67bf58941ef348d0d86575ab8d.tar.gz
Update README.md (#1554)
Added a community-supported format (Amazon Ion)
Diffstat (limited to 'formats/README.md')
-rw-r--r--formats/README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/formats/README.md b/formats/README.md
index 3691f279..77b46239 100644
--- a/formats/README.md
+++ b/formats/README.md
@@ -119,3 +119,11 @@ Basic serial operations have been implemented, but some features such as compoun
* Platform: JVM, Android
Allow serialization and deserialization of objects to and from [CBOR](https://cbor.io/). This codec can be used to read and write from Java InputStream and OutputStream.
+
+### Amazon Ion (binary only)
+
+* GitHub repo: [dimitark/kotlinx-serialization-ion](https://github.com/dimitark/kotlinx-serialization-ion)
+* Artifact ID: `com.github.dimitark:kotlinx-serialization-ion`
+* Platform: JVM
+
+Allow serialization and deserialization of objects to and from [Amazon Ion](https://amzn.github.io/ion-docs/). It stores the data in a flat binary format. Upon destialization, it retains the references between the objects.