From f2a30d0289a7f6fedec6a6299afc76de53c46a74 Mon Sep 17 00:00:00 2001 From: Artemy Egorov Date: Thu, 1 Aug 2024 15:57:20 +0300 Subject: [PATCH] fix: daletpack description --- specification/daletl.md | 2 -- specification/daletpack.md | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/specification/daletl.md b/specification/daletl.md index f68bc67..f21da17 100644 --- a/specification/daletl.md +++ b/specification/daletl.md @@ -4,8 +4,6 @@ Daletl is data representation of serialized/deserialized [DaletPack](./daletpack.md). -Daletl must be serialized as [DaletPack](./daletpack.md). All data transfer between server and client is done in this format. - ### Root Daletl root is array of tags. For convenience, we will use the typescript notation. diff --git a/specification/daletpack.md b/specification/daletpack.md index 9b306d9..bdfd54e 100644 --- a/specification/daletpack.md +++ b/specification/daletpack.md @@ -1,6 +1,8 @@ # DaletPack specification for Dalet v1.0-preview -DaletPack is an binary data format for Dalet, that is used for minimizing the size of transmitted daletl data. DaletPack is designed specifically to transfer as little data as possible, it compresses the declaration of tag types into the smallest possible volume. Nothing unnecessary is transferred. +DaletPack is an binary data format for Dalet, that is used for minimizing the size of transmitted data. DaletPack is designed specifically to transfer as little data as possible, it compresses the declaration of tag types into the smallest possible volume. Nothing unnecessary is transferred. + +All apps that supports Dalet must use this format when transmitting data between hosts. All data must be compressed with [zstd](https://datatracker.ietf.org/doc/html/rfc8878).