-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(serde): zstd compression & decompression
Tests are broken since the generated ZStd file by the CLI does not match the one generated by serde. Not really sure why.
- Loading branch information
Showing
9 changed files
with
225 additions
and
155 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,30 @@ | ||
{ | ||
"name": "John", | ||
"age": 30, | ||
"hobbies": ["reading", "writing", "coding", "👽"], | ||
"hobbies": [ | ||
"reading", | ||
"writing", | ||
"coding", | ||
"👽" | ||
], | ||
"friends": [ | ||
{ | ||
"name": "Ξθής", | ||
"age": 28, | ||
"hobbies": ["painting", "hiking", "🦛"] | ||
"hobbies": [ | ||
"painting", | ||
"hiking", | ||
"🦛" | ||
] | ||
}, | ||
{ | ||
"name": "Bob", | ||
"age": 35, | ||
"hobbies": ["fishing", "gardening", "🌿"] | ||
"hobbies": [ | ||
"fishing", | ||
"gardening", | ||
"🌿" | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters