Debian NEW package overview for simdutf
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
lintian 2.116.3+deb12u1 check for simdutf_7.4.0-1.dsc (click to toggle)
README.source for simdutf_7.4.0-1.dsc (click to toggle)
No README.source in this package
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.
lintian 2.116.3+deb12u1 check for libsimdutf-dev_7.4.0-1_amd64.deb (click to toggle)
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
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.
lintian 2.116.3+deb12u1 check for libsimdutf-tools_7.4.0-1_amd64.deb (click to toggle)
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
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
lintian 2.116.3+deb12u1 check for libsimdutf-tools-dbgsym_7.4.0-1_amd64.deb (click to toggle)
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
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.
lintian 2.116.3+deb12u1 check for libsimdutf26_7.4.0-1_amd64.deb (click to toggle)
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
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
lintian 2.116.3+deb12u1 check for libsimdutf26-dbgsym_7.4.0-1_amd64.deb (click to toggle)
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

Timestamp: 13.10.2025 / 13:02:49 (UTC)