From 71a0e21ff68d155e8c7b6db9f2416021aea794e6 Mon Sep 17 00:00:00 2001 From: Ben Woodworth Date: Tue, 4 May 2021 21:30:26 -0400 Subject: [PATCH] Add Minecraft NBT to community formats --- formats/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/formats/README.md b/formats/README.md index 6be4bc19ce..3691f2799d 100644 --- a/formats/README.md +++ b/formats/README.md @@ -58,6 +58,15 @@ This library allows serialization and deserialization of objects to and from [Av Allows serialization and deserialization of objects to and from [BSON](https://docs.mongodb.com/manual/reference/bson-types/). +### Minecraft NBT (Multiplatform) + +* GitHub repo: [BenWoodworth/knbt](https://github.com/BenWoodworth/knbt) +* Artifact ID: `net.benwoodworth.knbt:knbt` +* Platform: all supported platforms + +Implements the [NBT format](https://minecraft.fandom.com/wiki/NBT_format) for kotlinx.serialization, and +provides a type-safe DSL for constructing NBT tags. + ### MsgPack (Multiplatform) * GitHub repo: [esensar/kotlinx-serialization-msgpack](https://github.com/esensar/kotlinx-serialization-msgpack)