11Package: zstdlite
22Type: Package
33Title: Fast Compression and Serialization with 'Zstandard' Algorithm
4- Version: 0.2.5
4+ Version: 0.2.6
55Authors@R: c(
6- person("Mike", "Cheng", role = c("aut", "cre", 'cph'),
7- email = "mikefc@coolbutuseless.com"),
8- person(given = "Yann",
9- family = "Collet",
10- role = "cph",
11- comment = "Author of the embedded zstandard library")
6+ person("Mike", "Cheng", role = c("aut", "cre", 'cph'), email = "mikefc@coolbutuseless.com"),
7+ person("Yann", "Collet", role = c("ctb", "cph"), comment = "Author of the embedded zstandard library"),
8+ person("Meta Platforms, Inc. and affiliates.", role = "cph", comment = "Facebook is the copyright holder of the bundled zstd library")
129 )
1310Maintainer: Mike Cheng <mikefc@coolbutuseless.com>
1411Description: Fast, compressed serialization of R objects using the 'Zstandard' algorithm.
@@ -18,11 +15,15 @@ Description: Fast, compressed serialization of R objects using the 'Zstandard' a
1815 by other systems and programs supporting 'Zstandard' compression.
1916 Dictionaries are supported for more effective compression of small data,
2017 and functions are provided for training these dictionaries.
18+ This implementation is a wrapper around the 'Zstandard' 'C' library which
19+ is available from <https://github.com/facebook/zstd>.
2120URL: https://github.com/coolbutuseless/zstdlite
2221BugReports: https://github.com/coolbutuseless/zstdlite/issues
2322License: MIT + file LICENSE
2423Encoding: UTF-8
2524RoxygenNote: 7.3.1
25+ Copyright: This package includes code from the 'zstd' library owned by Meta Platforms, Inc. and affiliates.
26+ and created by Yann Collet. See file 'inst/COPYRIGHTS' for details.
2627Suggests:
2728 knitr,
2829 rmarkdown,
0 commit comments