diff options
author | Minetest-j45 <55553015+Minetest-j45@users.noreply.github.com> | 2022-06-01 17:17:23 +0100 |
---|---|---|
committer | Minetest-j45 <55553015+Minetest-j45@users.noreply.github.com> | 2022-06-01 17:17:23 +0100 |
commit | 9350ad5d88ace6424b3f2457ce60c5f24da077c1 (patch) | |
tree | 0f46c5aa33f47348fe07f7fa1a6074571deb9556 /serialize.go | |
parent | ea78df266c39ffb95f6de17a5f2729c88df78b41 (diff) | |
download | mt-9350ad5d88ace6424b3f2457ce60c5f24da077c1.tar.xz |
import zstd lib
Diffstat (limited to 'serialize.go')
-rw-r--r-- | serialize.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/serialize.go b/serialize.go index 57a8e38..9c6d826 100644 --- a/serialize.go +++ b/serialize.go @@ -13,6 +13,8 @@ import ( "math" "sort" "unicode/utf16" + + "github.com/klauspost/compress/zstd" ) func write8(w io.Writer, x uint8) { |