simdutf_7.4.0-1_amd64.changes (click to toggle) | |
---|---|
Format: | 1.8 |
Date: | Mon, 13 Oct 2025 07:59:32 -0400 |
Source: | simdutf |
Binary: | libsimdutf-dev libsimdutf-tools libsimdutf-tools-dbgsym libsimdutf26 libsimdutf26-dbgsym |
Architecture: | source amd64 |
Version: | 7.4.0-1 |
Distribution: | unstable |
Urgency: | medium |
Maintainer: | Mo Zhou <lumin@debian.org> |
Changed-By: | Mo Zhou <lumin@debian.org> |
Description: | libsimdutf-dev - Fast Unicode validation and transcoding - development files libsimdutf-tools - Fast Unicode validation and transcoding - utilities libsimdutf26 - Fast Unicode validation and transcoding |
Closes: | 1096008 |
Changes: | simdutf (7.4.0-1) unstable; urgency=medium * Initial release. (Closes: #1096008) |
Files: | 20222751418cb239cd8be5f8f716d85b 1958 libs optional simdutf_7.4.0-1.dsc 54a64a63127e2e60d24552900eccf901 1394588 libs optional simdutf_7.4.0.orig.tar.xz 3a2dd1390abba731ffb329a3f1041a18 4404 libs optional simdutf_7.4.0-1.debian.tar.xz 6b08a7fbc48269455c728be3b4a78859 30712 libdevel optional libsimdutf-dev_7.4.0-1_amd64.deb df4172f88abef05d92442d1f1070cbe6 373676 debug optional libsimdutf-tools-dbgsym_7.4.0-1_amd64.deb 99c8cb41b4a19daf708b216f69a376d1 543260 misc optional libsimdutf-tools_7.4.0-1_amd64.deb 540f4921f2b5ae883563a35e437349cc 1597916 debug optional libsimdutf26-dbgsym_7.4.0-1_amd64.deb 8a1030194d0284ab0659d66e35d05516 131244 libs optional libsimdutf26_7.4.0-1_amd64.deb 4459308254a1aec5e6ed968c3a01f5e7 8138 libs optional simdutf_7.4.0-1_amd64.buildinfo |
simdutf_7.4.0-1.dsc (click to toggle) | |
---|---|
Format: | 3.0 (quilt) |
Source: | simdutf |
Binary: | libsimdutf-dev, libsimdutf26, libsimdutf-tools |
Architecture: | any |
Version: | 7.4.0-1 |
Maintainer: | Mo Zhou <lumin@debian.org> |
Homepage: | https://github.com/simdutf/simdutf |
Standards-Version: | 4.7.2 |
Vcs-Browser: | https://salsa.debian.org/debian/simdutf |
Vcs-Git: | https://salsa.debian.org/debian/simdutf.git |
Build-Depends: | debhelper-compat (=13), cmake, python3 |
Package-List: | libsimdutf-dev deb libdevel optional arch=any libsimdutf-tools deb misc optional arch=any libsimdutf26 deb libs optional arch=any |
Files: | 54a64a63127e2e60d24552900eccf901 1394588 simdutf_7.4.0.orig.tar.xz 3a2dd1390abba731ffb329a3f1041a18 4404 simdutf_7.4.0-1.debian.tar.xz |
control file for libsimdutf-dev_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
Package: | libsimdutf-dev |
Source: | simdutf |
Version: | 7.4.0-1 |
Architecture: | amd64 |
Maintainer: | Mo Zhou <lumin@debian.org> |
Installed-Size: | 297 |
Depends: | libsimdutf26 (=7.4.0-1) |
Section: | libdevel |
Priority: | optional |
Homepage: | https://github.com/simdutf/simdutf |
Description: | Fast Unicode validation and transcoding - development files Most modern software relies on the Unicode standard. In memory, Unicode strings are represented using either UTF-8 or UTF-16. The UTF-8 format is the de facto standard on the web (JSON, HTML, etc.) and it has been adopted as the default in many popular programming languages (Go, Zig, Rust, Swift, etc.). The UTF-16 format is standard in Java, C# and in many Windows technologies. . Not all sequences of bytes are valid Unicode strings. It is unsafe to use Unicode strings in UTF-8 and UTF-16LE without first validating them. Furthermore, we often need to convert strings from one encoding to another, by a process called transcoding. For security purposes, such transcoding should be validating: it should refuse to transcode incorrect strings. . This library provide fast Unicode functions such as . * ASCII, UTF-8, UTF-16LE/BE and UTF-32 validation, with and without error identification, * Latin1 to UTF-8 transcoding, * Latin1 to UTF-16LE/BE transcoding * Latin1 to UTF-32 transcoding * UTF-8 to Latin1 transcoding, with or without validation, with and without error identification, * UTF-8 to UTF-16LE/BE transcoding, with or without validation, with and without error identification, * UTF-8 to UTF-32 transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to Latin1 transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to UTF-8 transcoding, with or without validation, with and without error identification, * UTF-32 to Latin1 transcoding, with or without validation, with and without error identification, * UTF-32 to UTF-8 transcoding, with or without validation, with and without error identification, * UTF-32 to UTF-16LE/BE transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to UTF-32 transcoding, with or without validation, with and without error identification, * From an UTF-8 string, compute the size of the Latin1 equivalent string, * From an UTF-8 string, compute the size of the UTF-16 equivalent string, * From an UTF-8 string, compute the size of the UTF-32 equivalent string (equivalent to UTF-8 character counting), * From an UTF-16LE/BE string, compute the size of the Latin1 equivalent string, * From an UTF-16LE/BE string, compute the size of the UTF-8 equivalent string, * From an UTF-32 string, compute the size of the UTF-8 or UTF-16LE equivalent string, * From an UTF-16LE/BE string, compute the size of the UTF-32 equivalent string (equivalent to UTF-16 character counting), * UTF-8 and UTF-16LE/BE character counting, * UTF-16 endianness change (UTF16-LE/BE to UTF-16-BE/LE), * WHATWG forgiving-base64 (with or without URL encoding) to binary, * Binary to base64 (with or without URL encoding). . The functions are accelerated using SIMD instructions (e.g., ARM NEON, SSE, AVX, AVX-512, RISC-V Vector Extension, LoongSon, POWER, etc.). When your strings contain hundreds of characters, we can often transcode them at speeds exceeding a billion characters per second. You should expect high speeds not only with English strings (ASCII) but also Chinese, Japanese, Arabic, and so forth. We handle the full character range (including, for example, emojis). . The library compiles down to a small library of a few hundred kilobytes. Our functions are exception-free and non allocating. We have extensive tests and extensive benchmarks. . This package ships the development files. |
contents of libsimdutf-dev_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-10-13 11:59 ./ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/include/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/include/simdutf/ -rw-r--r-- root/root 1856 2025-08-24 00:19 ./usr/include/simdutf/avx512.h -rw-r--r-- root/root 8039 2025-08-24 00:19 ./usr/include/simdutf/common_defs.h -rw-r--r-- root/root 1082 2025-08-24 00:19 ./usr/include/simdutf/compiler_check.h -rw-r--r-- root/root 1163 2025-08-24 00:19 ./usr/include/simdutf/encoding_types.h -rw-r--r-- root/root 4245 2025-08-24 00:19 ./usr/include/simdutf/error.h -rw-r--r-- root/root 227524 2025-08-24 00:19 ./usr/include/simdutf/implementation.h drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/include/simdutf/internal/ -rw-r--r-- root/root 9997 2025-08-24 00:19 ./usr/include/simdutf/internal/isadetection.h -rw-r--r-- root/root 9022 2025-08-24 00:19 ./usr/include/simdutf/portability.h -rw-r--r-- root/root 685 2025-08-24 00:19 ./usr/include/simdutf/simdutf_version.h -rw-r--r-- root/root 787 2025-08-24 00:19 ./usr/include/simdutf.h drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/cmake/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/cmake/simdutf/ -rw-r--r-- root/root 3675 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/cmake/simdutf/simdutf-config-version.cmake -rw-r--r-- root/root 59 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/cmake/simdutf/simdutf-config.cmake -rw-r--r-- root/root 885 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/cmake/simdutf/simdutfTargets-none.cmake -rw-r--r-- root/root 4583 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/cmake/simdutf/simdutfTargets.cmake drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/pkgconfig/ -rw-r--r-- root/root 234 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/pkgconfig/simdutf.pc drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/libsimdutf-dev/ -rw-r--r-- root/root 153 2025-10-13 11:59 ./usr/share/doc/libsimdutf-dev/changelog.Debian.gz -rw-r--r-- root/root 5325 2025-10-13 11:59 ./usr/share/doc/libsimdutf-dev/copyright lrwxrwxrwx root/root 0 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/libsimdutf.so -> libsimdutf.so.26 |
copyright of libsimdutf-dev_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: simdutf Source: https://github.com/simdutf/simdutf Files-Excluded: benchmarks Comment: The benchmarks are unused and are more complicated to accurately document in debian/copyright Files: * Copyright: The simdutf authors License: Apache-2.0 or Expat Files: cmake/CPM.cmake Copyright: 2019-2023 Lars Melchior and contributors License: Expat Files: cmake/JoinPaths.cmake Copyright: 2020 Jan Tojnar License: Expat or CC0-1.0 Files: fuzz/helpers/nameof.hpp Copyright: 2016-2024 Daniil Goncharov <neargye@gmail.com> License: Expat Files: include/simdutf/internal/isadetection.h Copyright: 2016- Facebook, Inc (Adam Paszke) 2014- Facebook, Inc (Soumith Chintala) 2011-2014 Idiap Research Institute (Ronan Collobert) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu) 2011-2013 NYU (Clement Farabet) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston) 2006 Idiap Research Institute (Samy Bengio) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz) License: BSD-3-clause Comment: Highly modified version of https://github.com/endorno/pytorch/blob/master/torch/lib/TH/generic/simd/simd.h License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . https://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America and IDIAP Research Institute nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: CC0-1.0 To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <https://creativecommons.org/publicdomain/zero/1.0/>. . On Debian systems, the complete text of the CC0 Public Domain Dedication can be found in "/usr/share/common-licenses/CC0-1.0". License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
control file for libsimdutf-tools_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
Package: | libsimdutf-tools |
Source: | simdutf |
Version: | 7.4.0-1 |
Architecture: | amd64 |
Maintainer: | Mo Zhou <lumin@debian.org> |
Installed-Size: | 2858 |
Depends: | libc6 (>=2.38), libgcc-s1 (>=4.2), libsimdutf26 (>=7.4.0) |
Section: | misc |
Priority: | optional |
Homepage: | https://github.com/simdutf/simdutf |
Description: | Fast Unicode validation and transcoding - utilities Most modern software relies on the Unicode standard. In memory, Unicode strings are represented using either UTF-8 or UTF-16. The UTF-8 format is the de facto standard on the web (JSON, HTML, etc.) and it has been adopted as the default in many popular programming languages (Go, Zig, Rust, Swift, etc.). The UTF-16 format is standard in Java, C# and in many Windows technologies. . Not all sequences of bytes are valid Unicode strings. It is unsafe to use Unicode strings in UTF-8 and UTF-16LE without first validating them. Furthermore, we often need to convert strings from one encoding to another, by a process called transcoding. For security purposes, such transcoding should be validating: it should refuse to transcode incorrect strings. . This library provide fast Unicode functions such as . * ASCII, UTF-8, UTF-16LE/BE and UTF-32 validation, with and without error identification, * Latin1 to UTF-8 transcoding, * Latin1 to UTF-16LE/BE transcoding * Latin1 to UTF-32 transcoding * UTF-8 to Latin1 transcoding, with or without validation, with and without error identification, * UTF-8 to UTF-16LE/BE transcoding, with or without validation, with and without error identification, * UTF-8 to UTF-32 transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to Latin1 transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to UTF-8 transcoding, with or without validation, with and without error identification, * UTF-32 to Latin1 transcoding, with or without validation, with and without error identification, * UTF-32 to UTF-8 transcoding, with or without validation, with and without error identification, * UTF-32 to UTF-16LE/BE transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to UTF-32 transcoding, with or without validation, with and without error identification, * From an UTF-8 string, compute the size of the Latin1 equivalent string, * From an UTF-8 string, compute the size of the UTF-16 equivalent string, * From an UTF-8 string, compute the size of the UTF-32 equivalent string (equivalent to UTF-8 character counting), * From an UTF-16LE/BE string, compute the size of the Latin1 equivalent string, * From an UTF-16LE/BE string, compute the size of the UTF-8 equivalent string, * From an UTF-32 string, compute the size of the UTF-8 or UTF-16LE equivalent string, * From an UTF-16LE/BE string, compute the size of the UTF-32 equivalent string (equivalent to UTF-16 character counting), * UTF-8 and UTF-16LE/BE character counting, * UTF-16 endianness change (UTF16-LE/BE to UTF-16-BE/LE), * WHATWG forgiving-base64 (with or without URL encoding) to binary, * Binary to base64 (with or without URL encoding). . The functions are accelerated using SIMD instructions (e.g., ARM NEON, SSE, AVX, AVX-512, RISC-V Vector Extension, LoongSon, POWER, etc.). When your strings contain hundreds of characters, we can often transcode them at speeds exceeding a billion characters per second. You should expect high speeds not only with English strings (ASCII) but also Chinese, Japanese, Arabic, and so forth. We handle the full character range (including, for example, emojis). . The library compiles down to a small library of a few hundred kilobytes. Our functions are exception-free and non allocating. We have extensive tests and extensive benchmarks. . This package ships several command line tools. |
contents of libsimdutf-tools_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-10-13 11:59 ./ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/bin/ -rwxr-xr-x root/root 1346720 2025-10-13 11:59 ./usr/bin/fastbase64 -rwxr-xr-x root/root 1563808 2025-10-13 11:59 ./usr/bin/sutf drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/libsimdutf-tools/ -rw-r--r-- root/root 153 2025-10-13 11:59 ./usr/share/doc/libsimdutf-tools/changelog.Debian.gz -rw-r--r-- root/root 5325 2025-10-13 11:59 ./usr/share/doc/libsimdutf-tools/copyright |
copyright of libsimdutf-tools_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
NOTE: Copyright is the same as libsimdutf-dev (libsimdutf-dev_7.4.0-1_amd64.deb). Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: simdutf Source: https://github.com/simdutf/simdutf Files-Excluded: benchmarks Comment: The benchmarks are unused and are more complicated to accurately document in debian/copyright Files: * Copyright: The simdutf authors License: Apache-2.0 or Expat Files: cmake/CPM.cmake Copyright: 2019-2023 Lars Melchior and contributors License: Expat Files: cmake/JoinPaths.cmake Copyright: 2020 Jan Tojnar License: Expat or CC0-1.0 Files: fuzz/helpers/nameof.hpp Copyright: 2016-2024 Daniil Goncharov <neargye@gmail.com> License: Expat Files: include/simdutf/internal/isadetection.h Copyright: 2016- Facebook, Inc (Adam Paszke) 2014- Facebook, Inc (Soumith Chintala) 2011-2014 Idiap Research Institute (Ronan Collobert) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu) 2011-2013 NYU (Clement Farabet) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston) 2006 Idiap Research Institute (Samy Bengio) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz) License: BSD-3-clause Comment: Highly modified version of https://github.com/endorno/pytorch/blob/master/torch/lib/TH/generic/simd/simd.h License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . https://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America and IDIAP Research Institute nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: CC0-1.0 To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <https://creativecommons.org/publicdomain/zero/1.0/>. . On Debian systems, the complete text of the CC0 Public Domain Dedication can be found in "/usr/share/common-licenses/CC0-1.0". License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
control file for libsimdutf-tools-dbgsym_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
Package: | libsimdutf-tools-dbgsym |
Source: | simdutf |
Version: | 7.4.0-1 |
Auto-Built-Package: | debug-symbols |
Architecture: | amd64 |
Maintainer: | Mo Zhou <lumin@debian.org> |
Installed-Size: | 1517 |
Depends: | libsimdutf-tools (=7.4.0-1) |
Section: | debug |
Priority: | optional |
Description: | debug symbols for libsimdutf-tools |
Build-Ids: | 85ddd88c34c8e780d0448310c7b966efafa8edfe 92285e5fab635a862804a971551d8585c63d766a |
contents of libsimdutf-tools-dbgsym_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-10-13 11:59 ./ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/.build-id/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/.build-id/85/ -rw-r--r-- root/root 848968 2025-10-13 11:59 ./usr/lib/debug/.build-id/85/ddd88c34c8e780d0448310c7b966efafa8edfe.debug drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/.build-id/92/ -rw-r--r-- root/root 665264 2025-10-13 11:59 ./usr/lib/debug/.build-id/92/285e5fab635a862804a971551d8585c63d766a.debug drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/.dwz/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/.dwz/x86_64-linux-gnu/ -rw-r--r-- root/root 23648 2025-10-13 11:59 ./usr/lib/debug/.dwz/x86_64-linux-gnu/libsimdutf-tools.debug drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/ lrwxrwxrwx root/root 0 2025-10-13 11:59 ./usr/share/doc/libsimdutf-tools-dbgsym -> libsimdutf-tools |
copyright of libsimdutf-tools-dbgsym_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
WARNING: No copyright found, please check package manually. |
control file for libsimdutf26_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
Package: | libsimdutf26 |
Source: | simdutf |
Version: | 7.4.0-1 |
Architecture: | amd64 |
Maintainer: | Mo Zhou <lumin@debian.org> |
Installed-Size: | 541 |
Depends: | libc6 (>=2.14), libgcc-s1 (>=3.0), libstdc++6 (>=13.1) |
Section: | libs |
Priority: | optional |
Homepage: | https://github.com/simdutf/simdutf |
Description: | Fast Unicode validation and transcoding Most modern software relies on the Unicode standard. In memory, Unicode strings are represented using either UTF-8 or UTF-16. The UTF-8 format is the de facto standard on the web (JSON, HTML, etc.) and it has been adopted as the default in many popular programming languages (Go, Zig, Rust, Swift, etc.). The UTF-16 format is standard in Java, C# and in many Windows technologies. . Not all sequences of bytes are valid Unicode strings. It is unsafe to use Unicode strings in UTF-8 and UTF-16LE without first validating them. Furthermore, we often need to convert strings from one encoding to another, by a process called transcoding. For security purposes, such transcoding should be validating: it should refuse to transcode incorrect strings. . This library provide fast Unicode functions such as . * ASCII, UTF-8, UTF-16LE/BE and UTF-32 validation, with and without error identification, * Latin1 to UTF-8 transcoding, * Latin1 to UTF-16LE/BE transcoding * Latin1 to UTF-32 transcoding * UTF-8 to Latin1 transcoding, with or without validation, with and without error identification, * UTF-8 to UTF-16LE/BE transcoding, with or without validation, with and without error identification, * UTF-8 to UTF-32 transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to Latin1 transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to UTF-8 transcoding, with or without validation, with and without error identification, * UTF-32 to Latin1 transcoding, with or without validation, with and without error identification, * UTF-32 to UTF-8 transcoding, with or without validation, with and without error identification, * UTF-32 to UTF-16LE/BE transcoding, with or without validation, with and without error identification, * UTF-16LE/BE to UTF-32 transcoding, with or without validation, with and without error identification, * From an UTF-8 string, compute the size of the Latin1 equivalent string, * From an UTF-8 string, compute the size of the UTF-16 equivalent string, * From an UTF-8 string, compute the size of the UTF-32 equivalent string (equivalent to UTF-8 character counting), * From an UTF-16LE/BE string, compute the size of the Latin1 equivalent string, * From an UTF-16LE/BE string, compute the size of the UTF-8 equivalent string, * From an UTF-32 string, compute the size of the UTF-8 or UTF-16LE equivalent string, * From an UTF-16LE/BE string, compute the size of the UTF-32 equivalent string (equivalent to UTF-16 character counting), * UTF-8 and UTF-16LE/BE character counting, * UTF-16 endianness change (UTF16-LE/BE to UTF-16-BE/LE), * WHATWG forgiving-base64 (with or without URL encoding) to binary, * Binary to base64 (with or without URL encoding). . The functions are accelerated using SIMD instructions (e.g., ARM NEON, SSE, AVX, AVX-512, RISC-V Vector Extension, LoongSon, POWER, etc.). When your strings contain hundreds of characters, we can often transcode them at speeds exceeding a billion characters per second. You should expect high speeds not only with English strings (ASCII) but also Chinese, Japanese, Arabic, and so forth. We handle the full character range (including, for example, emojis). . The library compiles down to a small library of a few hundred kilobytes. Our functions are exception-free and non allocating. We have extensive tests and extensive benchmarks. . This package ships the shared object. |
contents of libsimdutf26_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-10-13 11:59 ./ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/ -rw-r--r-- root/root 534560 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/libsimdutf.so.26.0.0 drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/libsimdutf26/ -rw-r--r-- root/root 153 2025-10-13 11:59 ./usr/share/doc/libsimdutf26/changelog.Debian.gz -rw-r--r-- root/root 5325 2025-10-13 11:59 ./usr/share/doc/libsimdutf26/copyright lrwxrwxrwx root/root 0 2025-10-13 11:59 ./usr/lib/x86_64-linux-gnu/libsimdutf.so.26 -> libsimdutf.so.26.0.0 |
copyright of libsimdutf26_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
NOTE: Copyright is the same as libsimdutf-dev (libsimdutf-dev_7.4.0-1_amd64.deb). Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: simdutf Source: https://github.com/simdutf/simdutf Files-Excluded: benchmarks Comment: The benchmarks are unused and are more complicated to accurately document in debian/copyright Files: * Copyright: The simdutf authors License: Apache-2.0 or Expat Files: cmake/CPM.cmake Copyright: 2019-2023 Lars Melchior and contributors License: Expat Files: cmake/JoinPaths.cmake Copyright: 2020 Jan Tojnar License: Expat or CC0-1.0 Files: fuzz/helpers/nameof.hpp Copyright: 2016-2024 Daniil Goncharov <neargye@gmail.com> License: Expat Files: include/simdutf/internal/isadetection.h Copyright: 2016- Facebook, Inc (Adam Paszke) 2014- Facebook, Inc (Soumith Chintala) 2011-2014 Idiap Research Institute (Ronan Collobert) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu) 2011-2013 NYU (Clement Farabet) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston) 2006 Idiap Research Institute (Samy Bengio) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz) License: BSD-3-clause Comment: Highly modified version of https://github.com/endorno/pytorch/blob/master/torch/lib/TH/generic/simd/simd.h License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . https://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America and IDIAP Research Institute nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: CC0-1.0 To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <https://creativecommons.org/publicdomain/zero/1.0/>. . On Debian systems, the complete text of the CC0 Public Domain Dedication can be found in "/usr/share/common-licenses/CC0-1.0". License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
control file for libsimdutf26-dbgsym_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
Package: | libsimdutf26-dbgsym |
Source: | simdutf |
Version: | 7.4.0-1 |
Auto-Built-Package: | debug-symbols |
Architecture: | amd64 |
Maintainer: | Mo Zhou <lumin@debian.org> |
Installed-Size: | 1673 |
Depends: | libsimdutf26 (=7.4.0-1) |
Section: | debug |
Priority: | optional |
Description: | debug symbols for libsimdutf26 |
Build-Ids: | 008a453945812fdc63cefb8535555bb46435891a |
contents of libsimdutf26-dbgsym_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-10-13 11:59 ./ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/.build-id/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/lib/debug/.build-id/00/ -rw-r--r-- root/root 1702648 2025-10-13 11:59 ./usr/lib/debug/.build-id/00/8a453945812fdc63cefb8535555bb46435891a.debug drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/ drwxr-xr-x root/root 0 2025-10-13 11:59 ./usr/share/doc/ lrwxrwxrwx root/root 0 2025-10-13 11:59 ./usr/share/doc/libsimdutf26-dbgsym -> libsimdutf26 |
copyright of libsimdutf26-dbgsym_7.4.0-1_amd64.deb (click to toggle) | |
---|---|
WARNING: No copyright found, please check package manually. |
Timestamp: 13.10.2025 / 13:02:49 (UTC)