vlang_0.4.10+git20250521.7c50fb1+ds-1_amd64.changes (click to toggle) | |
---|---|
Format: | 1.8 |
Date: | Wed, 21 May 2025 18:22:36 +0100 |
Source: | vlang |
Binary: | vlang vlang-dbgsym vlang-doc |
Architecture: | source amd64 all |
Version: | 0.4.10+git20250521.7c50fb1+ds-1 |
Distribution: | unstable |
Urgency: | medium |
Maintainer: | Ahmad Khalifa <ahmad@khalifa.ws> |
Changed-By: | Ahmad Khalifa <ahmad@khalifa.ws> |
Description: | vlang - V programming language vlang-doc - V programming language (docs and examples) |
Closes: | 1081840 |
Changes: | vlang (0.4.10+git20250521.7c50fb1+ds-1) unstable; urgency=medium * Initial release. (Closes: #1081840) |
Files: | fbdfde2c5163eb5a950efc5bfc280300 2868 devel optional vlang_0.4.10+git20250521.7c50fb1+ds-1.dsc dc766b64054fe2f547a4b29c31b49f49 687496 devel optional vlang_0.4.10+git20250521.7c50fb1+ds.orig-vc-bootstrap.tar.xz a2e6f08b3cec5757c28fc6f142923d6a 65268 devel optional vlang_0.4.10+git20250521.7c50fb1+ds.orig-vmarkdown.tar.xz 3cee3dca9a4af112c0554e884e455632 5804912 devel optional vlang_0.4.10+git20250521.7c50fb1+ds.orig.tar.xz 70a9131a36c10b8507ed6ab4289e0728 19236 devel optional vlang_0.4.10+git20250521.7c50fb1+ds-1.debian.tar.xz 92a8eaf4f6f9d5ba3543fcbfa07daebc 59635304 debug optional vlang-dbgsym_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb acf64c7eb1f4b4789b0fecd49d58367f 1828236 doc optional vlang-doc_0.4.10+git20250521.7c50fb1+ds-1_all.deb e01cd47187d90ca600a5bbae4295ebe3 7635 devel optional vlang_0.4.10+git20250521.7c50fb1+ds-1_amd64.buildinfo 9a43b1dc78247e876eb62ba1b218747a 12911824 devel optional vlang_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb |
vlang_0.4.10+git20250521.7c50fb1+ds-1.dsc (click to toggle) | |
---|---|
Format: | 3.0 (quilt) |
Source: | vlang |
Binary: | vlang, vlang-doc |
Architecture: | linux-amd64 all |
Version: | 0.4.10+git20250521.7c50fb1+ds-1 |
Maintainer: | Ahmad Khalifa <ahmad@khalifa.ws> |
Homepage: | https://vlang.io/ |
Standards-Version: | 4.7.2 |
Vcs-Browser: | https://salsa.debian.org/ahmadkhalifa/vlang |
Vcs-Git: | https://salsa.debian.org/ahmadkhalifa/vlang.git |
Testsuite: | autopkgtest |
Testsuite-Triggers: | libmbedtls-dev, libzstd-dev |
Build-Depends: | debhelper-compat (=13), libbacktrace-dev, libgc-dev, libmbedtls-dev, libx11-dev, libzstd-dev, scdoc |
Package-List: | vlang deb devel optional arch=linux-amd64 vlang-doc deb doc optional arch=all profile=!nodoc |
Files: | dc766b64054fe2f547a4b29c31b49f49 687496 vlang_0.4.10+git20250521.7c50fb1+ds.orig-vc-bootstrap.tar.xz a2e6f08b3cec5757c28fc6f142923d6a 65268 vlang_0.4.10+git20250521.7c50fb1+ds.orig-vmarkdown.tar.xz 3cee3dca9a4af112c0554e884e455632 5804912 vlang_0.4.10+git20250521.7c50fb1+ds.orig.tar.xz 70a9131a36c10b8507ed6ab4289e0728 19236 vlang_0.4.10+git20250521.7c50fb1+ds-1.debian.tar.xz |
README.source for vlang_0.4.10+git20250521.7c50fb1+ds-1.dsc (click to toggle) | |
---|---|
vlang for Debian ---------------- vlang makes a lot of git and shell calls in several places when running the compiler and tools. It also assumes it's running out of a git repo and that all files are stored next to the v executable. For that reason, building and packaging has to override several env vars and patch several files. Most key ones for packaging have been patched, but some still remain. The build system is not usable from dh as it doesn't follow the usual targets and variables (e.g. install does nothing and clean is useless). d/rules disables it and implements reasonable build/install/clean targets. - Recreating the source package requires 3 repos: 1. vlang/v: main source written in V 2. vlang/vc: source compiled to C, ready to be used as the bootstrap compiler 3. vlang/markdown: md module used when compiling vdoc command All are maintained on github by upstream and usually v and vc are synchronised every commit, so HEAD is the same. If you run uscan, you get the latest version always. Manually download the tarballs for the commit matching the hash in the changelog version to #1, then manually find the bootstrap equivalent #2. - Bootstrapping and building. Upstream distributes their V source compiled to intermediate C source for the bootsrap stage. The build target builds: - stage1 (./v1): from vc/v.c - stage2 (./v2): from cmd/v & vlib/ - stage3 (./v) : from cmd/v & vlib/ - this is the final compiler This also builds all the v commands After build, you can also run a quick bootstrap reproducibility check. It is not part of the build as it won't be 100% equivalent: `make -f debian/rules check_repro_vc` - Embedded thirdparty sources Several libraries have been replaced with a dependency/linkage with their debian shared libraries through patches. However, some remain in the thirdparty/ dir due to the changes that upstream made to their API - e.g. exposing static variables through a new function for the V API (not accessible from the shared lib). Some are not in debian, but are public-domain or compatible license. - Binary package Depends field Including libraries required for common compiler use and V builtin modules. As examples: - libgc is core to the language's garbage collector and can be switched on/off using the v command line when compiling any V code. Deserves to be included in every installation. - libx11-dev, not required unless you are compiling graphics applications, at which point the compiler complains and you can install it. Parked in the suggests field instead. (however, it's Build-Depends for tests) - Modules v will look for modules in $HOME/.vmodules and as such, the modules cannot be easily packaged and distributed. No modules are packaged with this source package or any other, but users can use `v install` safely. - Arch support: 32-bit and arm64 - 32-bit: i386 too many failing tests to support at the moment. armhf too slow. - arm64: too many segfaults with gcc compiling v2/v. too many test failures using clang. Both need lots more testing and potential upstream bugs to determine how to build it consistently for all archs, either with gcc or clang. Upstream uses embedded tcc compiler a lot, but also have gcc/clang on their CI. -- Ahmad Khalifa <ahmad@khalifa.ws> Wed, 21 May 2025 18:25:43 +0100 |
control file for vlang_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb (click to toggle) | |
---|---|
Package: | vlang |
Version: | 0.4.10+git20250521.7c50fb1+ds-1 |
Architecture: | amd64 |
Maintainer: | Ahmad Khalifa <ahmad@khalifa.ws> |
Installed-Size: | 65179 |
Depends: | gcc, libc6-dev, libgc-dev, node-normalize.css, libc6 (>=2.38), libgc1 (>=1:7.2d), libmbedcrypto16 (>=3.6.0), libmbedtls21 (>=3.6.0), libmbedx509-7 (>=3.6.0), libx11-6 |
Suggests: | libbacktrace-dev, libmbedtls-dev, libx11-dev, libzstd-dev, vlang-doc |
Section: | devel |
Priority: | optional |
Homepage: | https://vlang.io/ |
Description: | V programming language vlang is statically typed, compiled programming language similar to Go in its design with closer interoperability to C libraries. . V features support for several backend compilers (gcc, tinycc) with more (native, golang, wasm) in progress, support for cross compiling to other targets, garbage-collected (through libgc) or manual memory management, and generics. . V can also be used for scripting through its .vsh file handling and also features a REPL interactive shell. . This package provides the v compiler, tools and vlib files required for most packages. |
contents of vlang_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-05-21 17:22 ./ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/bin/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/ -rw-r--r-- root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/.disable_autorecompilation -rwxr-xr-x root/root 202984 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/amalgamate drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/builders/ -rwxr-xr-x root/root 4148296 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/builders/c_builder -rwxr-xr-x root/root 2796456 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/builders/golang_builder -rwxr-xr-x root/root 2796280 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/builders/interpret_builder -rwxr-xr-x root/root 2936568 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/builders/js_builder -rwxr-xr-x root/root 3227800 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/builders/native_builder -rwxr-xr-x root/root 3054328 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/builders/wasm_builder -rwxr-xr-x root/root 170184 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/changelog_helper -rwxr-xr-x root/root 4140104 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/check_os_api_parity -rwxr-xr-x root/root 31032 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/detect_tcc -rwxr-xr-x root/root 149720 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/fast_job -rwxr-xr-x root/root 1514312 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/fmt_speed -rwxr-xr-x root/root 145624 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/map_clear -rwxr-xr-x root/root 154120 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/map_fuzz drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/scripting/ -rw-r--r-- root/root 4653 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/scripting/scripting.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/testing/ -rw-r--r-- root/root 29990 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/testing/common.v -rw-r--r-- root/root 3596 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/testing/output.v -rw-r--r-- root/root 1650 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/testing/output_dump.v -rw-r--r-- root/root 4819 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/testing/output_normal.v -rw-r--r-- root/root 1647 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/testing/output_teamcity.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/vgit/ -rw-r--r-- root/root 14211 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/modules/vgit/vgit.v -rwxr-xr-x root/root 219384 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/oldv -rwxr-xr-x root/root 1231464 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/parser_speed -rwxr-xr-x root/root 223480 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/performance_compare -rwxr-xr-x root/root 178424 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/regress -rwxr-xr-x root/root 137416 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/report_v_module_folders_without_tests -rwxr-xr-x root/root 387752 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/scanner_speed -rwxr-xr-x root/root 162008 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/show_ancient_deprecations -rwxr-xr-x root/root 174424 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/test_if_v_test_system_works -rwxr-xr-x root/root 145624 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/test_os_process -rwxr-xr-x root/root 182872 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/translate drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vast/ -rwxr-xr-x root/root 2677496 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vast/vast -rwxr-xr-x root/root 166120 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vbin2v -rwxr-xr-x root/root 194776 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vbug -rwxr-xr-x root/root 297944 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vbuild-examples -rwxr-xr-x root/root 322520 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vbuild-tools -rwxr-xr-x root/root 211928 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vbuild-vbinaries -rwxr-xr-x root/root 227608 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vbump -rwxr-xr-x root/root 244072 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vcheck-md -rwxr-xr-x root/root 166088 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vcomplete -rwxr-xr-x root/root 207128 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vcompress drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vcover/ -rwxr-xr-x root/root 290088 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vcover/vcover drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vcreate/ -rwxr-xr-x root/root 239912 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vcreate/vcreate -rwxr-xr-x root/root 170232 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdiff drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/ -rw-r--r-- root/root 63 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/.prettierrc -rw-r--r-- root/root 175 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/arrow.svg -rw-r--r-- root/root 133 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/dark-mode.js -rw-r--r-- root/root 642 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/dark.svg -rw-r--r-- root/root 17971 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/doc.css -rw-r--r-- root/root 10895 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/doc.js drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/ -rw-r--r-- root/root 6083 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/android-chrome-192x192.png -rw-r--r-- root/root 18209 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/android-chrome-512x512.png -rw-r--r-- root/root 5707 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/apple-touch-icon.png -rw-r--r-- root/root 246 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/browserconfig.xml -rw-r--r-- root/root 853 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/favicon-16x16.png -rw-r--r-- root/root 1305 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/favicon-32x32.png -rw-r--r-- root/root 15086 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/favicon.ico -rw-r--r-- root/root 4512 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/mstile-144x144.png -rw-r--r-- root/root 4360 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/mstile-150x150.png -rw-r--r-- root/root 4927 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/mstile-310x150.png -rw-r--r-- root/root 10195 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/mstile-310x310.png -rw-r--r-- root/root 3093 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/mstile-70x70.png -rw-r--r-- root/root 2398 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/safari-pinned-tab.svg -rw-r--r-- root/root 327 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/favicons/site.webmanifest -rw-r--r-- root/root 1977 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/index.html -rw-r--r-- root/root 499 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/light.svg -rw-r--r-- root/root 350 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/link.svg -rw-r--r-- root/root 201 2025-05-21 08:37 ./usr/lib/vlang/cmd/tools/vdoc/theme/menu.svg -rwxr-xr-x root/root 3116376 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/vdoc -rwxr-xr-x root/root 182488 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoctor -rwxr-xr-x root/root 302920 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdownload -rwxr-xr-x root/root 1489816 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vfmt -rwxr-xr-x root/root 526760 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vgret -rwxr-xr-x root/root 348360 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vls -rwxr-xr-x root/root 174312 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vmissdoc drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vpm/ -rwxr-xr-x root/root 384680 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vpm/vpm -rwxr-xr-x root/root 298184 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vreduce -rwxr-xr-x root/root 207096 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vrepeat -rwxr-xr-x root/root 244056 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vrepl -rwxr-xr-x root/root 166136 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vretry -rwxr-xr-x root/root 404168 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vscan -rwxr-xr-x root/root 108744 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vself -rwxr-xr-x root/root 108744 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vsetup-freetype -rwxr-xr-x root/root 286056 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vshader -rwxr-xr-x root/root 265608 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vshare -rwxr-xr-x root/root 224424 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vshould-compile-all drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vsymlink/ -rwxr-xr-x root/root 133320 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vsymlink/vsymlink -rwxr-xr-x root/root 306136 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtest -rwxr-xr-x root/root 194776 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtest-all -rwxr-xr-x root/root 314328 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtest-cleancode -rwxr-xr-x root/root 310232 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtest-fmt -rwxr-xr-x root/root 1264264 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtest-parser -rwxr-xr-x root/root 318456 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtest-self -rwxr-xr-x root/root 157944 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtime -rwxr-xr-x root/root 195192 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtimeout -rwxr-xr-x root/root 112840 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vtracev -rwxr-xr-x root/root 108744 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vup drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vvet/ -rwxr-xr-x root/root 1272456 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vvet/vvet -rwxr-xr-x root/root 219768 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vwatch drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vwhere/ -rwxr-xr-x root/root 223448 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vwhere/vwhere -rwxr-xr-x root/root 149704 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vwipe-cache drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/android/ -rw-r--r-- root/root 892 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/android/android.h drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/cJSON/ -rw-r--r-- root/root 78439 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/cJSON/cJSON.c -rw-r--r-- root/root 16239 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/cJSON/cJSON.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/fontstash/ -rw-r--r-- root/root 48077 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/fontstash/fontstash.h -rw-r--r-- root/root 199054 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/fontstash/stb_truetype.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/ios/ -rw-r--r-- root/root 254 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/ios/ios.m drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/mssql/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/mssql/include/ -rw-r--r-- root/root 521 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/mssql/include/mssql.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/photon/ -rw-r--r-- root/root 2231 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/photon/photonwrapper.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picoev/ -rw-r--r-- root/root 273 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picoev/picoev.c drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/picoev/src/ -rw-r--r-- root/root 13036 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picoev/src/picoev.h -rw-r--r-- root/root 5023 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picoev/src/picoev_epoll.c -rw-r--r-- root/root 6362 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picoev/src/picoev_kqueue.c -rw-r--r-- root/root 4639 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picoev/src/picoev_select.c -rw-r--r-- root/root 326 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picoev/src/picoev_w32.h drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/picohttpparser/ -rw-r--r-- root/root 737 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picohttpparser/picohttpparser.c -rw-r--r-- root/root 3265 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picohttpparser/picohttpparser.h drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/picohttpparser/src/ -rw-r--r-- root/root 27365 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picohttpparser/src/picohttpparser.c -rw-r--r-- root/root 3537 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/picohttpparser/src/picohttpparser.h drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/sokol/ -rw-r--r-- root/root 479037 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/sokol_app.h -rw-r--r-- root/root 613 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/sokol_app2.h -rw-r--r-- root/root 104593 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/sokol_audio.h -rw-r--r-- root/root 870915 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/sokol_gfx.h -rw-r--r-- root/root 341 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/sokol_v.post.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/util/ -rw-r--r-- root/root 119904 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/util/sokol_fontstash.h -rw-r--r-- root/root 209759 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/sokol/util/sokol_gl.h drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/stb_image/ -rw-r--r-- root/root 282947 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stb_image/stb_image.h -rw-r--r-- root/root 451157 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stb_image/stb_image_resize2.h -rw-r--r-- root/root 71292 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stb_image/stb_image_write.h -rw-r--r-- root/root 158 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stb_image/stb_v_header.h -rw-r--r-- root/root 1115 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stb_image/stbi.c drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/nix/ -rw-r--r-- root/root 33715 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/nix/atomic.h -rw-r--r-- root/root 20605 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/nix/atomic_cpp.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/nix/cpp/ -rw-r--r-- root/root 2957 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/nix/cpp/gen.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/win/ -rw-r--r-- root/root 11163 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/stdatomic/win/atomic.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/vschannel/ -rw-r--r-- root/root 31365 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/vschannel/vschannel.c -rw-r--r-- root/root 1461 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/vschannel/vschannel.h drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/walloc/ -rw-r--r-- root/root 17517 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/walloc/walloc.c drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/thirdparty/zip/ -rw-r--r-- root/root 396971 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/zip/miniz.h -rw-r--r-- root/root 56340 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/zip/zip.c -rw-r--r-- root/root 19697 2025-05-21 08:37 ./usr/lib/vlang/thirdparty/zip/zip.h -rwxr-xr-x root/root 4162584 2025-05-21 17:22 ./usr/lib/vlang/v -rw-r--r-- root/root 159 2025-05-21 08:37 ./usr/lib/vlang/v.mod drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/ -rw-r--r-- root/root 109 2025-05-21 08:37 ./usr/lib/vlang/vlib/.vdocignore drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/arrays/ -rw-r--r-- root/root 20817 2025-05-21 08:37 ./usr/lib/vlang/vlib/arrays/arrays.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/arrays/diff/ -rw-r--r-- root/root 7106 2025-05-21 08:37 ./usr/lib/vlang/vlib/arrays/diff/diff.v -rw-r--r-- root/root 983 2025-05-21 08:37 ./usr/lib/vlang/vlib/arrays/index_of.v -rw-r--r-- root/root 959 2025-05-21 08:37 ./usr/lib/vlang/vlib/arrays/map_of.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/arrays/parallel/ -rw-r--r-- root/root 2962 2025-05-21 08:37 ./usr/lib/vlang/vlib/arrays/parallel/parallel.v -rw-r--r-- root/root 4842 2025-05-21 08:37 ./usr/lib/vlang/vlib/arrays/uniq.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/benchmark/ -rw-r--r-- root/root 8768 2025-05-21 08:37 ./usr/lib/vlang/vlib/benchmark/benchmark.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/bitfield/ -rw-r--r-- root/root 18011 2025-05-21 08:37 ./usr/lib/vlang/vlib/bitfield/bitfield.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/build/ -rw-r--r-- root/root 4130 2025-05-21 08:37 ./usr/lib/vlang/vlib/build/build.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/builtin/ -rw-r--r-- root/root 33163 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/array.v -rw-r--r-- root/root 10101 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/array_d_gcboehm_opt.v -rw-r--r-- root/root 806 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/array_notd_gcboehm_opt.v -rw-r--r-- root/root 935 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/backtraces.c.v -rw-r--r-- root/root 3536 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/backtraces_nix.c.v -rw-r--r-- root/root 5582 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/backtraces_windows.c.v -rw-r--r-- root/root 23499 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin.c.v -rw-r--r-- root/root 4529 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin.v -rw-r--r-- root/root 66 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_android_outside_termux.c.v -rw-r--r-- root/root 410 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_backtraces_d_musl.c.v -rw-r--r-- root/root 181 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_backtraces_nix.c.v -rw-r--r-- root/root 6682 2025-05-21 17:22 ./usr/lib/vlang/vlib/builtin/builtin_d_gcboehm.c.v -rw-r--r-- root/root 2858 2025-05-21 17:22 ./usr/lib/vlang/vlib/builtin/builtin_d_use_libbacktrace.c.v -rw-r--r-- root/root 131 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_ios.c.v -rw-r--r-- root/root 509 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_nix.c.v -rw-r--r-- root/root 2200 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_notd_gcboehm.c.v -rw-r--r-- root/root 122 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_notd_use_libbacktrace.c.v -rw-r--r-- root/root 415 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_test.c.v -rw-r--r-- root/root 4889 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/builtin_windows.c.v -rw-r--r-- root/root 12183 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/cfns.c.v -rw-r--r-- root/root 3989 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/cfns_wrapper.c.v -rw-r--r-- root/root 1122 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/chan.v -rw-r--r-- root/root 1129 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/character_inout.c.v -rw-r--r-- root/root 5343 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/float.c.v -rw-r--r-- root/root 203 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/float_x64.v -rw-r--r-- root/root 13803 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/int.v -rw-r--r-- root/root 170 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/int_d_new_int.v -rw-r--r-- root/root 15 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/int_notd_new_int.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/ -rw-r--r-- root/root 13777 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/array.js.v -rw-r--r-- root/root 28136 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/array_test.js.v -rw-r--r-- root/root 2328 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/builtin.js.v -rw-r--r-- root/root 3241 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/builtin.v -rw-r--r-- root/root 2360 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/byte.js.v -rw-r--r-- root/root 175 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/float.js.v -rw-r--r-- root/root 3547 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/int.js.v -rw-r--r-- root/root 5434 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/int_test.js.v -rw-r--r-- root/root 4266 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/jsfns.js.v -rw-r--r-- root/root 1714 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/jsfns_browser.js.v -rw-r--r-- root/root 779 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/jsfns_node.js.v -rw-r--r-- root/root 1647 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/map.js.v -rw-r--r-- root/root 14870 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/map_test.js.v -rw-r--r-- root/root 2469 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/promise.js.v -rw-r--r-- root/root 468 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/rune.js.v -rw-r--r-- root/root 23640 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/string.js.v -rw-r--r-- root/root 20298 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/string_test.js.v -rw-r--r-- root/root 287 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/js/utf8.js.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/ -rw-r--r-- root/root 3232 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/libc_impl.v -rw-r--r-- root/root 10353 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/linux_syscalls.v -rw-r--r-- root/root 2445 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/memory_managment.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/builtin/linux_bare/old/ -rw-r--r-- root/root 1347 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/old/array_bare.v -rw-r--r-- root/root 1022 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/old/builtin_bare.v -rw-r--r-- root/root 31027 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/old/linuxsys_bare.v -rw-r--r-- root/root 1149 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/old/mm_bare.v -rw-r--r-- root/root 2233 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/linux_bare/old/string_bare.v -rw-r--r-- root/root 2027 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/map.c.v -rw-r--r-- root/root 22524 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/map.v -rw-r--r-- root/root 4971 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/map_d_gcboehm_opt.v -rw-r--r-- root/root 166 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/option.c.v -rw-r--r-- root/root 1597 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/option.v -rw-r--r-- root/root 5829 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/prealloc.c.v -rw-r--r-- root/root 2417 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/result.v -rw-r--r-- root/root 3722 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/rune.v -rw-r--r-- root/root 8797 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/rune_map.v -rw-r--r-- root/root 10898 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/sorted_map.v -rw-r--r-- root/root 74845 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/string.v -rw-r--r-- root/root 2759 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/string_charptr_byteptr_helpers.v -rw-r--r-- root/root 18282 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/string_interpolation.v -rw-r--r-- root/root 3808 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/utf8.c.v -rw-r--r-- root/root 5515 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/utf8.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/ -rw-r--r-- root/root 786 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/alloc.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/browser/ -rw-r--r-- root/root 338 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/browser/builtin_notd_no_imports.v -rw-r--r-- root/root 2422 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/builtin.v -rw-r--r-- root/root 61 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/string.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/wasi/ -rw-r--r-- root/root 1092 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/wasi/builtin_notd_no_imports.v -rw-r--r-- root/root 5550 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/wasi/int_notd_no_imports.v -rw-r--r-- root/root 369 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/wasi/string_notd_no_imports.v -rw-r--r-- root/root 317 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm/wasi/wasi_notd_no_imports.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm_bare/ -rw-r--r-- root/root 3008 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm_bare/libc_impl.c.v -rw-r--r-- root/root 174 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wasm_bare/memory_management.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/builtin/wchar/ -rw-r--r-- root/root 3910 2025-05-21 08:37 ./usr/lib/vlang/vlib/builtin/wchar/wchar.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/cli/ -rw-r--r-- root/root 11224 2025-05-21 08:37 ./usr/lib/vlang/vlib/cli/command.v -rw-r--r-- root/root 7970 2025-05-21 08:37 ./usr/lib/vlang/vlib/cli/flag.v -rw-r--r-- root/root 4499 2025-05-21 08:37 ./usr/lib/vlang/vlib/cli/help.v -rw-r--r-- root/root 3732 2025-05-21 08:37 ./usr/lib/vlang/vlib/cli/man.v -rw-r--r-- root/root 946 2025-05-21 08:37 ./usr/lib/vlang/vlib/cli/version.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/clipboard/ -rw-r--r-- root/root 971 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/clipboard.v -rw-r--r-- root/root 491 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/clipboard_android.c.v -rw-r--r-- root/root 2198 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/clipboard_darwin.c.v -rw-r--r-- root/root 895 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/clipboard_darwin.m -rw-r--r-- root/root 483 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/clipboard_default.c.v -rw-r--r-- root/root 491 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/clipboard_solaris.c.v -rw-r--r-- root/root 5399 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/clipboard_windows.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/dummy/ -rw-r--r-- root/root 1847 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/dummy/dummy_clipboard.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/x11/ -rw-r--r-- root/root 13634 2025-05-21 08:37 ./usr/lib/vlang/vlib/clipboard/x11/clipboard.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/ -rw-r--r-- root/root 1682 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/compress.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/deflate/ -rw-r--r-- root/root 475 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/deflate/deflate.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/ -rw-r--r-- root/root 7779 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/gzip/gzip.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/ -rw-r--r-- root/root 213 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/known.gz -rw-r--r-- root/root 232 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/pwgen_13_20_1.gz -rw-r--r-- root/root 228 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/pwgen_13_20_2.gz -rw-r--r-- root/root 227 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/pwgen_13_20_3.gz -rw-r--r-- root/root 29 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/rand1.gz -rw-r--r-- root/root 29 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/rand2.gz -rw-r--r-- root/root 29 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/rand3.gz -rw-r--r-- root/root 6225 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/readme_level_1.gz -rw-r--r-- root/root 5780 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/readme_level_5.gz -rw-r--r-- root/root 5761 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/readme_level_9.gz -rw-r--r-- root/root 5812 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/gzip/samples/readme_level_9_rsyncable.gz drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/szip/ -rw-r--r-- root/root 8621 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/szip/szip.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/zlib/ -rw-r--r-- root/root 561 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zlib/zlib.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/zstd/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/zstd/samples/ -rw-r--r-- root/root 545 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/known.zst -rw-r--r-- root/root 6094 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_1.zst -rw-r--r-- root/root 5767 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_10.zst -rw-r--r-- root/root 5747 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_11.zst -rw-r--r-- root/root 5712 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_12.zst -rw-r--r-- root/root 5689 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_13.zst -rw-r--r-- root/root 5686 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_14.zst -rw-r--r-- root/root 5680 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_15.zst -rw-r--r-- root/root 5678 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_16.zst -rw-r--r-- root/root 5672 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_17.zst -rw-r--r-- root/root 5672 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_18.zst -rw-r--r-- root/root 5672 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_19.zst -rw-r--r-- root/root 6057 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_2.zst -rw-r--r-- root/root 5967 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_3.zst -rw-r--r-- root/root 5822 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_4.zst -rw-r--r-- root/root 5786 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_5.zst -rw-r--r-- root/root 5765 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_6.zst -rw-r--r-- root/root 5768 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_7.zst -rw-r--r-- root/root 5771 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_8.zst -rw-r--r-- root/root 5766 2025-05-21 08:37 ./usr/lib/vlang/vlib/compress/zstd/samples/readme_level_9.zst -rw-r--r-- root/root 23989 2025-05-21 17:22 ./usr/lib/vlang/vlib/compress/zstd/zstd.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/context/ -rw-r--r-- root/root 4322 2025-05-21 08:37 ./usr/lib/vlang/vlib/context/cancel.v -rw-r--r-- root/root 3686 2025-05-21 08:37 ./usr/lib/vlang/vlib/context/context.v -rw-r--r-- root/root 3318 2025-05-21 08:37 ./usr/lib/vlang/vlib/context/deadline.v -rw-r--r-- root/root 1846 2025-05-21 08:37 ./usr/lib/vlang/vlib/context/empty.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/context/onecontext/ -rw-r--r-- root/root 3091 2025-05-21 08:37 ./usr/lib/vlang/vlib/context/onecontext/onecontext.v -rw-r--r-- root/root 1618 2025-05-21 08:37 ./usr/lib/vlang/vlib/context/value.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/coroutines/ -rw-r--r-- root/root 3405 2025-05-21 08:37 ./usr/lib/vlang/vlib/coroutines/coroutines.c.v -rw-r--r-- root/root 1146 2025-05-21 08:37 ./usr/lib/vlang/vlib/coroutines/sp_corrector.c drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/aes/ -rw-r--r-- root/root 2978 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/aes/aes.v -rw-r--r-- root/root 55 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/aes/aes_cbc.v -rw-r--r-- root/root 7284 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/aes/block_generic.v -rw-r--r-- root/root 30201 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/aes/const.v -rw-r--r-- root/root 512 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/aes/cypher_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/bcrypt/ -rw-r--r-- root/root 1662 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/bcrypt/base64.v -rw-r--r-- root/root 5367 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/bcrypt/bcrypt.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/blake2b/ -rw-r--r-- root/root 10700 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blake2b/blake2b.v -rw-r--r-- root/root 2239 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blake2b/blake2b_block_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/blake2s/ -rw-r--r-- root/root 10552 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blake2s/blake2s.v -rw-r--r-- root/root 2204 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blake2s/blake2s_block_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/blake3/ -rw-r--r-- root/root 9473 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blake3/blake3.v -rw-r--r-- root/root 2014 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blake3/blake3_block_generic.v -rw-r--r-- root/root 3811 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blake3/blake3_chunk.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/blowfish/ -rw-r--r-- root/root 4354 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blowfish/block.v -rw-r--r-- root/root 1423 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blowfish/blowfish.v -rw-r--r-- root/root 14683 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/blowfish/const.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/cipher/ -rw-r--r-- root/root 3831 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/cipher/cbc.v -rw-r--r-- root/root 2293 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/cipher/cfb.v -rw-r--r-- root/root 2307 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/cipher/cipher.v -rw-r--r-- root/root 2015 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/cipher/ctr.v -rw-r--r-- root/root 1632 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/cipher/ofb.v -rw-r--r-- root/root 1056 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/cipher/xor_generic.v -rw-r--r-- root/root 217 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/crypto.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/des/ -rw-r--r-- root/root 5567 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/des/block.v -rw-r--r-- root/root 9336 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/des/const.v -rw-r--r-- root/root 4919 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/des/des.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/ecdsa/ -rw-r--r-- root/root 6732 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ecdsa/ecdsa.c.v -rw-r--r-- root/root 18300 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ecdsa/ecdsa.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/ecdsa/example/ -rw-r--r-- root/root 492 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ecdsa/example/example1.v -rw-r--r-- root/root 7116 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ecdsa/util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/ed25519/ -rw-r--r-- root/root 5046 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/ed25519.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/examples/ -rw-r--r-- root/root 1095 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/examples/example.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/ed25519/internal/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/ -rw-r--r-- root/root 20 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/edwards25519.v -rw-r--r-- root/root 21063 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/element.v -rw-r--r-- root/root 10224 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/extra.v -rw-r--r-- root/root 12644 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/point.v -rw-r--r-- root/root 29241 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/scalar.v -rw-r--r-- root/root 6643 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/scalarmult.v -rw-r--r-- root/root 3687 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ed25519/internal/edwards25519/table.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/hmac/ -rw-r--r-- root/root 1348 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/hmac/hmac.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/internal/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/internal/subtle/ -rw-r--r-- root/root 1272 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/internal/subtle/aliasing.v -rw-r--r-- root/root 1521 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/internal/subtle/comparison.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/md5/ -rw-r--r-- root/root 4164 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/md5/md5.v -rw-r--r-- root/root 6624 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/md5/md5block_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/pbkdf2/ -rw-r--r-- root/root 1471 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/pbkdf2/pbkdf2.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/pem/ -rw-r--r-- root/root 3217 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/pem/decode.v -rw-r--r-- root/root 1661 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/pem/encode.v -rw-r--r-- root/root 1831 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/pem/pem.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/rand/ -rw-r--r-- root/root 780 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand.v -rw-r--r-- root/root 519 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand_darwin.c.v -rw-r--r-- root/root 360 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand_default.c.v -rw-r--r-- root/root 481 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand_freebsd.c.v -rw-r--r-- root/root 1126 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand_linux.c.v -rw-r--r-- root/root 481 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand_openbsd.c.v -rw-r--r-- root/root 1148 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand_solaris.c.v -rw-r--r-- root/root 734 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/rand_windows.c.v -rw-r--r-- root/root 2024 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rand/utils.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/rc4/ -rw-r--r-- root/root 2063 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/rc4/rc4.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/ripemd160/ -rw-r--r-- root/root 3005 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ripemd160/ripemd160.v -rw-r--r-- root/root 4321 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/ripemd160/ripemd160block.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/scrypt/ -rw-r--r-- root/root 7428 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/scrypt/scrypt.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/sha1/ -rw-r--r-- root/root 4008 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha1/sha1.v -rw-r--r-- root/root 2851 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha1/sha1block_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/sha256/ -rw-r--r-- root/root 5993 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha256/sha256.v -rw-r--r-- root/root 2881 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha256/sha256block_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/sha3/ -rw-r--r-- root/root 10843 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha3/sha3.v -rw-r--r-- root/root 9211 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha3/sha3_state_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/crypto/sha512/ -rw-r--r-- root/root 8835 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha512/sha512.v -rw-r--r-- root/root 4374 2025-05-21 08:37 ./usr/lib/vlang/vlib/crypto/sha512/sha512block_generic.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/datatypes/ -rw-r--r-- root/root 3725 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/bloom_filter.v -rw-r--r-- root/root 8905 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/bstree.v -rw-r--r-- root/root 9434 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/doubly_linked_list.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/datatypes/fsm/ -rw-r--r-- root/root 2981 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/fsm/fsm.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/fsm/tools/ -rw-r--r-- root/root 1537 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/fsm/tools/fsm_graph.v -rw-r--r-- root/root 2576 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/heap.v -rw-r--r-- root/root 5248 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/linked_list.v -rw-r--r-- root/root 3939 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/quadtree.v -rw-r--r-- root/root 1208 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/queue.v -rw-r--r-- root/root 3239 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/ringbuffer.v -rw-r--r-- root/root 2801 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/set.v -rw-r--r-- root/root 1001 2025-05-21 08:37 ./usr/lib/vlang/vlib/datatypes/stack.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/db/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/db/mssql/ -rw-r--r-- root/root 65 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mssql/_cdef_nix.c.v -rw-r--r-- root/root 416 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mssql/_cdef_windows.c.v -rw-r--r-- root/root 1817 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mssql/_cdefs.c.v -rw-r--r-- root/root 485 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mssql/config.v -rw-r--r-- root/root 4053 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mssql/mssql.c.v -rw-r--r-- root/root 173 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mssql/result.v -rw-r--r-- root/root 4208 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mssql/stmt_handle.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/db/mysql/ -rw-r--r-- root/root 7247 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/_cdefs.c.v -rw-r--r-- root/root 610 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/_cdefs_nix.c.v -rw-r--r-- root/root 263 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/_cdefs_windows.c.v -rw-r--r-- root/root 1006 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/consts.c.v -rw-r--r-- root/root 1752 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/enums.v -rw-r--r-- root/root 19425 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/mysql.c.v -rw-r--r-- root/root 10715 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/orm.c.v -rw-r--r-- root/root 958 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/pool.v -rw-r--r-- root/root 3901 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/result.c.v -rw-r--r-- root/root 10409 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/stmt.c.v -rw-r--r-- root/root 543 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/mysql/utils.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/db/pg/ -rw-r--r-- root/root 402 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/pg/compatibility.h -rw-r--r-- root/root 4469 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/pg/oid.v -rw-r--r-- root/root 6860 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/pg/orm.v -rw-r--r-- root/root 15288 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/pg/pg.c.v -rw-r--r-- root/root 951 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/pg/pool.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/db/sqlite/ -rw-r--r-- root/root 5199 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/sqlite/orm.v -rw-r--r-- root/root 1010 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/sqlite/pool.v -rw-r--r-- root/root 3536 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/sqlite/result_code.v -rw-r--r-- root/root 13680 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/sqlite/sqlite.c.v -rw-r--r-- root/root 2420 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/sqlite/stmt.c.v -rw-r--r-- root/root 5543 2025-05-21 08:37 ./usr/lib/vlang/vlib/db/sqlite/vfs_lowlevel.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/dl/ -rw-r--r-- root/root 1193 2025-05-21 08:37 ./usr/lib/vlang/vlib/dl/dl.v -rw-r--r-- root/root 1224 2025-05-21 08:37 ./usr/lib/vlang/vlib/dl/dl_nix.c.v -rw-r--r-- root/root 1375 2025-05-21 08:37 ./usr/lib/vlang/vlib/dl/dl_windows.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/dl/loader/ -rw-r--r-- root/root 4002 2025-05-21 08:37 ./usr/lib/vlang/vlib/dl/loader/loader.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/dlmalloc/ -rw-r--r-- root/root 36496 2025-05-21 08:37 ./usr/lib/vlang/vlib/dlmalloc/dlmalloc.v -rw-r--r-- root/root 2981 2025-05-21 08:37 ./usr/lib/vlang/vlib/dlmalloc/dlmalloc_sys_nix.c.v -rw-r--r-- root/root 1028 2025-05-21 08:37 ./usr/lib/vlang/vlib/dlmalloc/dlmalloc_sys_windows.c.v -rw-r--r-- root/root 1350 2025-05-21 08:37 ./usr/lib/vlang/vlib/dlmalloc/global.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/base32/ -rw-r--r-- root/root 11240 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/base32/base32.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/base58/ -rw-r--r-- root/root 1647 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/base58/alphabet.v -rw-r--r-- root/root 5154 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/base58/base58.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/base64/ -rw-r--r-- root/root 7763 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/base64/base64.c.v -rw-r--r-- root/root 2685 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/base64/base64.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/binary/ -rw-r--r-- root/root 6395 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/binary/big_endian.v -rw-r--r-- root/root 1851 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/binary/big_endian_fixed.v -rw-r--r-- root/root 6859 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/binary/little_endian.v -rw-r--r-- root/root 1868 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/binary/little_endian_fixed.v -rw-r--r-- root/root 10731 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/binary/serialize.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/csv/ -rw-r--r-- root/root 10798 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/csv/README_csv_reader.md -rw-r--r-- root/root 15826 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/csv/csv_reader_random_access.v -rw-r--r-- root/root 7636 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/csv/csv_reader_sequential.v -rw-r--r-- root/root 4668 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/csv/reader.v -rw-r--r-- root/root 1324 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/csv/to_struct_arr.v -rw-r--r-- root/root 428 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/csv/utils.v -rw-r--r-- root/root 1841 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/csv/writer.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/hex/ -rw-r--r-- root/root 1793 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/hex/hex.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/html/ -rw-r--r-- root/root 2708 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/html/escape.v -rw-r--r-- root/root 91940 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/html/named_references.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/iconv/ -rw-r--r-- root/root 5091 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/iconv/iconv.v -rw-r--r-- root/root 1977 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/iconv/iconv_nix.c.v -rw-r--r-- root/root 27869 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/iconv/iconv_windows.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/leb128/ -rw-r--r-- root/root 2692 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/leb128/leb128.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/txtar/ -rw-r--r-- root/root 2073 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/txtar/pack_unpack.v -rw-r--r-- root/root 2794 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/txtar/txtar.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/utf8/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/utf8/east_asian/ -rw-r--r-- root/root 38777 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/utf8/east_asian/east_asian_width.v -rw-r--r-- root/root 321 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/utf8/utf8.v -rw-r--r-- root/root 30509 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/utf8/utf8_tables.v -rw-r--r-- root/root 40445 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/utf8/utf8_util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/utf8/validate/ -rw-r--r-- root/root 2074 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/utf8/validate/validate_utf8.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/ -rw-r--r-- root/root 4801 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/encoding.v -rw-r--r-- root/root 1987 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/entity.v -rw-r--r-- root/root 15344 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/parser.v -rw-r--r-- root/root 2488 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/query.v -rw-r--r-- root/root 593 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/reader_util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/01_mdn_example/ -rw-r--r-- root/root 105 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/01_mdn_example/hello_world.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/02_note_message/ -rw-r--r-- root/root 126 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/02_note_message/note.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/03_cd_catalogue/ -rw-r--r-- root/root 779 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/03_cd_catalogue/cd_catalog.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/04_empty_file/ -rw-r--r-- root/root 23 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/04_empty_file/expected_error.txt drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/05_single_element/ -rw-r--r-- root/root 38 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/05_single_element/root.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/06_nested_elements/ -rw-r--r-- root/root 215 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/06_nested_elements/nested.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/07_mixed_contents/ -rw-r--r-- root/root 146 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/07_mixed_contents/mixed.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/08_comments/ -rw-r--r-- root/root 299 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/08_comments/comment.xml drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/09_malformed/ -rw-r--r-- root/root 54 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/09_malformed/expected_error.txt -rw-r--r-- root/root 39 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/09_malformed/malformed.xml drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/10_missing_tag/ -rw-r--r-- root/root 31 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/10_missing_tag/expected_error.txt -rw-r--r-- root/root 125 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/10_missing_tag/malformed.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/11_cdata_content/ -rw-r--r-- root/root 113 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/11_cdata_content/cdata.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/12_doctype_entity/ -rw-r--r-- root/root 196 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/12_doctype_entity/entity.xml -rw-r--r-- root/root 255 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/12_doctype_entity/entity_expected.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/13_doctype_element/ -rw-r--r-- root/root 339 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/13_doctype_element/element.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/14_attributes/ -rw-r--r-- root/root 235 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/14_attributes/attributes.xml drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/15_incomplete_entity_1/ -rw-r--r-- root/root 86 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/15_incomplete_entity_1/entity.xml -rw-r--r-- root/root 24 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/15_incomplete_entity_1/expected_error.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/16_incomplete_entity_2/ -rw-r--r-- root/root 106 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/16_incomplete_entity_2/entity.xml -rw-r--r-- root/root 25 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/16_incomplete_entity_2/expected_error.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/17_incomplete_element_1/ -rw-r--r-- root/root 87 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/17_incomplete_element_1/element.xml -rw-r--r-- root/root 25 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/17_incomplete_element_1/expected_error.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/18_incomplete_element_2/ -rw-r--r-- root/root 100 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/18_incomplete_element_2/element.xml -rw-r--r-- root/root 36 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/18_incomplete_element_2/expected_error.txt drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/19_single_letter_tag/ -rw-r--r-- root/root 266 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/19_single_letter_tag/shared.xml drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/encoding/xml/test/local/20_bom_file/ -rw-r--r-- root/root 983 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/test/local/20_bom_file/workbook.bin -rw-r--r-- root/root 1626 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/types.v -rw-r--r-- root/root 2693 2025-05-21 08:37 ./usr/lib/vlang/vlib/encoding/xml/validation.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/eventbus/ -rw-r--r-- root/root 4470 2025-05-21 08:37 ./usr/lib/vlang/vlib/eventbus/eventbus.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/flag/ -rw-r--r-- root/root 21986 2025-05-21 08:37 ./usr/lib/vlang/vlib/flag/flag.v -rw-r--r-- root/root 57320 2025-05-21 08:37 ./usr/lib/vlang/vlib/flag/flag_to.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/fontstash/ -rw-r--r-- root/root 596 2025-05-21 08:37 ./usr/lib/vlang/vlib/fontstash/a_d_use_freetype.v -rw-r--r-- root/root 7946 2025-05-21 08:37 ./usr/lib/vlang/vlib/fontstash/fontstash.c.v -rw-r--r-- root/root 626 2025-05-21 08:37 ./usr/lib/vlang/vlib/fontstash/fontstash_enums.v -rw-r--r-- root/root 1991 2025-05-21 08:37 ./usr/lib/vlang/vlib/fontstash/fontstash_funcs.c.v -rw-r--r-- root/root 1321 2025-05-21 08:37 ./usr/lib/vlang/vlib/fontstash/fontstash_structs.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/gg/ -rw-r--r-- root/root 2261 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/bezier.c.v -rw-r--r-- root/root 28973 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/draw.c.v -rw-r--r-- root/root 3226 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/enums.v -rw-r--r-- root/root 26782 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/gg.c.v -rw-r--r-- root/root 15705 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/gg.js.v -rw-r--r-- root/root 899 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/gg.v -rw-r--r-- root/root 618 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/gg_android_outside_termux.c.v -rw-r--r-- root/root 527 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/gg_darwin.c.v -rw-r--r-- root/root 5277 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/gg_darwin.m -rw-r--r-- root/root 884 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/gg_ui.c.v -rw-r--r-- root/root 12003 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/image.c.v -rw-r--r-- root/root 264 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/image.js.v -rw-r--r-- root/root 3539 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/image.v -rw-r--r-- root/root 48 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/import_gx.v -rw-r--r-- root/root 260 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/keyboard.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/gg/m4/ -rw-r--r-- root/root 2847 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/m4/graphic.v -rw-r--r-- root/root 15278 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/m4/matrix.v -rw-r--r-- root/root 5212 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/m4/vector.v -rw-r--r-- root/root 1281 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/recorder.c.v -rw-r--r-- root/root 72 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/recorder.js.v -rw-r--r-- root/root 167 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/recorder.v -rw-r--r-- root/root 8454 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/text_rendering.c.v -rw-r--r-- root/root 243 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/text_rendering.js.v -rw-r--r-- root/root 586 2025-05-21 08:37 ./usr/lib/vlang/vlib/gg/text_rendering.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/gx/ -rw-r--r-- root/root 5610 2025-05-21 08:37 ./usr/lib/vlang/vlib/gx/color.v -rw-r--r-- root/root 213 2025-05-21 08:37 ./usr/lib/vlang/vlib/gx/image.v -rw-r--r-- root/root 305 2025-05-21 08:37 ./usr/lib/vlang/vlib/gx/text.c.v -rw-r--r-- root/root 120 2025-05-21 08:37 ./usr/lib/vlang/vlib/gx/text.js.v -rw-r--r-- root/root 815 2025-05-21 08:37 ./usr/lib/vlang/vlib/gx/text.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/hash/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/hash/crc32/ -rw-r--r-- root/root 1492 2025-05-21 08:37 ./usr/lib/vlang/vlib/hash/crc32/crc32.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/hash/fnv1a/ -rw-r--r-- root/root 2637 2025-05-21 08:37 ./usr/lib/vlang/vlib/hash/fnv1a/fnv1a.v -rw-r--r-- root/root 491 2025-05-21 08:37 ./usr/lib/vlang/vlib/hash/hash.v -rw-r--r-- root/root 819 2025-05-21 08:37 ./usr/lib/vlang/vlib/hash/wyhash.c.v -rw-r--r-- root/root 100 2025-05-21 08:37 ./usr/lib/vlang/vlib/hash/wyhash.js.v -rw-r--r-- root/root 1782 2025-05-21 08:37 ./usr/lib/vlang/vlib/hash/wyhash.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/io/ -rw-r--r-- root/root 3945 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/buffered_reader.v -rw-r--r-- root/root 1854 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/buffered_writer.v -rw-r--r-- root/root 720 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/io.v -rw-r--r-- root/root 1126 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/multi_writer.v -rw-r--r-- root/root 1957 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/reader.v -rw-r--r-- root/root 921 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/readerwriter.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/io/string_reader/ -rw-r--r-- root/root 7907 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/string_reader/string_reader.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/io/util/ -rw-r--r-- root/root 2560 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/util/util.v -rw-r--r-- root/root 398 2025-05-21 08:37 ./usr/lib/vlang/vlib/io/writer.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/js/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/js/dom/ -rw-r--r-- root/root 29271 2025-05-21 08:37 ./usr/lib/vlang/vlib/js/dom/dom.js.v -rw-r--r-- root/root 30 2025-05-21 08:37 ./usr/lib/vlang/vlib/js/dom/dom.v -rw-r--r-- root/root 687 2025-05-21 08:37 ./usr/lib/vlang/vlib/js/js.js.v -rw-r--r-- root/root 58 2025-05-21 08:37 ./usr/lib/vlang/vlib/js/js.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/json/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/json/cjson/ -rw-r--r-- root/root 5531 2025-05-21 08:37 ./usr/lib/vlang/vlib/json/cjson/cjson_wrapper.c.v -rw-r--r-- root/root 5306 2025-05-21 08:37 ./usr/lib/vlang/vlib/json/json_primitives.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/log/ -rw-r--r-- root/root 2113 2025-05-21 08:37 ./usr/lib/vlang/vlib/log/common.v -rw-r--r-- root/root 1050 2025-05-21 08:37 ./usr/lib/vlang/vlib/log/default.c.v -rw-r--r-- root/root 2002 2025-05-21 08:37 ./usr/lib/vlang/vlib/log/default.v -rw-r--r-- root/root 10517 2025-05-21 08:37 ./usr/lib/vlang/vlib/log/log.v -rw-r--r-- root/root 292 2025-05-21 08:37 ./usr/lib/vlang/vlib/log/logger_interface.v -rw-r--r-- root/root 2416 2025-05-21 08:37 ./usr/lib/vlang/vlib/log/safe_log.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/maps/ -rw-r--r-- root/root 2120 2025-05-21 08:37 ./usr/lib/vlang/vlib/maps/maps.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/ -rw-r--r-- root/root 192 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/ROADMAP.md -rw-r--r-- root/root 130 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/abs.js.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/big/ -rw-r--r-- root/root 10036 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/array_ops.v -rw-r--r-- root/root 3033 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/big.js.v -rw-r--r-- root/root 340 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/big.v -rw-r--r-- root/root 3915 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/division_array_ops.v -rw-r--r-- root/root 7646 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/exponentiation.v -rw-r--r-- root/root 31220 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/integer.v -rw-r--r-- root/root 380 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/min_max.v -rw-r--r-- root/root 8358 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/big/special_array_ops.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/bits/ -rw-r--r-- root/root 16853 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/bits/bits.v -rw-r--r-- root/root 6487 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/bits/bits_tables.v -rw-r--r-- root/root 1651 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/bits/unsafe_bits.js.v -rw-r--r-- root/root 1264 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/bits/unsafe_bits.v -rw-r--r-- root/root 211 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/bits.js.v -rw-r--r-- root/root 2200 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/bits.v -rw-r--r-- root/root 133 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/cbrt.js.v -rw-r--r-- root/root 2014 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/cbrt.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/complex/ -rw-r--r-- root/root 10238 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/complex/complex.v -rw-r--r-- root/root 2431 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/const.v -rw-r--r-- root/root 1683 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/div.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/easing/ -rw-r--r-- root/root 7132 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/easing/easing.v -rw-r--r-- root/root 11621 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/erf.v -rw-r--r-- root/root 411 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/exp.c.v -rw-r--r-- root/root 193 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/exp.js.v -rw-r--r-- root/root 4759 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/exp.v -rw-r--r-- root/root 1503 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/factorial.v -rw-r--r-- root/root 13625 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/factorial_tables.v -rw-r--r-- root/root 695 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/floor.js.v -rw-r--r-- root/root 3474 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/floor.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/fractions/ -rw-r--r-- root/root 3717 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/fractions/approximations.v -rw-r--r-- root/root 6536 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/fractions/fraction.v -rw-r--r-- root/root 8053 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/gamma.v -rw-r--r-- root/root 3861 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/gamma_tables.v -rw-r--r-- root/root 526 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/hypot.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/internal/ -rw-r--r-- root/root 2652 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/internal/machine.v -rw-r--r-- root/root 2559 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/interpolation.v -rw-r--r-- root/root 2594 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/interpolation_bezier.v -rw-r--r-- root/root 1272 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/invhyp.v -rw-r--r-- root/root 639 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/invtrig.js.v -rw-r--r-- root/root 5153 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/invtrig.v -rw-r--r-- root/root 1690 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/limit.v -rw-r--r-- root/root 843 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/log.c.v -rw-r--r-- root/root 5465 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/log.v -rw-r--r-- root/root 303 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/math.c.v -rw-r--r-- root/root 6174 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/math.v -rw-r--r-- root/root 528 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/min_max_abs.v -rw-r--r-- root/root 675 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/modf.v -rw-r--r-- root/root 1788 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/modulo.v -rw-r--r-- root/root 1027 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/nextafter.v -rw-r--r-- root/root 1328 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/poly.v -rw-r--r-- root/root 338 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/pow.c.v -rw-r--r-- root/root 4160 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/pow.v -rw-r--r-- root/root 608 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/q_rsqrt.v -rw-r--r-- root/root 781 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/scalbn.v -rw-r--r-- root/root 500 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/sin.c.v -rw-r--r-- root/root 256 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/sin.js.v -rw-r--r-- root/root 4542 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/sin.v -rw-r--r-- root/root 286 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/sinh.js.v -rw-r--r-- root/root 1062 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/sinh.v -rw-r--r-- root/root 299 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/sqrt.c.v -rw-r--r-- root/root 1043 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/sqrt.v -rw-r--r-- root/root 238 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/square.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/stats/ -rw-r--r-- root/root 12683 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/stats/stats.v -rw-r--r-- root/root 128 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/tan.c.v -rw-r--r-- root/root 126 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/tan.js.v -rw-r--r-- root/root 2443 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/tan.v -rw-r--r-- root/root 141 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/tanh.js.v -rw-r--r-- root/root 808 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/tanh.v -rw-r--r-- root/root 1651 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/unsafe.js.v -rw-r--r-- root/root 2232 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/unsafe.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/unsigned/ -rw-r--r-- root/root 10795 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/unsigned/uint128.v -rw-r--r-- root/root 11314 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/unsigned/uint256.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/math/vec/ -rw-r--r-- root/root 10581 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/vec/vec2.v -rw-r--r-- root/root 10038 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/vec/vec3.v -rw-r--r-- root/root 10760 2025-05-21 08:37 ./usr/lib/vlang/vlib/math/vec/vec4.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/ -rw-r--r-- root/root 3917 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/aasocket.c.v -rw-r--r-- root/root 6542 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address.c.v -rw-r--r-- root/root 972 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_android.c.v -rw-r--r-- root/root 1172 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_darwin.c.v -rw-r--r-- root/root 479 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_default.c.v -rw-r--r-- root/root 1264 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_dragonfly.c.v -rw-r--r-- root/root 1221 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_freebsd.c.v -rw-r--r-- root/root 972 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_linux.c.v -rw-r--r-- root/root 1251 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_netbsd.c.v -rw-r--r-- root/root 1221 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_openbsd.c.v -rw-r--r-- root/root 2929 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_test.c.v -rw-r--r-- root/root 765 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/address_windows.c.v -rw-r--r-- root/root 590 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/afunix.h -rw-r--r-- root/root 5454 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/common.c.v -rw-r--r-- root/root 315 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/connection.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/conv/ -rw-r--r-- root/root 3737 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/conv/conv.v -rw-r--r-- root/root 153 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/dialer.v -rw-r--r-- root/root 2325 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/errors.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/ftp/ -rw-r--r-- root/root 5674 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/ftp/ftp.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/html/ -rw-r--r-- root/root 1746 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/html/data_structures.v -rw-r--r-- root/root 6401 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/html/dom.v -rw-r--r-- root/root 684 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/html/html.v -rw-r--r-- root/root 9918 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/html/parser.v -rw-r--r-- root/root 4541 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/html/tag.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/http/ -rw-r--r-- root/root 1937 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/backend.c.v -rw-r--r-- root/root 1258 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/backend_vschannel_windows.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/http/chunked/ -rw-r--r-- root/root 1442 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/chunked/dechunk.v -rw-r--r-- root/root 9585 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/cookie.v -rw-r--r-- root/root 1175 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/download.v -rw-r--r-- root/root 182 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/download_nix.c.v -rw-r--r-- root/root 3764 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/download_progress.v -rw-r--r-- root/root 872 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/download_silent_downloader.v -rw-r--r-- root/root 1886 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/download_terminal_downloader.v -rw-r--r-- root/root 221 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/download_windows.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/file/ -rw-r--r-- root/root 472 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/file/entity.v -rw-r--r-- root/root 3666 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/file/folder_index.v -rw-r--r-- root/root 4918 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/file/static_server.v -rw-r--r-- root/root 22642 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/header.v -rw-r--r-- root/root 8211 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/http.v -rw-r--r-- root/root 4214 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/http_proxy.v -rw-r--r-- root/root 3508 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/method.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/http/mime/ -rw-r--r-- root/root 849 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/mime/build.vsh -rw-r--r-- root/root 508741 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/mime/db.v -rw-r--r-- root/root 913 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/mime/mime.v -rw-r--r-- root/root 19853 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/request.v -rw-r--r-- root/root 4534 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/response.v -rw-r--r-- root/root 6733 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/server.v -rw-r--r-- root/root 9415 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/status.v -rw-r--r-- root/root 508 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/util.v -rw-r--r-- root/root 844 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/http/version.v -rw-r--r-- root/root 58 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/ipv6_v6only.h drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/mbedtls/ -rw-r--r-- root/root 10087 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/mbedtls/mbedtls.c.v -rw-r--r-- root/root 19410 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/mbedtls/ssl_connection.c.v -rw-r--r-- root/root 586 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/net_nix.c.v -rw-r--r-- root/root 12626 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/net_windows.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/openssl/ -rw-r--r-- root/root 5388 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/openssl/openssl.c.v -rw-r--r-- root/root 257 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/openssl/openssl_compiles_test.c.v -rw-r--r-- root/root 12190 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/openssl/ssl_connection.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/smtp/ -rw-r--r-- root/root 6861 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/smtp/smtp.v -rw-r--r-- root/root 643 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/socket.c.v -rw-r--r-- root/root 1496 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/socket_options.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/socks/ -rw-r--r-- root/root 4264 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/socks/socks5.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/ssl/ -rw-r--r-- root/root 498 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/ssl/dialer.v -rw-r--r-- root/root 352 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/ssl/ssl_d_use_openssl.v -rw-r--r-- root/root 352 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/ssl/ssl_notd_use_openssl.v -rw-r--r-- root/root 20345 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/tcp.c.v -rw-r--r-- root/root 2924 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/tcp_read_line.c.v -rw-r--r-- root/root 6860 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/udp.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/unix/ -rw-r--r-- root/root 244 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/unix/aasocket.c.v -rw-r--r-- root/root 3519 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/unix/common.c.v -rw-r--r-- root/root 14679 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/unix/stream.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/urllib/ -rw-r--r-- root/root 31677 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/urllib/urllib.v -rw-r--r-- root/root 2652 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/urllib/values.v -rw-r--r-- root/root 1341 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/net/websocket/ -rw-r--r-- root/root 6847 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/events.v -rw-r--r-- root/root 5317 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/handshake.v -rw-r--r-- root/root 2204 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/io.v -rw-r--r-- root/root 9086 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/message.v -rw-r--r-- root/root 473 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/uri.v -rw-r--r-- root/root 1234 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/utils.v -rw-r--r-- root/root 14717 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/websocket_client.v -rw-r--r-- root/root 136 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/websocket_nix.c.v -rw-r--r-- root/root 7486 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/websocket_server.v -rw-r--r-- root/root 174 2025-05-21 08:37 ./usr/lib/vlang/vlib/net/websocket/websocket_windows.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/orm/ -rw-r--r-- root/root 17241 2025-05-21 08:37 ./usr/lib/vlang/vlib/orm/orm.v -rw-r--r-- root/root 22267 2025-05-21 08:37 ./usr/lib/vlang/vlib/orm/orm_func.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/os/ -rw-r--r-- root/root 1113 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/args.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/os/asset/ -rw-r--r-- root/root 1391 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/asset/asset.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/bare/ -rw-r--r-- root/root 156 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/bare/bare_example_linux.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/os/cmdline/ -rw-r--r-- root/root 1692 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/cmdline/cmdline.v -rw-r--r-- root/root 10 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/const.v -rw-r--r-- root/root 768 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/const_nix.c.v -rw-r--r-- root/root 5047 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/const_windows.c.v -rw-r--r-- root/root 1013 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/debugger_darwin.c.v -rw-r--r-- root/root 265 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/debugger_default.c.v -rw-r--r-- root/root 992 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/debugger_freebsd.c.v -rw-r--r-- root/root 1067 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/debugger_linux.c.v -rw-r--r-- root/root 1171 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/debugger_openbsd.c.v -rw-r--r-- root/root 285 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/debugger_windows.c.v -rw-r--r-- root/root 2956 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/environment.c.v -rw-r--r-- root/root 1057 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/environment.js.v -rw-r--r-- root/root 2282 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/fd.c.v -rw-r--r-- root/root 21394 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/file.c.v -rw-r--r-- root/root 3509 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/file.js.v -rw-r--r-- root/root 2821 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/file_buffering.c.v -rw-r--r-- root/root 4643 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/file_le_be.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/os/filelock/ -rw-r--r-- root/root 512 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/filelock/lib.v -rw-r--r-- root/root 1063 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/filelock/lib_nix.c.v -rw-r--r-- root/root 942 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/filelock/lib_windows.c.v -rw-r--r-- root/root 7644 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/filepath.v -rw-r--r-- root/root 540 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/filepath_windows.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/font/ -rw-r--r-- root/root 3955 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/font/font.v -rw-r--r-- root/root 1729 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/inode.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/ -rw-r--r-- root/root 6279 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/backend_darwin.c.v -rw-r--r-- root/root 87 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/backend_default.c.v -rw-r--r-- root/root 5028 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/backend_linux.c.v -rw-r--r-- root/root 288 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/epoll.h -rw-r--r-- root/root 405 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/kqueue.h -rw-r--r-- root/root 527 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/notify.v -rw-r--r-- root/root 4824 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/notify/notify_test.c.v -rw-r--r-- root/root 161 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/open_and_read_from_file_test.js.v -rw-r--r-- root/root 893 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/open_uri_default.c.v -rw-r--r-- root/root 770 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/open_uri_windows.c.v -rw-r--r-- root/root 32077 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os.c.v -rw-r--r-- root/root 4250 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os.js.v -rw-r--r-- root/root 30859 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os.v -rw-r--r-- root/root 3809 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_android_outside_termux.c.v -rw-r--r-- root/root 363 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_darwin.c.v -rw-r--r-- root/root 3475 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_js.js.v -rw-r--r-- root/root 396 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_linux.c.v -rw-r--r-- root/root 12837 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_nix.c.v -rw-r--r-- root/root 3384 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_stat_default.c.v -rw-r--r-- root/root 3125 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_stat_windows.c.v -rw-r--r-- root/root 53 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_structs_dirent_default.c.v -rw-r--r-- root/root 164 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_structs_sigaction_default.c.v -rw-r--r-- root/root 372 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_structs_stat_default.c.v -rw-r--r-- root/root 375 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_structs_stat_linux.c.v -rw-r--r-- root/root 539 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_structs_stat_windows.c.v -rw-r--r-- root/root 173 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_structs_utsname_default.c.v -rw-r--r-- root/root 31651 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_test.c.v -rw-r--r-- root/root 19538 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/os_windows.c.v -rw-r--r-- root/root 685 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/password_nix.c.v -rw-r--r-- root/root 724 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/password_windows.c.v -rw-r--r-- root/root 8999 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/process.c.v -rw-r--r-- root/root 2729 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/process.js.v -rw-r--r-- root/root 3107 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/process.v -rw-r--r-- root/root 3962 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/process_nix.c.v -rw-r--r-- root/root 8930 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/process_windows.c.v -rw-r--r-- root/root 1421 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/signal.c.v -rw-r--r-- root/root 2137 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/signal.js.v -rw-r--r-- root/root 1494 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/signal.v -rw-r--r-- root/root 853 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/signal_darwin.c.v -rw-r--r-- root/root 685 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/signal_default.c.v -rw-r--r-- root/root 967 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/signal_linux.c.v -rw-r--r-- root/root 618 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/signal_windows.c.v -rw-r--r-- root/root 498 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/sleeping.c.v -rw-r--r-- root/root 292 2025-05-21 08:37 ./usr/lib/vlang/vlib/os/sleeping.js.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/picoev/ -rw-r--r-- root/root 252 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/constants_default.c.v -rw-r--r-- root/root 638 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/constants_windows.c.v -rw-r--r-- root/root 145 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/logging.v -rw-r--r-- root/root 2180 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/loop_default.c.v -rw-r--r-- root/root 4801 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/loop_freebsd.c.v -rw-r--r-- root/root 3080 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/loop_linux.c.v -rw-r--r-- root/root 4801 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/loop_macos.c.v -rw-r--r-- root/root 3080 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/loop_termux.c.v -rw-r--r-- root/root 10014 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/picoev.v -rw-r--r-- root/root 3490 2025-05-21 08:37 ./usr/lib/vlang/vlib/picoev/socket_util.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/picohttpparser/ -rw-r--r-- root/root 2415 2025-05-21 08:37 ./usr/lib/vlang/vlib/picohttpparser/misc.v -rw-r--r-- root/root 10616 2025-05-21 08:37 ./usr/lib/vlang/vlib/picohttpparser/picohttpparser.v -rw-r--r-- root/root 2151 2025-05-21 08:37 ./usr/lib/vlang/vlib/picohttpparser/request.v -rw-r--r-- root/root 2452 2025-05-21 08:37 ./usr/lib/vlang/vlib/picohttpparser/response.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/buffer/ -rw-r--r-- root/root 248 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/buffer/buffer.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/config/ -rw-r--r-- root/root 1691 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/config/config.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/cuid2/ -rw-r--r-- root/root 4574 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/cuid2/cuid2.v -rw-r--r-- root/root 3120 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/mini_math.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/mt19937/ -rw-r--r-- root/root 5784 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/mt19937/mt19937.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/musl/ -rw-r--r-- root/root 2324 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/musl/musl_rng.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/pcg32/ -rw-r--r-- root/root 2756 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/pcg32/pcg32.v -rw-r--r-- root/root 5521 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/rand.c.v -rw-r--r-- root/root 1155 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/rand.js.v -rw-r--r-- root/root 25735 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/rand.v -rw-r--r-- root/root 122 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/rand_test.js.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/seed/ -rw-r--r-- root/root 1149 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/seed/seed.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/splitmix64/ -rw-r--r-- root/root 2429 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/splitmix64/splitmix64.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/sys/ -rw-r--r-- root/root 3788 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/sys/system_rng.c.v -rw-r--r-- root/root 521 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/sys/system_rng.js.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/wyrand/ -rw-r--r-- root/root 50 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/wyrand/wyrand.js.v -rw-r--r-- root/root 2383 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/wyrand/wyrand.v -rw-r--r-- root/root 149 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/wyrand/z_wyrand.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/rand/xoroshiro128pp/ -rw-r--r-- root/root 2616 2025-05-21 08:37 ./usr/lib/vlang/vlib/rand/xoroshiro128pp/xoros128pp.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/readline/ -rw-r--r-- root/root 1251 2025-05-21 08:37 ./usr/lib/vlang/vlib/readline/readline.v -rw-r--r-- root/root 3068 2025-05-21 08:37 ./usr/lib/vlang/vlib/readline/readline_default.c.v -rw-r--r-- root/root 1009 2025-05-21 08:37 ./usr/lib/vlang/vlib/readline/readline_js.js.v -rw-r--r-- root/root 17815 2025-05-21 08:37 ./usr/lib/vlang/vlib/readline/readline_nix.c.v -rw-r--r-- root/root 2754 2025-05-21 08:37 ./usr/lib/vlang/vlib/readline/readline_windows.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/regex/ -rw-r--r-- root/root 73204 2025-05-21 08:37 ./usr/lib/vlang/vlib/regex/regex.v -rw-r--r-- root/root 1876 2025-05-21 08:37 ./usr/lib/vlang/vlib/regex/regex_opt.v -rw-r--r-- root/root 13658 2025-05-21 08:37 ./usr/lib/vlang/vlib/regex/regex_util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/runtime/ -rw-r--r-- root/root 826 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/free_memory_impl_darwin.c.v -rw-r--r-- root/root 58 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/free_memory_impl_default.c.v -rw-r--r-- root/root 520 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/free_memory_impl_freebsd.c.v -rw-r--r-- root/root 266 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/free_memory_impl_linux.c.v -rw-r--r-- root/root 431 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/free_memory_impl_openbsd.c.v -rw-r--r-- root/root 1666 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/runtime.v -rw-r--r-- root/root 652 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/runtime_nix.c.v -rw-r--r-- root/root 861 2025-05-21 08:37 ./usr/lib/vlang/vlib/runtime/runtime_windows.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/semver/ -rw-r--r-- root/root 1033 2025-05-21 08:37 ./usr/lib/vlang/vlib/semver/compare.v -rw-r--r-- root/root 2076 2025-05-21 08:37 ./usr/lib/vlang/vlib/semver/parse.v -rw-r--r-- root/root 5097 2025-05-21 08:37 ./usr/lib/vlang/vlib/semver/range.v -rw-r--r-- root/root 2886 2025-05-21 08:37 ./usr/lib/vlang/vlib/semver/semver.v -rw-r--r-- root/root 933 2025-05-21 08:37 ./usr/lib/vlang/vlib/semver/util.v -rw-r--r-- root/root 62 2025-05-21 08:37 ./usr/lib/vlang/vlib/semver/v.mod drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/sokol/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/audio/ -rw-r--r-- root/root 6856 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/audio/audio.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/c/ -rw-r--r-- root/root 2701 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/c/declaration.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/f/ -rw-r--r-- root/root 170 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/f/f.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/gfx/ -rw-r--r-- root/root 5546 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/gfx/enums.v -rw-r--r-- root/root 7221 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/gfx/gfx.c.v -rw-r--r-- root/root 316 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/gfx/gfx_allocator_and_logger.c.v -rw-r--r-- root/root 5854 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/gfx/gfx_funcs.c.v -rw-r--r-- root/root 24145 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/gfx/gfx_structs.c.v -rw-r--r-- root/root 521 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/gfx/gfx_utils.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/memory/ -rw-r--r-- root/root 1516 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/memory/memory.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/ -rw-r--r-- root/root 4109 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/enums.c.v -rw-r--r-- root/root 9778 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/sapp.c.v -rw-r--r-- root/root 321 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/sapp_allocator_and_logger.c.v -rw-r--r-- root/root 5136 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/sapp_funcs.c.v -rw-r--r-- root/root 6538 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/sapp_structs.c.v -rw-r--r-- root/root 1838 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/sapp_v.c.v -rw-r--r-- root/root 820 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sapp/screenshot.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sfons/ -rw-r--r-- root/root 920 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sfons/sfons.c.v -rw-r--r-- root/root 744 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sfons/sfons_funcs.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sgl/ -rw-r--r-- root/root 372 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sgl/enums.c.v -rw-r--r-- root/root 8095 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sgl/sgl.c.v -rw-r--r-- root/root 322 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sgl/sgl_allocator_and_logger.c.v -rw-r--r-- root/root 4148 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sgl/sgl_funcs.c.v -rw-r--r-- root/root 1552 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sgl/sgl_structs.c.v -rw-r--r-- root/root 260 2025-05-21 08:37 ./usr/lib/vlang/vlib/sokol/sokol.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/stbi/ -rw-r--r-- root/root 663 2025-05-21 08:37 ./usr/lib/vlang/vlib/stbi/link_to_libm.c.v -rw-r--r-- root/root 9582 2025-05-21 08:37 ./usr/lib/vlang/vlib/stbi/stbi.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/strconv/ -rw-r--r-- root/root 9867 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/atof.c.v -rw-r--r-- root/root 411 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/atof.js.v -rw-r--r-- root/root 2246 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/atof_test.c.v -rw-r--r-- root/root 18768 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/atofq.c.v -rw-r--r-- root/root 10629 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/atoi.v -rw-r--r-- root/root 2895 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/atou.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/bare/ -rw-r--r-- root/root 79 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/bare/str_array_example.v -rw-r--r-- root/root 9493 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/f32_str.c.v -rw-r--r-- root/root 15 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/f32_str.js.v -rw-r--r-- root/root 10528 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/f64_str.c.v -rw-r--r-- root/root 9201 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/f64_str.js.v -rw-r--r-- root/root 764 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/f64_str.v -rw-r--r-- root/root 8740 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/format.md -rw-r--r-- root/root 2489 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/format.v -rw-r--r-- root/root 10149 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/format_mem.c.v -rw-r--r-- root/root 1875 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/format_mem.js.v -rw-r--r-- root/root 1565 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/ftoa.c.v -rw-r--r-- root/root 1604 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/number_to_base.c.v -rw-r--r-- root/root 719 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/structs.v -rw-r--r-- root/root 34771 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/tables.v -rw-r--r-- root/root 6511 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/utilities.c.v -rw-r--r-- root/root 5129 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/utilities.v -rw-r--r-- root/root 16609 2025-05-21 08:37 ./usr/lib/vlang/vlib/strconv/vprintf.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/strings/ -rw-r--r-- root/root 7585 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/builder.c.v -rw-r--r-- root/root 2145 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/builder.js.v -rw-r--r-- root/root 2047 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/builder_test.js.v -rw-r--r-- root/root 5580 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/similarity.v -rw-r--r-- root/root 593 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/similarity_test.js.v -rw-r--r-- root/root 939 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/strings.c.v -rw-r--r-- root/root 238 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/strings.js.v -rw-r--r-- root/root 5030 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/strings.v -rw-r--r-- root/root 414 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/strings_test.js.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/strings/textscanner/ -rw-r--r-- root/root 5132 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/textscanner/textscanner.v -rw-r--r-- root/root 3592 2025-05-21 08:37 ./usr/lib/vlang/vlib/strings/textscanner/textscanner_test.js.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/sync/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/bench/ -rw-r--r-- root/root 1530 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/bench/channel_bench_go.go -rw-r--r-- root/root 1526 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/bench/channel_bench_v.v -rw-r--r-- root/root 3893 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/bench/many_writers_and_receivers_on_1_channel.v -rw-r--r-- root/root 2486 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/bench/results.md -rw-r--r-- root/root 17005 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/channels.c.v -rw-r--r-- root/root 426 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/channels.js.v -rw-r--r-- root/root 272 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/common_mutex.v -rw-r--r-- root/root 594 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/many_times.v -rw-r--r-- root/root 1191 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/once.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/sync/pool/ -rw-r--r-- root/root 5858 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/pool/pool.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/sync/stdatomic/ -rw-r--r-- root/root 9305 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/stdatomic/1.declarations.c.v -rw-r--r-- root/root 1547 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/stdatomic/atomic.c.v -rw-r--r-- root/root 215 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/sync.c.v -rw-r--r-- root/root 10517 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/sync_darwin.c.v -rw-r--r-- root/root 9118 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/sync_default.c.v -rw-r--r-- root/root 9124 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/sync_freebsd.c.v -rw-r--r-- root/root 6631 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/sync_windows.c.v -rw-r--r-- root/root 600 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/thread_default.c.v -rw-r--r-- root/root 107 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/thread_windows.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/threads/ -rw-r--r-- root/root 483 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/threads/threads.c.v -rw-r--r-- root/root 149 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/threads/threads.v -rw-r--r-- root/root 2352 2025-05-21 08:37 ./usr/lib/vlang/vlib/sync/waitgroup.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/term/ -rw-r--r-- root/root 9454 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/colors.v -rw-r--r-- root/root 3554 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/control.v -rw-r--r-- root/root 111 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/declarations_default.c.v -rw-r--r-- root/root 126 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/declarations_linux.c.v -rw-r--r-- root/root 500 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/term.js.v -rw-r--r-- root/root 6001 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/term.v -rw-r--r-- root/root 6443 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/term_nix.c.v -rw-r--r-- root/root 6316 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/term_windows.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/ -rw-r--r-- root/root 2409 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_android.c.v -rw-r--r-- root/root 2365 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_darwin.c.v -rw-r--r-- root/root 2646 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_default.c.v -rw-r--r-- root/root 2368 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_dragonfly.c.v -rw-r--r-- root/root 2338 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_freebsd.c.v -rw-r--r-- root/root 2409 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_linux.c.v -rw-r--r-- root/root 2338 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_netbsd.c.v -rw-r--r-- root/root 2347 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_openbsd.c.v -rw-r--r-- root/root 2394 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_qnx.c.v -rw-r--r-- root/root 2264 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_solaris.c.v -rw-r--r-- root/root 825 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_test.c.v -rw-r--r-- root/root 1864 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/termios/termios_windows.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/term/ui/ -rw-r--r-- root/root 2131 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/ui/color.v -rw-r--r-- root/root 1577 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/ui/consoleapi_windows.c.v -rw-r--r-- root/root 5103 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/ui/input.v -rw-r--r-- root/root 1602 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/ui/input_nix.c.v -rw-r--r-- root/root 8615 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/ui/input_windows.c.v -rw-r--r-- root/root 13421 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/ui/termios_nix.c.v -rw-r--r-- root/root 6942 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/ui/ui.c.v -rw-r--r-- root/root 850 2025-05-21 08:37 ./usr/lib/vlang/vlib/term/utf8.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/time/ -rw-r--r-- root/root 550 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/chrono.c.v -rw-r--r-- root/root 1485 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/chrono.v -rw-r--r-- root/root 10496 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/date_time_parser.v -rw-r--r-- root/root 2900 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/duration.v -rw-r--r-- root/root 22007 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/format.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/time/misc/ -rw-r--r-- root/root 225 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/misc/misc.v -rw-r--r-- root/root 844 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/operator.v -rw-r--r-- root/root 16523 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/parse.c.v -rw-r--r-- root/root 1047 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/parse.js.v -rw-r--r-- root/root 605 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/parse.v -rw-r--r-- root/root 447 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/private_test.c.v -rw-r--r-- root/root 1676 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/stopwatch.v -rw-r--r-- root/root 3476 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time.c.v -rw-r--r-- root/root 1954 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time.js.v -rw-r--r-- root/root 11835 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time.v -rw-r--r-- root/root 1958 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time_darwin.c.v -rw-r--r-- root/root 633 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time_js.js.v -rw-r--r-- root/root 548 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time_linux.c.v -rw-r--r-- root/root 3562 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time_nix.c.v -rw-r--r-- root/root 905 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time_solaris.c.v -rw-r--r-- root/root 423 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time_test.c.v -rw-r--r-- root/root 5438 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/time_windows.c.v -rw-r--r-- root/root 3831 2025-05-21 08:37 ./usr/lib/vlang/vlib/time/unix.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/toml/ -rw-r--r-- root/root 13958 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/any.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/ast/ -rw-r--r-- root/root 681 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/ast/ast.v -rw-r--r-- root/root 6642 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/ast/types.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/ast/walker/ -rw-r--r-- root/root 1839 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/ast/walker/walker.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/checker/ -rw-r--r-- root/root 20974 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/checker/checker.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/decoder/ -rw-r--r-- root/root 6834 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/decoder/decoder.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/input/ -rw-r--r-- root/root 1148 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/input/input.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/parser/ -rw-r--r-- root/root 49615 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/parser/parser.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/toml/scanner/ -rw-r--r-- root/root 23028 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/scanner/scanner.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/to/ -rw-r--r-- root/root 2335 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/to/to.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/token/ -rw-r--r-- root/root 499 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/token/pos.v -rw-r--r-- root/root 1410 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/token/token.v -rw-r--r-- root/root 13589 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/toml.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/util/ -rw-r--r-- root/root 1095 2025-05-21 08:37 ./usr/lib/vlang/vlib/toml/util/util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/ -rw-r--r-- root/root 3263 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/TEMPLATES.md drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/ast/ -rw-r--r-- root/root 70049 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/ast.v -rw-r--r-- root/root 2091 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/attr.v -rw-r--r-- root/root 1960 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/cflags.v -rw-r--r-- root/root 5134 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/comptime_const_values.v -rw-r--r-- root/root 1247 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/comptime_valid_idents.v -rw-r--r-- root/root 334 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/embed_file.v -rw-r--r-- root/root 1408 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/init.v -rw-r--r-- root/root 364 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/native.v -rw-r--r-- root/root 5875 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/scope.v -rw-r--r-- root/root 21419 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/str.v -rw-r--r-- root/root 77607 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/table.v -rw-r--r-- root/root 50214 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/types.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/ast/walker/ -rw-r--r-- root/root 1079 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/ast/walker/walker.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/build_constraint/ -rw-r--r-- root/root 242 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/build_constraint/ast.v -rw-r--r-- root/root 741 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/build_constraint/evaluating.v -rw-r--r-- root/root 1740 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/build_constraint/lexing.v -rw-r--r-- root/root 1483 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/build_constraint/parsing.v -rw-r--r-- root/root 1391 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/build_constraint/public.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/builder/ -rw-r--r-- root/root 19721 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/builder.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/cbuilder/ -rw-r--r-- root/root 2369 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/cbuilder/cbuilder.v -rw-r--r-- root/root 4683 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/cbuilder/parallel_cc.v -rw-r--r-- root/root 41501 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/cc.v -rw-r--r-- root/root 1295 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/cc_windows.v -rw-r--r-- root/root 1118 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/cflags.v -rw-r--r-- root/root 13002 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/compile.v -rw-r--r-- root/root 792 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/dump_lists.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/golangbuilder/ -rw-r--r-- root/root 1093 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/golangbuilder/golangbuilder.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/builder/interpreterbuilder/ -rw-r--r-- root/root 592 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/interpreterbuilder/ibuilder.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/jsbuilder/ -rw-r--r-- root/root 1146 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/jsbuilder/jsbuilder.v -rw-r--r-- root/root 353 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/msvc.v -rw-r--r-- root/root 19090 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/msvc_windows.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/nativebuilder/ -rw-r--r-- root/root 1615 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/nativebuilder/nativebuilder.v -rw-r--r-- root/root 12353 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/rebuilding.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/wasmbuilder/ -rw-r--r-- root/root 941 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/builder/wasmbuilder/wasmbuilder.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/callgraph/ -rw-r--r-- root/root 3041 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/callgraph/callgraph.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/cflag/ -rw-r--r-- root/root 4803 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/cflag/cflags.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/checker/ -rw-r--r-- root/root 39189 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/assign.v -rw-r--r-- root/root 2915 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/autocomplete.v -rw-r--r-- root/root 43684 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/check_types.v -rw-r--r-- root/root 191208 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/checker.v -rw-r--r-- root/root 36463 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/comptime.v -rw-r--r-- root/root 25536 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/containers.v -rw-r--r-- root/root 6390 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/errors.v -rw-r--r-- root/root 142433 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/fn.v -rw-r--r-- root/root 11191 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/for.v -rw-r--r-- root/root 25467 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/if.v -rw-r--r-- root/root 41733 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/infix.v -rw-r--r-- root/root 15202 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/interface.v -rw-r--r-- root/root 4629 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/lambda_expr.v -rw-r--r-- root/root 20715 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/match.v -rw-r--r-- root/root 22718 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/orm.v -rw-r--r-- root/root 1607 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/postfix.v -rw-r--r-- root/root 15268 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/return.v -rw-r--r-- root/root 8235 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/str.v -rw-r--r-- root/root 44637 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/struct.v -rw-r--r-- root/root 6226 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/checker/used_features.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/debug/ -rw-r--r-- root/root 932 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/debug/callstack.c.v -rw-r--r-- root/root 7541 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/debug/debug.v -rw-r--r-- root/root 1528 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/debug/trace.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/depgraph/ -rw-r--r-- root/root 5192 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/depgraph/depgraph.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/dotgraph/ -rw-r--r-- root/root 110 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/dotgraph/dotgraph.c.v -rw-r--r-- root/root 116 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/dotgraph/dotgraph.js.v -rw-r--r-- root/root 2204 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/dotgraph/dotgraph.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/embed_file/ -rw-r--r-- root/root 334 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/embed_file/decoder.v -rw-r--r-- root/root 2945 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/embed_file/embed_file.v -rw-r--r-- root/root 129 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/embed_file/embed_file_d_freestanding.v -rw-r--r-- root/root 452 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/embed_file/embed_file_notd_freestanding.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/errors/ -rw-r--r-- root/root 345 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/errors/errors.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/eval/ -rw-r--r-- root/root 7652 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/eval.v -rw-r--r-- root/root 15486 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/expr.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/gen/ -rw-r--r-- root/root 6503 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/gen/infix_gen.v -rw-r--r-- root/root 96065 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/infix.v -rw-r--r-- root/root 2121 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/object.v -rw-r--r-- root/root 2655 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/stmt.v -rw-r--r-- root/root 1360 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/eval/var.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/fmt/ -rw-r--r-- root/root 1569 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/fmt/align.v -rw-r--r-- root/root 3806 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/fmt/asm.v -rw-r--r-- root/root 1312 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/fmt/attrs.v -rw-r--r-- root/root 3505 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/fmt/comments.v -rw-r--r-- root/root 80445 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/fmt/fmt.v -rw-r--r-- root/root 9671 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/fmt/struct.v -rw-r--r-- root/root 2359 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/fmt/vfmt_on_off.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/c/ -rw-r--r-- root/root 60702 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/array.v -rw-r--r-- root/root 7398 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/assert.v -rw-r--r-- root/root 41640 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/assign.v -rw-r--r-- root/root 28588 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/auto_eq_methods.v -rw-r--r-- root/root 6998 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/auto_free_methods.v -rw-r--r-- root/root 52804 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/auto_str_methods.v -rw-r--r-- root/root 7297 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/autofree.v -rw-r--r-- root/root 264848 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/cgen.v -rw-r--r-- root/root 30787 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/cheaders.v -rw-r--r-- root/root 13832 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/cmain.v -rw-r--r-- root/root 39701 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/comptime.v -rw-r--r-- root/root 19665 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/consts_and_globals.v -rw-r--r-- root/root 5197 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/coverage.v -rw-r--r-- root/root 1003 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/ctempvars.v -rw-r--r-- root/root 9319 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/dumpexpr.v -rw-r--r-- root/root 6721 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/embed.v -rw-r--r-- root/root 91133 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/fn.v -rw-r--r-- root/root 16215 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/for.v -rw-r--r-- root/root 13111 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/if.v -rw-r--r-- root/root 15384 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/index.v -rw-r--r-- root/root 38314 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/infix.v -rw-r--r-- root/root 47439 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/json.v -rw-r--r-- root/root 3934 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/live.v -rw-r--r-- root/root 16880 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/match.v -rw-r--r-- root/root 42525 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/orm.v -rw-r--r-- root/root 1050 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/past_tmp_var.v -rw-r--r-- root/root 4091 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/profile.v -rw-r--r-- root/root 9477 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/reflection.v -rw-r--r-- root/root 15324 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/spawn_and_go.v -rw-r--r-- root/root 7075 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/str.v -rw-r--r-- root/root 7591 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/str_intp.v -rw-r--r-- root/root 24413 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/struct.v -rw-r--r-- root/root 4279 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/text_manipulation.v -rw-r--r-- root/root 4994 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/c/utils.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/golang/ -rw-r--r-- root/root 1304 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/golang/attrs.v -rw-r--r-- root/root 51683 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/golang/golang.v -rw-r--r-- root/root 5518 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/golang/struct.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/js/ -rw-r--r-- root/root 8709 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/array.v -rw-r--r-- root/root 13723 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/auto_eq_methods.v -rw-r--r-- root/root 30961 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/auto_str_methods.v -rw-r--r-- root/root 14214 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/builtin_types.v -rw-r--r-- root/root 6968 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/comptime.v -rw-r--r-- root/root 7342 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/deep_copy.v -rw-r--r-- root/root 1917 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/fast_deep_equal.js -rw-r--r-- root/root 19433 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/fn.v -rw-r--r-- root/root 9164 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/infix.v -rw-r--r-- root/root 91841 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/js.v -rw-r--r-- root/root 2054 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/jsdoc.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/js/sourcemap/ -rw-r--r-- root/root 4617 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/sourcemap/mappings.v -rw-r--r-- root/root 317 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/sourcemap/sets.v -rw-r--r-- root/root 3901 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/sourcemap/source_map.v -rw-r--r-- root/root 802 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/sourcemap/source_map_generator.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/js/sourcemap/vlq/ -rw-r--r-- root/root 2802 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/sourcemap/vlq/vlq.v -rw-r--r-- root/root 3853 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/str.v -rw-r--r-- root/root 2299 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/temp_fast_deep_equal.v -rw-r--r-- root/root 1447 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/js/util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/native/ -rw-r--r-- root/root 112932 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/amd64.v -rw-r--r-- root/root 13274 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/arm64.v -rw-r--r-- root/root 2492 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/array.v -rw-r--r-- root/root 821 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/blacklist.v -rw-r--r-- root/root 2556 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/builtins.v -rw-r--r-- root/root 4342 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/comptime.v -rw-r--r-- root/root 2215 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/dos.v -rw-r--r-- root/root 24843 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/elf.v -rw-r--r-- root/root 12111 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/expr.v -rw-r--r-- root/root 30267 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/gen.v -rw-r--r-- root/root 11482 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/macho.v -rw-r--r-- root/root 23013 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/pe.v -rw-r--r-- root/root 7342 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/readdll.c.v -rw-r--r-- root/root 9395 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/stmt.c.v -rw-r--r-- root/root 796 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/native/syscall.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/wasm/ -rw-r--r-- root/root 15772 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/wasm/asm.v -rw-r--r-- root/root 3562 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/wasm/comptime.v -rw-r--r-- root/root 34292 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/wasm/gen.v -rw-r--r-- root/root 19193 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/wasm/mem.v -rw-r--r-- root/root 2989 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/wasm/ops.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/gen/wasm/serialise/ -rw-r--r-- root/root 8216 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/gen/wasm/serialise/serialise.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/help/ -rw-r--r-- root/root 819 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/FORMATTING.md drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/build/ -rw-r--r-- root/root 17145 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/build/build-c.txt -rw-r--r-- root/root 1397 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/build/build-js.txt -rw-r--r-- root/root 760 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/build/build-native.txt -rw-r--r-- root/root 1690 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/build/build-wasm.txt -rw-r--r-- root/root 13063 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/build/build.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/ -rw-r--r-- root/root 946 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/common.txt -rw-r--r-- root/root 252 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/crun.txt -rw-r--r-- root/root 2287 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/doc.txt -rw-r--r-- root/root 1963 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/fmt.txt -rw-r--r-- root/root 1288 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/missdoc.txt -rw-r--r-- root/root 47 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/repl.txt -rw-r--r-- root/root 1075 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/run.txt -rw-r--r-- root/root 3166 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/test.txt -rw-r--r-- root/root 802 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/vet.txt -rw-r--r-- root/root 1821 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/watch.txt -rw-r--r-- root/root 1472 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/common/where.txt -rw-r--r-- root/root 4496 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/default.txt -rw-r--r-- root/root 2092 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/help.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/installation/ -rw-r--r-- root/root 402 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/installation/installation.txt -rw-r--r-- root/root 128 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/installation/self.txt -rw-r--r-- root/root 247 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/installation/symlink.txt -rw-r--r-- root/root 200 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/installation/up.txt -rw-r--r-- root/root 54 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/installation/version.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/ -rw-r--r-- root/root 1410 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/ast.txt -rw-r--r-- root/root 578 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/bin2v.txt -rw-r--r-- root/root 205 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/bug.txt -rw-r--r-- root/root 1080 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/bump.txt -rw-r--r-- root/root 1629 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/check-md.txt -rw-r--r-- root/root 1255 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/complete.txt -rw-r--r-- root/root 89 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/doctor.txt -rw-r--r-- root/root 1073 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/download.txt -rw-r--r-- root/root 837 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/gret.txt -rw-r--r-- root/root 1001 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/ls.txt -rw-r--r-- root/root 2087 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/other.txt -rw-r--r-- root/root 802 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/reduce.txt -rw-r--r-- root/root 2511 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/repeat.txt -rw-r--r-- root/root 569 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/retry.txt -rw-r--r-- root/root 912 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/shader.txt -rw-r--r-- root/root 57 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/share.txt -rw-r--r-- root/root 304 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/time.txt -rw-r--r-- root/root 64 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/other/tracev.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/scaffolding/ -rw-r--r-- root/root 259 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/scaffolding/scaffolding.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/ -rw-r--r-- root/root 575 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/install.txt -rw-r--r-- root/root 46 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/list.txt -rw-r--r-- root/root 67 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/outdated.txt -rw-r--r-- root/root 307 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/remove.txt -rw-r--r-- root/root 296 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/search.txt -rw-r--r-- root/root 60 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/show.txt -rw-r--r-- root/root 306 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/update.txt -rw-r--r-- root/root 104 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/upgrade.txt -rw-r--r-- root/root 433 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/help/vpm/vpm.txt drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/live/ -rw-r--r-- root/root 3241 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/live/common.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/live/executable/ -rw-r--r-- root/root 6369 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/live/executable/reloader.c.v -rw-r--r-- root/root 1253 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/live/live_test_template.vv drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/live/sharedlib/ -rw-r--r-- root/root 980 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/live/sharedlib/live_sharedlib.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/markused/ -rw-r--r-- root/root 20487 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/markused/markused.v -rw-r--r-- root/root 17607 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/markused/walker.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/mathutil/ -rw-r--r-- root/root 407 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/mathutil/mathutil.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/parser/ -rw-r--r-- root/root 7785 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/assign.v -rw-r--r-- root/root 13836 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/comptime.v -rw-r--r-- root/root 8690 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/containers.v -rw-r--r-- root/root 26717 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/expr.v -rw-r--r-- root/root 39871 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/fn.v -rw-r--r-- root/root 6550 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/for.v -rw-r--r-- root/root 14550 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/if_match.v -rw-r--r-- root/root 2297 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/lock.v -rw-r--r-- root/root 2069 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/module.v -rw-r--r-- root/root 9648 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/orm.v -rw-r--r-- root/root 28509 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/parse_type.v -rw-r--r-- root/root 125793 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/parser.v -rw-r--r-- root/root 25353 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/struct.v -rw-r--r-- root/root 13896 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/parser/tmpl.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/pkgconfig/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/pkgconfig/bin/ -rw-r--r-- root/root 219 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/bin/pkgconfig.v -rw-r--r-- root/root 5238 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/main.v -rw-r--r-- root/root 7607 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/pkgconfig.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/ -rw-r--r-- root/root 287 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/alsa.pc -rw-r--r-- root/root 255 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/atk.pc -rw-r--r-- root/root 660 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/autoopts.pc -rw-r--r-- root/root 161 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/dep-resolution-fail.pc -rw-r--r-- root/root 238 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/expat.pc -rw-r--r-- root/root 451 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/form.pc -rw-r--r-- root/root 721 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/gio-2.0.pc -rw-r--r-- root/root 249 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/gio-unix-2.0.pc -rw-r--r-- root/root 425 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/glib-2.0.pc -rw-r--r-- root/root 271 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/gmodule-2.0.pc -rw-r--r-- root/root 290 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/gmodule-no-export-2.0.pc -rw-r--r-- root/root 304 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/gobject-2.0.pc -rw-r--r-- root/root 533 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/hogweed.pc -rw-r--r-- root/root 212 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/libffi.pc -rw-r--r-- root/root 337 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/libpcre.pc -rw-r--r-- root/root 456 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/ncurses.pc -rw-r--r-- root/root 287 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/nettle.pc -rw-r--r-- root/root 509 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/openssl-3.3.2.pc -rw-r--r-- root/root 693 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/sdl2.pc -rw-r--r-- root/root 265 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/test_samples/zlib.pc -rw-r--r-- root/root 256 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pkgconfig/v.mod drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/pref/ -rw-r--r-- root/root 1738 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pref/arch.c.v -rw-r--r-- root/root 610 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pref/build_flags.v -rw-r--r-- root/root 12060 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pref/default.v -rw-r--r-- root/root 1113 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pref/line_info.v -rw-r--r-- root/root 5094 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pref/os.v -rw-r--r-- root/root 45602 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pref/pref.v -rw-r--r-- root/root 9202 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/pref/should_compile.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/preludes/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/embed_file/ -rw-r--r-- root/root 173 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/embed_file/embed_file.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/embed_file/zlib/ -rw-r--r-- root/root 246 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/embed_file/zlib/embed_file_zlib.v -rw-r--r-- root/root 157 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/live.v -rw-r--r-- root/root 146 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/live_main.v -rw-r--r-- root/root 144 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/live_shared.v -rw-r--r-- root/root 157 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/profiled_program.v -rw-r--r-- root/root 4307 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/test_runner.c.v -rw-r--r-- root/root 2465 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/test_runner_dump.v -rw-r--r-- root/root 5001 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/test_runner_normal.v -rw-r--r-- root/root 2181 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/test_runner_simple.v -rw-r--r-- root/root 2913 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/test_runner_tap.v -rw-r--r-- root/root 4652 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/test_runner_teamcity.v -rw-r--r-- root/root 3229 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/tests_with_stats.v -rw-r--r-- root/root 39 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes/trace_calls.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes_js/ -rw-r--r-- root/root 180 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes_js/stats_import.js.v -rw-r--r-- root/root 3174 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes_js/test_runner.v -rw-r--r-- root/root 12 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes_js/test_runner_normal.v -rw-r--r-- root/root 12 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes_js/test_runner_simple.v -rw-r--r-- root/root 12 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes_js/test_runner_tap.v -rw-r--r-- root/root 3106 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/preludes_js/tests_with_stats.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/profile/ -rw-r--r-- root/root 187 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/profile/api.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/reflection/ -rw-r--r-- root/root 6944 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/reflection/reflection.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/scanner/ -rw-r--r-- root/root 54138 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/scanner/scanner.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/token/ -rw-r--r-- root/root 5039 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/token/keywords_matcher_trie.v -rw-r--r-- root/root 1341 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/token/pos.v -rw-r--r-- root/root 17901 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/token/token.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/trace_calls/ -rw-r--r-- root/root 1285 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/trace_calls/tracing_calls.c.v -rw-r--r-- root/root 165 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/trace_calls/tracing_calls_nix.c.v -rw-r--r-- root/root 92 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/trace_calls/tracing_calls_windows.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/transformer/ -rw-r--r-- root/root 4361 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/transformer/index_state.v -rw-r--r-- root/root 28533 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/transformer/transformer.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/type_resolver/ -rw-r--r-- root/root 9844 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/type_resolver/comptime_resolver.v -rw-r--r-- root/root 13651 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/type_resolver/generic_resolver.v -rw-r--r-- root/root 8187 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/type_resolver/type_resolver.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/util/ -rw-r--r-- root/root 2890 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/d_value.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/util/diff/ -rw-r--r-- root/root 2726 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/diff/diff.v -rw-r--r-- root/root 1597 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/env_value.v -rw-r--r-- root/root 7182 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/errors.v -rw-r--r-- root/root 8753 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/module.v -rw-r--r-- root/root 2517 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/quote.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/recompilation/ -rw-r--r-- root/root 1139 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/recompilation/recompilation.v -rw-r--r-- root/root 1513 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/scanning.v -rw-r--r-- root/root 4322 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/suggestions.v -rw-r--r-- root/root 3563 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/surrounder.v -rw-r--r-- root/root 3658 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/timers.v -rw-r--r-- root/root 401 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/util.c.v -rw-r--r-- root/root 341 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/util.js.v -rw-r--r-- root/root 19203 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/util.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/util/version/ -rw-r--r-- root/root 258 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/version/version.c.v -rw-r--r-- root/root 1627 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/version/version.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/util/vflags/ -rw-r--r-- root/root 1828 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/vflags/vflags.v -rw-r--r-- root/root 820 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/vmod_value.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/vtest/ -rw-r--r-- root/root 639 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/util/vtest/vtest.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/vcache/ -rw-r--r-- root/root 7563 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/vcache/vcache.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v/vmod/ -rw-r--r-- root/root 1369 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/vmod/encoder.v -rw-r--r-- root/root 5500 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/vmod/parser.v -rw-r--r-- root/root 4559 2025-05-21 08:37 ./usr/lib/vlang/vlib/v/vmod/vmod.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/v2/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/ast/ -rw-r--r-- root/root 13403 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/ast/ast.v -rw-r--r-- root/root 1835 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/ast/desugar.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/builder/ -rw-r--r-- root/root 1680 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/builder/builder.v -rw-r--r-- root/root 1195 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/builder/parse.v -rw-r--r-- root/root 1998 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/builder/parse_parallel.v -rw-r--r-- root/root 687 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/builder/type_check.v -rw-r--r-- root/root 518 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/builder/util.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/errors/ -rw-r--r-- root/root 1321 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/errors/details.v -rw-r--r-- root/root 346 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/errors/error.v -rw-r--r-- root/root 558 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/errors/util.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/gen/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/gen/v/ -rw-r--r-- root/root 19792 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/gen/v/gen.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/parser/ -rw-r--r-- root/root 57804 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/parser/parser.v -rw-r--r-- root/root 6258 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/parser/type.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/pref/ -rw-r--r-- root/root 1043 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/pref/module.v -rw-r--r-- root/root 886 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/pref/pref.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/scanner/ -rw-r--r-- root/root 11435 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/scanner/scanner.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/token/ -rw-r--r-- root/root 4384 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/token/position.v -rw-r--r-- root/root 7061 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/token/token.v -rw-r--r-- root/root 9151 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/token/util.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/types/ -rw-r--r-- root/root 61394 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/types/checker.v -rw-r--r-- root/root 427 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/types/module.v -rw-r--r-- root/root 507 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/types/object.v -rw-r--r-- root/root 3656 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/types/scope.v -rw-r--r-- root/root 10394 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/types/types.v -rw-r--r-- root/root 3238 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/types/universe.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/util/ -rw-r--r-- root/root 1295 2025-05-21 08:37 ./usr/lib/vlang/vlib/v2/util/worker_pool.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/veb/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/veb/assets/ -rw-r--r-- root/root 8244 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/assets/assets.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/veb/auth/ -rw-r--r-- root/root 2216 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/auth/auth.v -rw-r--r-- root/root 129 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/auth/request.v -rw-r--r-- root/root 4299 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/consts.v -rw-r--r-- root/root 10166 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/context.v -rw-r--r-- root/root 3650 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/controller.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/veb/csrf/ -rw-r--r-- root/root 7689 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/csrf/csrf.v -rw-r--r-- root/root 337 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/escape_html_strings_in_templates.v -rw-r--r-- root/root 10027 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/middleware.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/oauth/ -rw-r--r-- root/root 1258 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/oauth/oauth.v -rw-r--r-- root/root 2431 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/parse.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/veb/request_id/ -rw-r--r-- root/root 1693 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/request_id/request_id.v -rw-r--r-- root/root 346 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/sendfile_freebsd.c.v -rw-r--r-- root/root 288 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/sendfile_linux.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/veb/sse/ -rw-r--r-- root/root 2351 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/sse/sse.v -rw-r--r-- root/root 4830 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/static_handler.v -rw-r--r-- root/root 2257 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/tr.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/translations/ -rw-r--r-- root/root 15 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/translations/en.tr -rw-r--r-- root/root 14 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/translations/pt-br.tr -rw-r--r-- root/root 29143 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/veb.v -rw-r--r-- root/root 2086 2025-05-21 08:37 ./usr/lib/vlang/vlib/veb/veb_livereload.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/vweb/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/vweb/assets/ -rw-r--r-- root/root 5761 2025-05-21 08:37 ./usr/lib/vlang/vlib/vweb/assets/assets.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/vweb/csrf/ -rw-r--r-- root/root 6605 2025-05-21 08:37 ./usr/lib/vlang/vlib/vweb/csrf/csrf.v -rw-r--r-- root/root 2387 2025-05-21 08:37 ./usr/lib/vlang/vlib/vweb/parse.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/vweb/sse/ -rw-r--r-- root/root 2652 2025-05-21 08:37 ./usr/lib/vlang/vlib/vweb/sse/sse.v -rw-r--r-- root/root 36807 2025-05-21 08:37 ./usr/lib/vlang/vlib/vweb/vweb.v -rw-r--r-- root/root 2176 2025-05-21 08:37 ./usr/lib/vlang/vlib/vweb/vweb_livereload.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/wasm/ -rw-r--r-- root/root 4589 2025-05-21 08:37 ./usr/lib/vlang/vlib/wasm/constant.v -rw-r--r-- root/root 10411 2025-05-21 08:37 ./usr/lib/vlang/vlib/wasm/encoding.v -rw-r--r-- root/root 890 2025-05-21 08:37 ./usr/lib/vlang/vlib/wasm/functions.v -rw-r--r-- root/root 32267 2025-05-21 08:37 ./usr/lib/vlang/vlib/wasm/instructions.v -rw-r--r-- root/root 6375 2025-05-21 08:37 ./usr/lib/vlang/vlib/wasm/module.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/benchmark/ -rw-r--r-- root/root 7531 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/benchmark/benchmark.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/crypto/chacha20/ -rw-r--r-- root/root 20358 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/chacha20/chacha.v -rw-r--r-- root/root 2736 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/chacha20/xchacha.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/crypto/chacha20poly1305/ -rw-r--r-- root/root 10099 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/chacha20poly1305/chacha20poly1305.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/crypto/poly1305/ -rw-r--r-- root/root 5406 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/poly1305/custom.v -rw-r--r-- root/root 12585 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/poly1305/poly1305.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/crypto/slhdsa/ -rw-r--r-- root/root 12305 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/slhdsa/base.v -rw-r--r-- root/root 3276 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/slhdsa/const.c.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/slhdsa/examples/ -rw-r--r-- root/root 481 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/slhdsa/examples/example0.v -rw-r--r-- root/root 1388 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/slhdsa/install-latest-ssl.md -rw-r--r-- root/root 3954 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/slhdsa/slhdsa.c.v -rw-r--r-- root/root 10723 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/slhdsa/slhdsa.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/crypto/sm4/ -rw-r--r-- root/root 124083 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/sm4/SM4.pdf -rw-r--r-- root/root 23249 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/crypto/sm4/sm4.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/encoding/asn1/ -rw-r--r-- root/root 18658 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/DOCS.md -rw-r--r-- root/root 689 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/any.v -rw-r--r-- root/root 1329 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/base128.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/encoding/asn1/bench/ -rw-r--r-- root/root 1245 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/bench/bench.go -rw-r--r-- root/root 3656 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/bench/bench.v -rw-r--r-- root/root 6719 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/bitstring.v -rw-r--r-- root/root 4970 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/boolean.v -rw-r--r-- root/root 1868 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/choices.v -rw-r--r-- root/root 4008 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/common.v -rw-r--r-- root/root 17170 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/core.v -rw-r--r-- root/root 9429 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/element.v -rw-r--r-- root/root 6205 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/element_decode.v -rw-r--r-- root/root 6501 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/element_encode.v -rw-r--r-- root/root 3675 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/enumerated.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/encoding/asn1/examples/ -rw-r--r-- root/root 3787 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/examples/examples0.v -rw-r--r-- root/root 3672 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/examples/examples1.v -rw-r--r-- root/root 13471 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/examples/examples2.v -rw-r--r-- root/root 2753 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/examples/examples3.v -rw-r--r-- root/root 16882 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/field_options.v -rw-r--r-- root/root 3686 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/generalstring.v -rw-r--r-- root/root 2550 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/ia5string.v -rw-r--r-- root/root 12118 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/integer.v -rw-r--r-- root/root 7097 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/length.v -rw-r--r-- root/root 1726 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/null.v -rw-r--r-- root/root 3031 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/numericstring.v -rw-r--r-- root/root 3065 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/octetstring.v -rw-r--r-- root/root 5101 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/oid.v -rw-r--r-- root/root 2514 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/optional.v -rw-r--r-- root/root 11495 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/other_element.v -rw-r--r-- root/root 3745 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/parser.v -rw-r--r-- root/root 2965 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/printablestring.v -rw-r--r-- root/root 7815 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/sequence.v -rw-r--r-- root/root 9075 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/set.v -rw-r--r-- root/root 10002 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/time.v -rw-r--r-- root/root 2670 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/utf8string.v -rw-r--r-- root/root 2287 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/util.v -rw-r--r-- root/root 2800 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/encoding/asn1/visiblestring.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/json2/ -rw-r--r-- root/root 1913 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/count.v -rw-r--r-- root/root 14100 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/decoder.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/json2/decoder2/ -rw-r--r-- root/root 31770 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/decoder2/decode.v -rw-r--r-- root/root 2852 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/decoder2/decode_sumtype.v -rw-r--r-- root/root 247 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/decoder2/decoder_deprecated.v -rw-r--r-- root/root 2610 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/decoder_deprecated.v -rw-r--r-- root/root 17073 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/encoder.v -rw-r--r-- root/root 7077 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/json2.v -rw-r--r-- root/root 8381 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/scanner.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/json2/strict/ -rw-r--r-- root/root 4027 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/strict/strict.v -rw-r--r-- root/root 779 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/strict/strict_test_todo.vv -rw-r--r-- root/root 1254 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/json2/types.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/sessions/ -rw-r--r-- root/root 2199 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/sessions/db_store.v -rw-r--r-- root/root 1302 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/sessions/memory_store.v -rw-r--r-- root/root 5951 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/sessions/sessions.v -rw-r--r-- root/root 488 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/sessions/store.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/sessions/vweb2_middleware/ -rw-r--r-- root/root 1040 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/sessions/vweb2_middleware/vweb2_middleware.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/templating/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/templating/dtm/ -rw-r--r-- root/root 53238 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/templating/dtm/dynamic_template_manager.v -rw-r--r-- root/root 88 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/templating/dtm/escape_html_strings_in_templates.v -rw-r--r-- root/root 11276 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/templating/dtm/tmpl.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/vlang/vlib/x/ttf/ -rw-r--r-- root/root 4824 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/ttf/common.v -rw-r--r-- root/root 23275 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/ttf/render_bmp.v -rw-r--r-- root/root 6268 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/ttf/render_sokol_cpu.v -rw-r--r-- root/root 3930 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/ttf/text_block.v -rw-r--r-- root/root 31173 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/ttf/ttf.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/vweb/ -rw-r--r-- root/root 126 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/vweb/vweb.v -rw-r--r-- root/root 94 2025-05-21 08:37 ./usr/lib/vlang/vlib/x/x.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/bash-completion/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/bash-completion/completions/ -rw-r--r-- root/root 402 2025-05-21 17:22 ./usr/share/bash-completion/completions/_v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/ -rw-r--r-- root/root 171 2025-05-21 17:22 ./usr/share/doc/vlang/changelog.Debian.gz -rw-r--r-- root/root 83782 2025-05-21 08:37 ./usr/share/doc/vlang/changelog.gz -rw-r--r-- root/root 15581 2025-05-21 17:22 ./usr/share/doc/vlang/copyright drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/lintian/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/lintian/overrides/ -rw-r--r-- root/root 522 2025-05-21 17:22 ./usr/share/lintian/overrides/vlang drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/man/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/man/man1/ -rw-r--r-- root/root 2170 2025-05-21 17:22 ./usr/share/man/man1/v.1.gz drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/zsh/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/zsh/vendor-completions/ -rw-r--r-- root/root 212 2025-05-21 17:22 ./usr/share/zsh/vendor-completions/_v lrwxrwxrwx root/root 0 2025-05-21 17:22 ./usr/bin/v -> ../lib/vlang/v lrwxrwxrwx root/root 0 2025-05-21 17:22 ./usr/lib/vlang/cmd/tools/vdoc/theme/normalize.css -> ../../../../../../share/javascript/normalize.css/normalize.css |
copyright of vlang_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb (click to toggle) | |
---|---|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: https://github.com/vlang/v Upstream-Name: vlang Upstream-Contact: https://github.com/vlang/v/issues Files-Excluded: thirdparty/libatomic_ops thirdparty/libbacktrace thirdparty/libgc thirdparty/mbedtls thirdparty/zstd vlib/x/ttf/ttf_test_data.bin Comment: Exclude embedded libraries, replace with dynamic linking Exclude embedded test font "Qarmic Sans" Files: * Copyright: 2019-2025 Alexander Medvednikov 2019-2024 Dario Deledda License: Expat Files: vc-bootstrap/* Copyright: 2019-2025 Alexander Medvednikov 2019-2024 Dario Deledda License: Expat Files: vmarkdown/* Copyright: 2016-2019 Martin Mitáš 2020 Ned Palacios (V bindings) 2020-2021 The V Programming Language License: Expat Files: examples/assets/fonts/Graduate-Regular.ttf examples/assets/fonts/Imprima-Regular.ttf Copyright: 2012 Eduardo Tunni License: OFL-1.1 Files: examples/assets/fonts/RobotoMono-Regular.ttf Copyright: 2015 Google Inc. License: Apache-2.0 Files: examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/* Copyright: Unknown License: ISC Files: thirdparty/fontstash/fontstash.h Copyright: 2009-2013 Mikko Mononen <memon@inside.org> License: Zlib Files: thirdparty/picoev/* Copyright: 2009 Cybozu Labs, Inc. License: BSD-3-clause Files: thirdparty/picohttpparser/* Copyright: 2009-2014, Kazuho Oku, Tokuhiro Matsuno, Daisuke Murase, Shigeo Mitsunari License: Expat Files: thirdparty/sokol/* Copyright: 2018 Andre Weissflog License: Zlib Files: thirdparty/stb_image* thirdparty/fontstash/stb_truetype.h Copyright: Sean Barrett RAD Game Tools Jeff Roberts (v2) Jorge L Rodriguez License: Expat or Unlicense stb_image - public domain image loader - http://nothings.org/stb no warranty implied; use at your own risk This software is available under 2 licenses -- choose whichever you prefer. Files: thirdparty/stdatomic/nix/atomic_cpp.h Copyright: 2011 Ed Schouten <ed@FreeBSD.org> David Chisnall <theraven@FreeBSD.org> License: BSD-2-clause Files: thirdparty/stdatomic/win/atomic.h Copyright: FFmpeg authors License: LGPL-2.1+ Files: thirdparty/walloc/walloc.c Copyright: 2020 Igalia, S.L. License: Expat Files: thirdparty/zip/* Copyright: 2013-2014 RAD Game Tools and Valve Software 2010-2014 Rich Geldreich and Tenacious Software LLC Rich Geldreich <richgel99@gmail.com> License: Expat and Unlicense Files: vlib/crypto/aes/block_generic.v Copyright: 2019-2024 Alexander Medvednikov Vincent Rijmen <vincent.rijmen@esat.kuleuven.ac.be> Antoon Bosselaers <antoon.bosselaers@esat.kuleuven.ac.be> Paulo Barreto <paulo.barreto@Terra.com.br> License: Expat and public-domain This code is hereby placed in the public domain Files: vlib/dlmalloc/dlmalloc.v Copyright: 2019-2024 Alexander Medvednikov Doug Lea License: Expat and public-domain The original source was written by Doug Lea and released to the public domain Files: vlib/net/afunix.h Copyright: Unknown License: public-domain This file has no copyright assigned and is placed in the Public Domain. This file is part of the mingw-w64 runtime package. Files: vlib/rand/mt19937/mt19937.v Copyright: 2019-2024 Alexander Medvednikov 1997-2002 Makoto Matsumoto and Takuji Nishimura License: Expat and BSD-3-clause Files: debian/* Copyright: 2025 Ahmad Khalifa <ahmad@khalifa.ws> License: Expat 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 . http://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. Comment: On Debian systems, the complete text of the Apache License, Version 2.0 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, and the entire permission notice in its entirety, including the disclaimer of warranties. 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. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR 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 NOT ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: BSD-2-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. . THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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: 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. License: ISC Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. . THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. Comment: On Debian systems, the complete text of the GNU Lesser General Public License can be found in "/usr/share/common-licenses/LGPL-2.1". License: OFL-1.1 ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- . PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. . The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. . DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. . "Reserved Font Name" refers to any names specified as such after the copyright statement(s). . "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). . "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. . "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. . PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: . 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. . 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. . 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. . 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. . 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. . TERMINATION This license becomes null and void if any of the above conditions are not met. . DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. License: Unlicense This is free and unencumbered software released into the public domain. . Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. . In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. . 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 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. . For more information, please refer to <https://unlicense.org/> License: Zlib This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. |
control file for vlang-dbgsym_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb (click to toggle) | |
---|---|
Package: | vlang-dbgsym |
Source: | vlang |
Version: | 0.4.10+git20250521.7c50fb1+ds-1 |
Auto-Built-Package: | debug-symbols |
Architecture: | amd64 |
Maintainer: | Ahmad Khalifa <ahmad@khalifa.ws> |
Installed-Size: | 68042 |
Depends: | vlang (=0.4.10+git20250521.7c50fb1+ds-1) |
Section: | debug |
Priority: | optional |
Description: | debug symbols for vlang |
Build-Ids: | 09a49ce640a4e2197cc900b36754da885e68b93b 09e9cff878a28d7b3f852d5be496e0eb31502910 0aec1bb5df28bcf014ab6d82794b7bbb7795396d 0d830c6a583beeab7031cc3613e19e38f92e322f 136e70ec5f6ef089aef59f6fb271db187f1caf53 16e7bcc6809b87c4f566fc169225b7c5ecd379de 1837776b55062d10922c81cbed29cab44181fd99 1c512984418a8ff78a7a501d2df1ad0308af7170 1dd23a7d3f8200ab9af10cc8e787c9b7fef01382 1e856d07bdc8f581eaca76185c998f6dec7f9e17 2120e0b960af0e0cfded45d23edcaa20e116a12b 24a79e9f8e180137f7d775f3eed31cc71022a1ef 2c5281f2136689966049e2275de95f91f5e9410e 2e34d87d31a1600c17cf32499a70b46a57e3930f 3453d6f32f6820ba7962ac564e4f0136d7fdc760 38cfcb6f94dcdb2aa81f1feb47a2918661cf43d9 39fa999070c94ccb721bb0969b7b4b64187a1088 3dee4fb5c1147b46011b66c065fcca2b51281918 3dfb4f870133653780c5733ba08e513b3a8dd096 3e085ea00211ced85f57a121e19da273564b5a6e 455459c6c1f692d905f5be8b9dcdebad4883222e 4789f3f2d7d3adf304def009f6429cc02e3317aa 49fa5863a563c2cf2db5b497ce41171a63b81d4f 50af66c39f9547580a22b3801c3704983468f32c 5c44056d2ebe7da40ea0948b74b0921feef29d5b 5ce3bb1e952d59ac13334f912fcea0633e71954e 5d9e0bf396240c27fef07a4992154abcc9c384fe 5db5b40805488a41ceeaa1439d619706f199b64c 61c2fc1cf51a454aac51f6b808ed6c172fac97de 664e0c0240ecbfac3cbe72e29bb1a292025716cd 66705f1d5cb577b418d58d9e22be64cc46d2f459 68b51a470ec2e686f5d341ff5d5d33b85fbb7c75 6a250146008ce9c37af9353e7995283f1eb2f3ed 6bb3dfccc9e96084ebd0e711c6256d3c39073d97 723122d5d5d9112c091bdcee07fe400d4ae2cc5b 7fa29b71b684e86b30b318c22ef4a6cdd3e1a7cf 8069205fd7e252a82a6a704b603c1ce2c0aa3ae4 837cde9788b155eba83063fd3122a716b48544db 87fc373835907b41ef8bd79f34014de4d4aea2b7 90bd9ad78413f16306b730d9276277ba2e9d08a2 94a8e5b0da2dbcdf0f5134193ad4486fcc6d719d 97aa48e39ae078162ff74efe392587daee87fa36 9ba894405696bd9fde8720851deb8f2f3a86b4cf 9d550620f630942de88fd2732fa4bb09939ae7c0 9ff839e65142ebbe5a5dd3f06271ea82e2cec275 a148f5eb710e91c563640934a78de453ca76c1ad a195aec3d47478df90093b379237927b6d2da42b a7cf9422ebf7b5b603cc161b1e14b911e4657553 aad1e8d888a93c8c2ef7f81a0e7f6cc6272fa487 accdedbf11fcf8f22747b826d2c561f98d8e4f68 adf95679934113cd2cfb20457ac19dd89e42a6be b52ef9fee4092ffbbeba6f52d7310a8f8d5faa37 b8702a1adcb8c00f52b13a26a640c2bc5c340b62 bbe618a3cb864baa2194c1449f900574a40dcddb bc14a44e366879b6b2a6cdc1dd28cc7d835e850d c18a7d6be5e5f28fe2f6f719c618e3321f3107bf c703310117d3ddc5f6bca8bbe1a6e9749d7a45a0 ca08363cb71761a38ca5e50168e2036cfa0e066a ccb7736492457d573c2b185362134b1fb68b0354 d1988af061eeb3e3857382bde510922c1f536c96 d527d1e4ecc77589f121394daf5ace12f60151ff d614db1ab9e5b7a08d470eb8bdb1a99617308010 d67ccd036138bed88f73acaae6243fb7be47f61d d6a8ef5f5d1697320cfa5086bb72093b5af56b26 df71d9798b05d85b303b87a7377a4738675192bf e2e05aee6bd172599160d04618a9e3cd345af552 f0897efb66a5de9197502271a7c2e0934d5f8897 f644bd00195ce38e560428d631717e6778ab683d fab3e5acc2aa8f1893b8b555c93a8464f8c7869a fb76b0d5bcb94a616f81c83e662a69ce74b634aa ff2511303ea25b73d2bf1612241f2ec022616b25 |
lintian 2.116.3+deb12u1 check for vlang-dbgsym_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb (click to toggle) | |
---|---|
contents of vlang-dbgsym_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-05-21 17:22 ./ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/09/ -rw-r--r-- root/root 1657280 2025-05-21 17:22 ./usr/lib/debug/.build-id/09/a49ce640a4e2197cc900b36754da885e68b93b.debug -rw-r--r-- root/root 286976 2025-05-21 17:22 ./usr/lib/debug/.build-id/09/e9cff878a28d7b3f852d5be496e0eb31502910.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/0a/ -rw-r--r-- root/root 300696 2025-05-21 17:22 ./usr/lib/debug/.build-id/0a/ec1bb5df28bcf014ab6d82794b7bbb7795396d.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/0d/ -rw-r--r-- root/root 190800 2025-05-21 17:22 ./usr/lib/debug/.build-id/0d/830c6a583beeab7031cc3613e19e38f92e322f.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/13/ -rw-r--r-- root/root 249712 2025-05-21 17:22 ./usr/lib/debug/.build-id/13/6e70ec5f6ef089aef59f6fb271db187f1caf53.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/16/ -rw-r--r-- root/root 398192 2025-05-21 17:22 ./usr/lib/debug/.build-id/16/e7bcc6809b87c4f566fc169225b7c5ecd379de.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/18/ -rw-r--r-- root/root 347168 2025-05-21 17:22 ./usr/lib/debug/.build-id/18/37776b55062d10922c81cbed29cab44181fd99.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/1c/ -rw-r--r-- root/root 46168 2025-05-21 17:22 ./usr/lib/debug/.build-id/1c/512984418a8ff78a7a501d2df1ad0308af7170.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/1d/ -rw-r--r-- root/root 3077256 2025-05-21 17:22 ./usr/lib/debug/.build-id/1d/d23a7d3f8200ab9af10cc8e787c9b7fef01382.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/1e/ -rw-r--r-- root/root 3754640 2025-05-21 17:22 ./usr/lib/debug/.build-id/1e/856d07bdc8f581eaca76185c998f6dec7f9e17.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/21/ -rw-r--r-- root/root 488216 2025-05-21 17:22 ./usr/lib/debug/.build-id/21/20e0b960af0e0cfded45d23edcaa20e116a12b.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/24/ -rw-r--r-- root/root 181888 2025-05-21 17:22 ./usr/lib/debug/.build-id/24/a79e9f8e180137f7d775f3eed31cc71022a1ef.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/2c/ -rw-r--r-- root/root 494176 2025-05-21 17:22 ./usr/lib/debug/.build-id/2c/5281f2136689966049e2275de95f91f5e9410e.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/2e/ -rw-r--r-- root/root 381456 2025-05-21 17:22 ./usr/lib/debug/.build-id/2e/34d87d31a1600c17cf32499a70b46a57e3930f.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/34/ -rw-r--r-- root/root 363312 2025-05-21 17:22 ./usr/lib/debug/.build-id/34/53d6f32f6820ba7962ac564e4f0136d7fdc760.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/38/ -rw-r--r-- root/root 179552 2025-05-21 17:22 ./usr/lib/debug/.build-id/38/cfcb6f94dcdb2aa81f1feb47a2918661cf43d9.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/39/ -rw-r--r-- root/root 1596040 2025-05-21 17:22 ./usr/lib/debug/.build-id/39/fa999070c94ccb721bb0969b7b4b64187a1088.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/3d/ -rw-r--r-- root/root 483304 2025-05-21 17:22 ./usr/lib/debug/.build-id/3d/ee4fb5c1147b46011b66c065fcca2b51281918.debug -rw-r--r-- root/root 273472 2025-05-21 17:22 ./usr/lib/debug/.build-id/3d/fb4f870133653780c5733ba08e513b3a8dd096.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/3e/ -rw-r--r-- root/root 347984 2025-05-21 17:22 ./usr/lib/debug/.build-id/3e/085ea00211ced85f57a121e19da273564b5a6e.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/45/ -rw-r--r-- root/root 5012488 2025-05-21 17:22 ./usr/lib/debug/.build-id/45/5459c6c1f692d905f5be8b9dcdebad4883222e.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/47/ -rw-r--r-- root/root 3547704 2025-05-21 17:22 ./usr/lib/debug/.build-id/47/89f3f2d7d3adf304def009f6429cc02e3317aa.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/49/ -rw-r--r-- root/root 374824 2025-05-21 17:22 ./usr/lib/debug/.build-id/49/fa5863a563c2cf2db5b497ce41171a63b81d4f.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/50/ -rw-r--r-- root/root 336304 2025-05-21 17:22 ./usr/lib/debug/.build-id/50/af66c39f9547580a22b3801c3704983468f32c.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/5c/ -rw-r--r-- root/root 237392 2025-05-21 17:22 ./usr/lib/debug/.build-id/5c/44056d2ebe7da40ea0948b74b0921feef29d5b.debug -rw-r--r-- root/root 505760 2025-05-21 17:22 ./usr/lib/debug/.build-id/5c/e3bb1e952d59ac13334f912fcea0633e71954e.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/5d/ -rw-r--r-- root/root 299512 2025-05-21 17:22 ./usr/lib/debug/.build-id/5d/9e0bf396240c27fef07a4992154abcc9c384fe.debug -rw-r--r-- root/root 285112 2025-05-21 17:22 ./usr/lib/debug/.build-id/5d/b5b40805488a41ceeaa1439d619706f199b64c.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/61/ -rw-r--r-- root/root 393616 2025-05-21 17:22 ./usr/lib/debug/.build-id/61/c2fc1cf51a454aac51f6b808ed6c172fac97de.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/66/ -rw-r--r-- root/root 368512 2025-05-21 17:22 ./usr/lib/debug/.build-id/66/4e0c0240ecbfac3cbe72e29bb1a292025716cd.debug -rw-r--r-- root/root 864576 2025-05-21 17:22 ./usr/lib/debug/.build-id/66/705f1d5cb577b418d58d9e22be64cc46d2f459.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/68/ -rw-r--r-- root/root 311648 2025-05-21 17:22 ./usr/lib/debug/.build-id/68/b51a470ec2e686f5d341ff5d5d33b85fbb7c75.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/6a/ -rw-r--r-- root/root 285920 2025-05-21 17:22 ./usr/lib/debug/.build-id/6a/250146008ce9c37af9353e7995283f1eb2f3ed.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/6b/ -rw-r--r-- root/root 348376 2025-05-21 17:22 ./usr/lib/debug/.build-id/6b/b3dfccc9e96084ebd0e711c6256d3c39073d97.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/72/ -rw-r--r-- root/root 607008 2025-05-21 17:22 ./usr/lib/debug/.build-id/72/3122d5d5d9112c091bdcee07fe400d4ae2cc5b.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/7f/ -rw-r--r-- root/root 386448 2025-05-21 17:22 ./usr/lib/debug/.build-id/7f/a29b71b684e86b30b318c22ef4a6cdd3e1a7cf.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/80/ -rw-r--r-- root/root 511080 2025-05-21 17:22 ./usr/lib/debug/.build-id/80/69205fd7e252a82a6a704b603c1ce2c0aa3ae4.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/83/ -rw-r--r-- root/root 412504 2025-05-21 17:22 ./usr/lib/debug/.build-id/83/7cde9788b155eba83063fd3122a716b48544db.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/87/ -rw-r--r-- root/root 5026584 2025-05-21 17:22 ./usr/lib/debug/.build-id/87/fc373835907b41ef8bd79f34014de4d4aea2b7.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/90/ -rw-r--r-- root/root 522816 2025-05-21 17:22 ./usr/lib/debug/.build-id/90/bd9ad78413f16306b730d9276277ba2e9d08a2.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/94/ -rw-r--r-- root/root 376968 2025-05-21 17:22 ./usr/lib/debug/.build-id/94/a8e5b0da2dbcdf0f5134193ad4486fcc6d719d.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/97/ -rw-r--r-- root/root 295144 2025-05-21 17:22 ./usr/lib/debug/.build-id/97/aa48e39ae078162ff74efe392587daee87fa36.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/9b/ -rw-r--r-- root/root 274736 2025-05-21 17:22 ./usr/lib/debug/.build-id/9b/a894405696bd9fde8720851deb8f2f3a86b4cf.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/9d/ -rw-r--r-- root/root 252488 2025-05-21 17:22 ./usr/lib/debug/.build-id/9d/550620f630942de88fd2732fa4bb09939ae7c0.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/9f/ -rw-r--r-- root/root 1639976 2025-05-21 17:22 ./usr/lib/debug/.build-id/9f/f839e65142ebbe5a5dd3f06271ea82e2cec275.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/a1/ -rw-r--r-- root/root 254576 2025-05-21 17:22 ./usr/lib/debug/.build-id/a1/48f5eb710e91c563640934a78de453ca76c1ad.debug -rw-r--r-- root/root 351792 2025-05-21 17:22 ./usr/lib/debug/.build-id/a1/95aec3d47478df90093b379237927b6d2da42b.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/a7/ -rw-r--r-- root/root 4071896 2025-05-21 17:22 ./usr/lib/debug/.build-id/a7/cf9422ebf7b5b603cc161b1e14b911e4657553.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/aa/ -rw-r--r-- root/root 389392 2025-05-21 17:22 ./usr/lib/debug/.build-id/aa/d1e8d888a93c8c2ef7f81a0e7f6cc6272fa487.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/ac/ -rw-r--r-- root/root 476200 2025-05-21 17:22 ./usr/lib/debug/.build-id/ac/cdedbf11fcf8f22747b826d2c561f98d8e4f68.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/ad/ -rw-r--r-- root/root 3801912 2025-05-21 17:22 ./usr/lib/debug/.build-id/ad/f95679934113cd2cfb20457ac19dd89e42a6be.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/b5/ -rw-r--r-- root/root 625200 2025-05-21 17:22 ./usr/lib/debug/.build-id/b5/2ef9fee4092ffbbeba6f52d7310a8f8d5faa37.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/b8/ -rw-r--r-- root/root 355160 2025-05-21 17:22 ./usr/lib/debug/.build-id/b8/702a1adcb8c00f52b13a26a640c2bc5c340b62.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/bb/ -rw-r--r-- root/root 314368 2025-05-21 17:22 ./usr/lib/debug/.build-id/bb/e618a3cb864baa2194c1449f900574a40dcddb.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/bc/ -rw-r--r-- root/root 256760 2025-05-21 17:22 ./usr/lib/debug/.build-id/bc/14a44e366879b6b2a6cdc1dd28cc7d835e850d.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/c1/ -rw-r--r-- root/root 269672 2025-05-21 17:22 ./usr/lib/debug/.build-id/c1/8a7d6be5e5f28fe2f6f719c618e3321f3107bf.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/c7/ -rw-r--r-- root/root 513664 2025-05-21 17:22 ./usr/lib/debug/.build-id/c7/03310117d3ddc5f6bca8bbe1a6e9749d7a45a0.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/ca/ -rw-r--r-- root/root 256168 2025-05-21 17:22 ./usr/lib/debug/.build-id/ca/08363cb71761a38ca5e50168e2036cfa0e066a.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/cc/ -rw-r--r-- root/root 5159816 2025-05-21 17:22 ./usr/lib/debug/.build-id/cc/b7736492457d573c2b185362134b1fb68b0354.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/d1/ -rw-r--r-- root/root 1802808 2025-05-21 17:22 ./usr/lib/debug/.build-id/d1/988af061eeb3e3857382bde510922c1f536c96.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/d5/ -rw-r--r-- root/root 494016 2025-05-21 17:22 ./usr/lib/debug/.build-id/d5/27d1e4ecc77589f121394daf5ace12f60151ff.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/d6/ -rw-r--r-- root/root 181880 2025-05-21 17:22 ./usr/lib/debug/.build-id/d6/14db1ab9e5b7a08d470eb8bdb1a99617308010.debug -rw-r--r-- root/root 286000 2025-05-21 17:22 ./usr/lib/debug/.build-id/d6/7ccd036138bed88f73acaae6243fb7be47f61d.debug -rw-r--r-- root/root 514008 2025-05-21 17:22 ./usr/lib/debug/.build-id/d6/a8ef5f5d1697320cfa5086bb72093b5af56b26.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/df/ -rw-r--r-- root/root 3493976 2025-05-21 17:22 ./usr/lib/debug/.build-id/df/71d9798b05d85b303b87a7377a4738675192bf.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/e2/ -rw-r--r-- root/root 1890960 2025-05-21 17:22 ./usr/lib/debug/.build-id/e2/e05aee6bd172599160d04618a9e3cd345af552.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/f0/ -rw-r--r-- root/root 217032 2025-05-21 17:22 ./usr/lib/debug/.build-id/f0/897efb66a5de9197502271a7c2e0934d5f8897.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/f6/ -rw-r--r-- root/root 303424 2025-05-21 17:22 ./usr/lib/debug/.build-id/f6/44bd00195ce38e560428d631717e6778ab683d.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/fa/ -rw-r--r-- root/root 351776 2025-05-21 17:22 ./usr/lib/debug/.build-id/fa/b3e5acc2aa8f1893b8b555c93a8464f8c7869a.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/fb/ -rw-r--r-- root/root 3887960 2025-05-21 17:22 ./usr/lib/debug/.build-id/fb/76b0d5bcb94a616f81c83e662a69ce74b634aa.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.build-id/ff/ -rw-r--r-- root/root 367920 2025-05-21 17:22 ./usr/lib/debug/.build-id/ff/2511303ea25b73d2bf1612241f2ec022616b25.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.dwz/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/lib/debug/.dwz/x86_64-linux-gnu/ -rw-r--r-- root/root 98536 2025-05-21 17:22 ./usr/lib/debug/.dwz/x86_64-linux-gnu/vlang.debug drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/ lrwxrwxrwx root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang-dbgsym -> vlang |
copyright of vlang-dbgsym_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb (click to toggle) | |
---|---|
WARNING: No copyright found, please check package manually. |
control file for vlang-doc_0.4.10+git20250521.7c50fb1+ds-1_all.deb (click to toggle) | |
---|---|
Package: | vlang-doc |
Source: | vlang |
Version: | 0.4.10+git20250521.7c50fb1+ds-1 |
Architecture: | all |
Maintainer: | Ahmad Khalifa <ahmad@khalifa.ws> |
Installed-Size: | 20902 |
Depends: | node-normalize.css |
Section: | doc |
Priority: | optional |
Multi-Arch: | foreign |
Homepage: | https://vlang.io/ |
Description: | V programming language (docs and examples) vlang is statically typed, compiled programming language similar to Go in its design. . V features support for several backend compilers (gcc, tinycc, golang), support for cross compiling to other targets, garbage collected or manual memory management (through libgc), and generics. . V can also be used for scripting through its .vsh file handling and also features a REPL interactive shell . This package provides the builtin module documentation and the example files. |
lintian 2.116.3+deb12u1 check for vlang-doc_0.4.10+git20250521.7c50fb1+ds-1_all.deb (click to toggle) | |
---|---|
contents of vlang-doc_0.4.10+git20250521.7c50fb1+ds-1_all.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-05-21 17:22 ./ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/docs/ -rw-r--r-- root/root 6083 2025-05-21 17:22 ./usr/share/doc/vlang/docs/android-chrome-192x192.png -rw-r--r-- root/root 18209 2025-05-21 17:22 ./usr/share/doc/vlang/docs/android-chrome-512x512.png -rw-r--r-- root/root 5707 2025-05-21 17:22 ./usr/share/doc/vlang/docs/apple-touch-icon.png -rw-r--r-- root/root 32028 2025-05-21 17:22 ./usr/share/doc/vlang/docs/arrays.diff.html -rw-r--r-- root/root 152058 2025-05-21 17:22 ./usr/share/doc/vlang/docs/arrays.html -rw-r--r-- root/root 31068 2025-05-21 17:22 ./usr/share/doc/vlang/docs/arrays.parallel.html -rw-r--r-- root/root 64899 2025-05-21 17:22 ./usr/share/doc/vlang/docs/benchmark.html -rw-r--r-- root/root 73477 2025-05-21 17:22 ./usr/share/doc/vlang/docs/bitfield.html -rw-r--r-- root/root 246 2025-05-21 17:22 ./usr/share/doc/vlang/docs/browserconfig.xml -rw-r--r-- root/root 43321 2025-05-21 17:22 ./usr/share/doc/vlang/docs/build.html -rw-r--r-- root/root 612968 2025-05-21 17:22 ./usr/share/doc/vlang/docs/builtin.html -rw-r--r-- root/root 38946 2025-05-21 17:22 ./usr/share/doc/vlang/docs/builtin.wchar.html -rw-r--r-- root/root 78473 2025-05-21 17:22 ./usr/share/doc/vlang/docs/cli.html -rw-r--r-- root/root 35086 2025-05-21 17:22 ./usr/share/doc/vlang/docs/clipboard.dummy.html -rw-r--r-- root/root 34304 2025-05-21 17:22 ./usr/share/doc/vlang/docs/clipboard.html -rw-r--r-- root/root 42379 2025-05-21 17:22 ./usr/share/doc/vlang/docs/clipboard.x11.html -rw-r--r-- root/root 29074 2025-05-21 17:22 ./usr/share/doc/vlang/docs/compress.deflate.html -rw-r--r-- root/root 41828 2025-05-21 17:22 ./usr/share/doc/vlang/docs/compress.gzip.html -rw-r--r-- root/root 27950 2025-05-21 17:22 ./usr/share/doc/vlang/docs/compress.html -rw-r--r-- root/root 54653 2025-05-21 17:22 ./usr/share/doc/vlang/docs/compress.szip.html -rw-r--r-- root/root 29021 2025-05-21 17:22 ./usr/share/doc/vlang/docs/compress.zlib.html -rw-r--r-- root/root 85944 2025-05-21 17:22 ./usr/share/doc/vlang/docs/compress.zstd.html -rw-r--r-- root/root 93415 2025-05-21 17:22 ./usr/share/doc/vlang/docs/context.html -rw-r--r-- root/root 38384 2025-05-21 17:22 ./usr/share/doc/vlang/docs/context.onecontext.html -rw-r--r-- root/root 25178 2025-05-21 17:22 ./usr/share/doc/vlang/docs/coroutines.html -rw-r--r-- root/root 31534 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.aes.html -rw-r--r-- root/root 32810 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.bcrypt.html -rw-r--r-- root/root 49988 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.blake2b.html -rw-r--r-- root/root 49987 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.blake2s.html -rw-r--r-- root/root 35805 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.blake3.html -rw-r--r-- root/root 124779 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.blowfish.html -rw-r--r-- root/root 53640 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.cipher.html -rw-r--r-- root/root 33686 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.des.html -rw-r--r-- root/root 60895 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.ecdsa.html -rw-r--r-- root/root 38912 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.ed25519.html -rw-r--r-- root/root 99724 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.ed25519.internal.edwards25519.html -rw-r--r-- root/root 27291 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.hmac.html -rw-r--r-- root/root 41308 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.html -rw-r--r-- root/root 35120 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.internal.subtle.html -rw-r--r-- root/root 35425 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.md5.html -rw-r--r-- root/root 25755 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.pbkdf2.html -rw-r--r-- root/root 36827 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.pem.html -rw-r--r-- root/root 30045 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.rand.html -rw-r--r-- root/root 29129 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.rc4.html -rw-r--r-- root/root 33226 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.ripemd160.html -rw-r--r-- root/root 27827 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.scrypt.html -rw-r--r-- root/root 35038 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.sha1.html -rw-r--r-- root/root 41027 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.sha256.html -rw-r--r-- root/root 53665 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.sha3.html -rw-r--r-- root/root 46105 2025-05-21 17:22 ./usr/share/doc/vlang/docs/crypto.sha512.html -rw-r--r-- root/root 133 2025-05-21 17:22 ./usr/share/doc/vlang/docs/dark-mode.js -rw-r--r-- root/root 39939 2025-05-21 17:22 ./usr/share/doc/vlang/docs/datatypes.fsm.html -rw-r--r-- root/root 189731 2025-05-21 17:22 ./usr/share/doc/vlang/docs/datatypes.html -rw-r--r-- root/root 39377 2025-05-21 17:22 ./usr/share/doc/vlang/docs/db.mssql.html -rw-r--r-- root/root 180888 2025-05-21 17:22 ./usr/share/doc/vlang/docs/db.mysql.html -rw-r--r-- root/root 100323 2025-05-21 17:22 ./usr/share/doc/vlang/docs/db.pg.html -rw-r--r-- root/root 127280 2025-05-21 17:22 ./usr/share/doc/vlang/docs/db.sqlite.html -rw-r--r-- root/root 36116 2025-05-21 17:22 ./usr/share/doc/vlang/docs/dl.html -rw-r--r-- root/root 41239 2025-05-21 17:22 ./usr/share/doc/vlang/docs/dl.loader.html -rw-r--r-- root/root 52932 2025-05-21 17:22 ./usr/share/doc/vlang/docs/dlmalloc.html -rw-r--r-- root/root 17971 2025-05-21 17:22 ./usr/share/doc/vlang/docs/doc.css -rw-r--r-- root/root 10895 2025-05-21 17:22 ./usr/share/doc/vlang/docs/doc.js -rw-r--r-- root/root 45801 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.base32.html -rw-r--r-- root/root 43502 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.base58.html -rw-r--r-- root/root 39156 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.base64.html -rw-r--r-- root/root 109131 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.binary.html -rw-r--r-- root/root 77604 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.csv.html -rw-r--r-- root/root 26519 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.hex.html -rw-r--r-- root/root 29209 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.html.html -rw-r--r-- root/root 33284 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.iconv.html -rw-r--r-- root/root 34052 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.leb128.html -rw-r--r-- root/root 39548 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.txtar.html -rw-r--r-- root/root 27684 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.utf8.east_asian.html -rw-r--r-- root/root 41865 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.utf8.html -rw-r--r-- root/root 26443 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.utf8.validate.html -rw-r--r-- root/root 64857 2025-05-21 17:22 ./usr/share/doc/vlang/docs/encoding.xml.html -rw-r--r-- root/root 57070 2025-05-21 17:22 ./usr/share/doc/vlang/docs/eventbus.html -rw-r--r-- root/root 853 2025-05-21 17:22 ./usr/share/doc/vlang/docs/favicon-16x16.png -rw-r--r-- root/root 1305 2025-05-21 17:22 ./usr/share/doc/vlang/docs/favicon-32x32.png -rw-r--r-- root/root 2068 2025-05-21 17:22 ./usr/share/doc/vlang/docs/favicon.ico.gz -rw-r--r-- root/root 124785 2025-05-21 17:22 ./usr/share/doc/vlang/docs/flag.html -rw-r--r-- root/root 78455 2025-05-21 17:22 ./usr/share/doc/vlang/docs/fontstash.html -rw-r--r-- root/root 223345 2025-05-21 17:22 ./usr/share/doc/vlang/docs/gg.html -rw-r--r-- root/root 94244 2025-05-21 17:22 ./usr/share/doc/vlang/docs/gg.m4.html -rw-r--r-- root/root 62863 2025-05-21 17:22 ./usr/share/doc/vlang/docs/gx.html -rw-r--r-- root/root 28765 2025-05-21 17:22 ./usr/share/doc/vlang/docs/hash.crc32.html -rw-r--r-- root/root 33473 2025-05-21 17:22 ./usr/share/doc/vlang/docs/hash.fnv1a.html -rw-r--r-- root/root 32664 2025-05-21 17:22 ./usr/share/doc/vlang/docs/hash.html -rw-r--r-- root/root 24943 2025-05-21 17:22 ./usr/share/doc/vlang/docs/index.html -rw-r--r-- root/root 69559 2025-05-21 17:22 ./usr/share/doc/vlang/docs/io.html -rw-r--r-- root/root 51064 2025-05-21 17:22 ./usr/share/doc/vlang/docs/io.string_reader.html -rw-r--r-- root/root 29100 2025-05-21 17:22 ./usr/share/doc/vlang/docs/io.util.html -rw-r--r-- root/root 46265 2025-05-21 17:22 ./usr/share/doc/vlang/docs/json.cjson.html -rw-r--r-- root/root 33931 2025-05-21 17:22 ./usr/share/doc/vlang/docs/json.html -rw-r--r-- root/root 96506 2025-05-21 17:22 ./usr/share/doc/vlang/docs/log.html -rw-r--r-- root/root 28576 2025-05-21 17:22 ./usr/share/doc/vlang/docs/main.html -rw-r--r-- root/root 38499 2025-05-21 17:22 ./usr/share/doc/vlang/docs/maps.html -rw-r--r-- root/root 90281 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.big.html -rw-r--r-- root/root 75575 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.bits.html -rw-r--r-- root/root 77548 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.complex.html -rw-r--r-- root/root 59545 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.easing.html -rw-r--r-- root/root 40592 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.fractions.html -rw-r--r-- root/root 175463 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.html -rw-r--r-- root/root 37393 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.internal.html -rw-r--r-- root/root 71912 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.stats.html -rw-r--r-- root/root 136239 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.unsigned.html -rw-r--r-- root/root 243881 2025-05-21 17:22 ./usr/share/doc/vlang/docs/math.vec.html -rw-r--r-- root/root 4512 2025-05-21 17:22 ./usr/share/doc/vlang/docs/mstile-144x144.png -rw-r--r-- root/root 4360 2025-05-21 17:22 ./usr/share/doc/vlang/docs/mstile-150x150.png -rw-r--r-- root/root 4927 2025-05-21 17:22 ./usr/share/doc/vlang/docs/mstile-310x150.png -rw-r--r-- root/root 10195 2025-05-21 17:22 ./usr/share/doc/vlang/docs/mstile-310x310.png -rw-r--r-- root/root 3093 2025-05-21 17:22 ./usr/share/doc/vlang/docs/mstile-70x70.png -rw-r--r-- root/root 39154 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.conv.html -rw-r--r-- root/root 33294 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.ftp.html -rw-r--r-- root/root 179779 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.html -rw-r--r-- root/root 64489 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.html.html -rw-r--r-- root/root 25059 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.http.chunked.html -rw-r--r-- root/root 30962 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.http.file.html -rw-r--r-- root/root 201427 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.http.html -rw-r--r-- root/root 30608 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.http.mime.html -rw-r--r-- root/root 67028 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.mbedtls.html -rw-r--r-- root/root 47708 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.openssl.html -rw-r--r-- root/root 34404 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.smtp.html -rw-r--r-- root/root 30988 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.socks.html -rw-r--r-- root/root 30433 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.ssl.html -rw-r--r-- root/root 75077 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.unix.html -rw-r--r-- root/root 66652 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.urllib.html -rw-r--r-- root/root 99867 2025-05-21 17:22 ./usr/share/doc/vlang/docs/net.websocket.html -rw-r--r-- root/root 115273 2025-05-21 17:22 ./usr/share/doc/vlang/docs/orm.html -rw-r--r-- root/root 28947 2025-05-21 17:22 ./usr/share/doc/vlang/docs/os.asset.html -rw-r--r-- root/root 32146 2025-05-21 17:22 ./usr/share/doc/vlang/docs/os.cmdline.html -rw-r--r-- root/root 31467 2025-05-21 17:22 ./usr/share/doc/vlang/docs/os.filelock.html -rw-r--r-- root/root 27482 2025-05-21 17:22 ./usr/share/doc/vlang/docs/os.font.html -rw-r--r-- root/root 348132 2025-05-21 17:22 ./usr/share/doc/vlang/docs/os.html -rw-r--r-- root/root 31644 2025-05-21 17:22 ./usr/share/doc/vlang/docs/os.notify.html -rw-r--r-- root/root 48744 2025-05-21 17:22 ./usr/share/doc/vlang/docs/picoev.html -rw-r--r-- root/root 50613 2025-05-21 17:22 ./usr/share/doc/vlang/docs/picohttpparser.html -rw-r--r-- root/root 25124 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.buffer.html -rw-r--r-- root/root 30218 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.config.html -rw-r--r-- root/root 33780 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.cuid2.html -rw-r--r-- root/root 152914 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.html -rw-r--r-- root/root 34497 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.mt19937.html -rw-r--r-- root/root 33923 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.musl.html -rw-r--r-- root/root 34916 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.pcg32.html -rw-r--r-- root/root 27241 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.seed.html -rw-r--r-- root/root 34349 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.splitmix64.html -rw-r--r-- root/root 35861 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.sys.html -rw-r--r-- root/root 33992 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.wyrand.html -rw-r--r-- root/root 34906 2025-05-21 17:22 ./usr/share/doc/vlang/docs/rand.xoroshiro128pp.html -rw-r--r-- root/root 40834 2025-05-21 17:22 ./usr/share/doc/vlang/docs/readline.html -rw-r--r-- root/root 149693 2025-05-21 17:22 ./usr/share/doc/vlang/docs/regex.html -rw-r--r-- root/root 32904 2025-05-21 17:22 ./usr/share/doc/vlang/docs/runtime.html -rw-r--r-- root/root 2398 2025-05-21 17:22 ./usr/share/doc/vlang/docs/safari-pinned-tab.svg -rw-r--r-- root/root 877360 2025-05-21 17:22 ./usr/share/doc/vlang/docs/search_index.js -rw-r--r-- root/root 43641 2025-05-21 17:22 ./usr/share/doc/vlang/docs/semver.html -rw-r--r-- root/root 327 2025-05-21 17:22 ./usr/share/doc/vlang/docs/site.webmanifest -rw-r--r-- root/root 55344 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sokol.audio.html -rw-r--r-- root/root 331490 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sokol.gfx.html -rw-r--r-- root/root 31869 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sokol.memory.html -rw-r--r-- root/root 136944 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sokol.sapp.html -rw-r--r-- root/root 31889 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sokol.sfons.html -rw-r--r-- root/root 132517 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sokol.sgl.html -rw-r--r-- root/root 45451 2025-05-21 17:22 ./usr/share/doc/vlang/docs/stbi.html -rw-r--r-- root/root 99558 2025-05-21 17:22 ./usr/share/doc/vlang/docs/strconv.html -rw-r--r-- root/root 82216 2025-05-21 17:22 ./usr/share/doc/vlang/docs/strings.html -rw-r--r-- root/root 48147 2025-05-21 17:22 ./usr/share/doc/vlang/docs/strings.textscanner.html -rw-r--r-- root/root 97951 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sync.html -rw-r--r-- root/root 50538 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sync.pool.html -rw-r--r-- root/root 33024 2025-05-21 17:22 ./usr/share/doc/vlang/docs/sync.stdatomic.html -rw-r--r-- root/root 151611 2025-05-21 17:22 ./usr/share/doc/vlang/docs/term.html -rw-r--r-- root/root 34578 2025-05-21 17:22 ./usr/share/doc/vlang/docs/term.termios.html -rw-r--r-- root/root 88654 2025-05-21 17:22 ./usr/share/doc/vlang/docs/term.ui.html -rw-r--r-- root/root 174572 2025-05-21 17:22 ./usr/share/doc/vlang/docs/time.html -rw-r--r-- root/root 25008 2025-05-21 17:22 ./usr/share/doc/vlang/docs/time.misc.html -rw-r--r-- root/root 59129 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.ast.html -rw-r--r-- root/root 32698 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.ast.walker.html -rw-r--r-- root/root 30218 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.checker.html -rw-r--r-- root/root 28312 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.decoder.html -rw-r--r-- root/root 89402 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.html -rw-r--r-- root/root 26577 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.input.html -rw-r--r-- root/root 76155 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.parser.html -rw-r--r-- root/root 48136 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.scanner.html -rw-r--r-- root/root 26047 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.to.html -rw-r--r-- root/root 30514 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.token.html -rw-r--r-- root/root 28695 2025-05-21 17:22 ./usr/share/doc/vlang/docs/toml.util.html -rw-r--r-- root/root 741414 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.ast.html -rw-r--r-- root/root 30111 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.ast.walker.html -rw-r--r-- root/root 31114 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.build_constraint.html -rw-r--r-- root/root 28398 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.builder.cbuilder.html -rw-r--r-- root/root 27303 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.builder.golangbuilder.html -rw-r--r-- root/root 76513 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.builder.html -rw-r--r-- root/root 26013 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.builder.interpreterbuilder.html -rw-r--r-- root/root 28414 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.builder.jsbuilder.html -rw-r--r-- root/root 27303 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.builder.nativebuilder.html -rw-r--r-- root/root 27259 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.builder.wasmbuilder.html -rw-r--r-- root/root 25478 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.callgraph.html -rw-r--r-- root/root 38539 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.cflag.html -rw-r--r-- root/root 62866 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.checker.html -rw-r--r-- root/root 37750 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.debug.html -rw-r--r-- root/root 42486 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.depgraph.html -rw-r--r-- root/root 36847 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.dotgraph.html -rw-r--r-- root/root 37223 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.embed_file.html -rw-r--r-- root/root 28933 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.errors.html -rw-r--r-- root/root 57739 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.eval.html -rw-r--r-- root/root 149140 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.fmt.html -rw-r--r-- root/root 107576 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.c.html -rw-r--r-- root/root 134784 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.golang.html -rw-r--r-- root/root 45083 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.js.html -rw-r--r-- root/root 36570 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.js.sourcemap.html -rw-r--r-- root/root 26710 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.js.sourcemap.vlq.html -rw-r--r-- root/root 109919 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.native.html -rw-r--r-- root/root 124626 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.wasm.html -rw-r--r-- root/root 38177 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.gen.wasm.serialise.html -rw-r--r-- root/root 26201 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.help.html -rw-r--r-- root/root 28478 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.live.executable.html -rw-r--r-- root/root 33545 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.live.html -rw-r--r-- root/root 25086 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.live.sharedlib.html -rw-r--r-- root/root 53775 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.markused.html -rw-r--r-- root/root 27237 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.mathutil.html -rw-r--r-- root/root 52164 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.parser.html -rw-r--r-- root/root 40485 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.pkgconfig.html -rw-r--r-- root/root 109050 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.pref.html -rw-r--r-- root/root 25825 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.profile.html -rw-r--r-- root/root 72939 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.reflection.html -rw-r--r-- root/root 56970 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.scanner.html -rw-r--r-- root/root 88037 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.token.html -rw-r--r-- root/root 27132 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.trace_calls.html -rw-r--r-- root/root 57350 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.transformer.html -rw-r--r-- root/root 71799 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.type_resolver.html -rw-r--r-- root/root 37236 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.util.diff.html -rw-r--r-- root/root 135086 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.util.html -rw-r--r-- root/root 26865 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.util.recompilation.html -rw-r--r-- root/root 28670 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.util.version.html -rw-r--r-- root/root 26774 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.util.vflags.html -rw-r--r-- root/root 26655 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.util.vtest.html -rw-r--r-- root/root 42171 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.vcache.html -rw-r--r-- root/root 37948 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v.vmod.html -rw-r--r-- root/root 142152 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.ast.html -rw-r--r-- root/root 26293 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.builder.html -rw-r--r-- root/root 34474 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.errors.html -rw-r--r-- root/root 28132 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.gen.v.html -rw-r--r-- root/root 31317 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.parser.html -rw-r--r-- root/root 30571 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.pref.html -rw-r--r-- root/root 30672 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.scanner.html -rw-r--r-- root/root 58479 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.token.html -rw-r--r-- root/root 47778 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.types.html -rw-r--r-- root/root 37670 2025-05-21 17:22 ./usr/share/doc/vlang/docs/v2.util.html -rw-r--r-- root/root 53728 2025-05-21 17:22 ./usr/share/doc/vlang/docs/veb.assets.html -rw-r--r-- root/root 50126 2025-05-21 17:22 ./usr/share/doc/vlang/docs/veb.auth.html -rw-r--r-- root/root 55881 2025-05-21 17:22 ./usr/share/doc/vlang/docs/veb.csrf.html -rw-r--r-- root/root 224335 2025-05-21 17:22 ./usr/share/doc/vlang/docs/veb.html -rw-r--r-- root/root 28599 2025-05-21 17:22 ./usr/share/doc/vlang/docs/veb.oauth.html -rw-r--r-- root/root 47825 2025-05-21 17:22 ./usr/share/doc/vlang/docs/veb.request_id.html -rw-r--r-- root/root 38641 2025-05-21 17:22 ./usr/share/doc/vlang/docs/veb.sse.html -rw-r--r-- root/root 39903 2025-05-21 17:22 ./usr/share/doc/vlang/docs/vweb.assets.html -rw-r--r-- root/root 57326 2025-05-21 17:22 ./usr/share/doc/vlang/docs/vweb.csrf.html -rw-r--r-- root/root 224697 2025-05-21 17:22 ./usr/share/doc/vlang/docs/vweb.html -rw-r--r-- root/root 31849 2025-05-21 17:22 ./usr/share/doc/vlang/docs/vweb.sse.html -rw-r--r-- root/root 187068 2025-05-21 17:22 ./usr/share/doc/vlang/docs/wasm.html -rw-r--r-- root/root 31300 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.benchmark.html -rw-r--r-- root/root 48103 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.crypto.chacha20.html -rw-r--r-- root/root 45654 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.crypto.chacha20poly1305.html -rw-r--r-- root/root 37464 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.crypto.poly1305.html -rw-r--r-- root/root 54382 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.crypto.slhdsa.html -rw-r--r-- root/root 31399 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.crypto.sm4.html -rw-r--r-- root/root 331468 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.encoding.asn1.html -rw-r--r-- root/root 24836 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.html -rw-r--r-- root/root 31140 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.json2.decoder2.html -rw-r--r-- root/root 95732 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.json2.html -rw-r--r-- root/root 29806 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.json2.strict.html -rw-r--r-- root/root 101078 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.sessions.html -rw-r--r-- root/root 26381 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.sessions.vweb2_middleware.html -rw-r--r-- root/root 72280 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.templating.dtm.html -rw-r--r-- root/root 134242 2025-05-21 17:22 ./usr/share/doc/vlang/docs/x.ttf.html drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/1brc/ -rw-r--r-- root/root 1389 2025-05-21 08:37 ./usr/share/doc/vlang/examples/1brc/README.md drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/1brc/make-samples/ -rw-r--r-- root/root 5707 2025-05-21 08:37 ./usr/share/doc/vlang/examples/1brc/make-samples/cities.txt -rw-r--r-- root/root 1134 2025-05-21 08:37 ./usr/share/doc/vlang/examples/1brc/make-samples/main.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/1brc/solution/ -rw-r--r-- root/root 4481 2025-05-21 08:37 ./usr/share/doc/vlang/examples/1brc/solution/main.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/2048/ -rw-r--r-- root/root 23821 2025-05-21 08:37 ./usr/share/doc/vlang/examples/2048/2048.v -rw-r--r-- root/root 1071 2025-05-21 08:37 ./usr/share/doc/vlang/examples/2048/LICENSE -rw-r--r-- root/root 1578 2025-05-21 08:37 ./usr/share/doc/vlang/examples/2048/README.md -rw-r--r-- root/root 19426 2025-05-21 08:37 ./usr/share/doc/vlang/examples/2048/demo.png -rw-r--r-- root/root 1022 2025-05-21 08:37 ./usr/share/doc/vlang/examples/2048/index.html -rw-r--r-- root/root 163 2025-05-21 08:37 ./usr/share/doc/vlang/examples/2048/v.mod -rw-r--r-- root/root 276 2025-05-21 08:37 ./usr/share/doc/vlang/examples/asm.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/assets/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/fonts/ -rw-r--r-- root/root 21292 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/fonts/Graduate-Regular.ttf -rw-r--r-- root/root 23188 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/fonts/Imprima-Regular.ttf -rw-r--r-- root/root 11358 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/fonts/LICENSE -rw-r--r-- root/root 4397 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/fonts/OFL.txt -rw-r--r-- root/root 114624 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/fonts/RobotoMono-Regular.ttf -rw-r--r-- root/root 4328 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/logo.png -rw-r--r-- root/root 4025 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/v.six -rw-r--r-- root/root 671 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/v.svg -rw-r--r-- root/root 610 2025-05-21 08:37 ./usr/share/doc/vlang/examples/assets/v_16x16.svg drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/asteroids/ -rw-r--r-- root/root 663 2025-05-21 08:37 ./usr/share/doc/vlang/examples/asteroids/asteroids.html -rw-r--r-- root/root 9011 2025-05-21 08:37 ./usr/share/doc/vlang/examples/asteroids/asteroids.v -rw-r--r-- root/root 2540 2025-05-21 08:37 ./usr/share/doc/vlang/examples/binary_search_tree.v -rw-r--r-- root/root 4464 2025-05-21 08:37 ./usr/share/doc/vlang/examples/brainvuck.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/breakout/ -rw-r--r-- root/root 655 2025-05-21 08:37 ./usr/share/doc/vlang/examples/breakout/breakout.html -rw-r--r-- root/root 8203 2025-05-21 08:37 ./usr/share/doc/vlang/examples/breakout/breakout.v -rw-r--r-- root/root 452 2025-05-21 08:37 ./usr/share/doc/vlang/examples/bst_map.v -rw-r--r-- root/root 488 2025-05-21 08:37 ./usr/share/doc/vlang/examples/buf_reader.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/build_system/ -rwxr-xr-x root/root 1824 2025-05-21 08:37 ./usr/share/doc/vlang/examples/build_system/build.vsh -rw-r--r-- root/root 59 2025-05-21 08:37 ./usr/share/doc/vlang/examples/build_system/main.v -rw-r--r-- root/root 3805 2025-05-21 08:37 ./usr/share/doc/vlang/examples/c_interop_wkhtmltopdf.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_c_from_v/ -rw-r--r-- root/root 108 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_c_from_v/main.c.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/call_v_from_c/ -rw-r--r-- root/root 2035 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_c/README.md -rw-r--r-- root/root 294 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_c/test_math.c -rw-r--r-- root/root 76 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_c/test_print.c -rw-r--r-- root/root 343 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_c/v_test_math.v -rw-r--r-- root/root 219 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_c/v_test_print.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_python/ -rw-r--r-- root/root 282 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_python/README.md -rw-r--r-- root/root 942 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_python/test.py -rw-r--r-- root/root 513 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_python/test.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_ruby/ -rw-r--r-- root/root 275 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_ruby/README.md -rw-r--r-- root/root 976 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_ruby/test.rb -rw-r--r-- root/root 304 2025-05-21 08:37 ./usr/share/doc/vlang/examples/call_v_from_ruby/test.v -rw-r--r-- root/root 1887 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cli.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/clock/ -rw-r--r-- root/root 4320 2025-05-21 08:37 ./usr/share/doc/vlang/examples/clock/clock.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/compiletime/ -rw-r--r-- root/root 1405 2025-05-21 08:37 ./usr/share/doc/vlang/examples/compiletime/d_compile_value.v -rw-r--r-- root/root 897 2025-05-21 08:37 ./usr/share/doc/vlang/examples/compiletime/methods.v -rw-r--r-- root/root 1054 2025-05-21 08:37 ./usr/share/doc/vlang/examples/compiletime/reflection.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/concurrency/ -rw-r--r-- root/root 509 2025-05-21 08:37 ./usr/share/doc/vlang/examples/concurrency/concurrency.v -rw-r--r-- root/root 666 2025-05-21 08:37 ./usr/share/doc/vlang/examples/concurrency/concurrency_http.v -rw-r--r-- root/root 239 2025-05-21 08:37 ./usr/share/doc/vlang/examples/concurrency/concurrency_returns.v -rw-r--r-- root/root 251 2025-05-21 08:37 ./usr/share/doc/vlang/examples/control_thread_stack_size.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/coroutines/ -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/coroutines/.skip_should_compile_all -rw-r--r-- root/root 732 2025-05-21 08:37 ./usr/share/doc/vlang/examples/coroutines/coroutines_bench.v -rw-r--r-- root/root 1298 2025-05-21 08:37 ./usr/share/doc/vlang/examples/coroutines/simple_coroutines.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/ -rw-r--r-- root/root 2262 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/README.md -rw-r--r-- root/root 1475 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/mmx.v -rw-r--r-- root/root 1338 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/sse.v -rw-r--r-- root/root 1666 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/sse2.v -rw-r--r-- root/root 1082 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/sse3.v -rw-r--r-- root/root 1147 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/sse4_1.v -rw-r--r-- root/root 1006 2025-05-21 08:37 ./usr/share/doc/vlang/examples/cpu_features/SSE_and_MMX_Extensions/ssse3.v -rw-r--r-- root/root 328 2025-05-21 08:37 ./usr/share/doc/vlang/examples/custom_error.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/database/ -rw-r--r-- root/root 302 2025-05-21 08:37 ./usr/share/doc/vlang/examples/database/mysql.v -rw-r--r-- root/root 5993 2025-05-21 08:37 ./usr/share/doc/vlang/examples/database/orm.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/database/psql/ -rw-r--r-- root/root 1595 2025-05-21 08:37 ./usr/share/doc/vlang/examples/database/psql/customer.v -rw-r--r-- root/root 2819 2025-05-21 08:37 ./usr/share/doc/vlang/examples/database/psql/mydb.sql -rw-r--r-- root/root 586 2025-05-21 08:37 ./usr/share/doc/vlang/examples/database/sqlite.v -rw-r--r-- root/root 703 2025-05-21 08:37 ./usr/share/doc/vlang/examples/diff.v -rw-r--r-- root/root 140 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dump_factorial.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loader/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loader/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loader/modules/library/ -rw-r--r-- root/root 769 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loader/modules/library/library.v -rw-r--r-- root/root 851 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loader/use_shared_library.v -rw-r--r-- root/root 2024 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loader/use_test.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loading/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loading/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loading/modules/library/ -rw-r--r-- root/root 712 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loading/modules/library/library.v -rw-r--r-- root/root 563 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loading/use_dl_module.v -rw-r--r-- root/root 1401 2025-05-21 08:37 ./usr/share/doc/vlang/examples/dynamic_library_loading/use_library_test.v -rw-r--r-- root/root 328 2025-05-21 08:37 ./usr/share/doc/vlang/examples/errors.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/eventbus/ -rw-r--r-- root/root 725 2025-05-21 08:37 ./usr/share/doc/vlang/examples/eventbus/eventbus.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/eventbus/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/eventbus/modules/some_module/ -rw-r--r-- root/root 609 2025-05-21 08:37 ./usr/share/doc/vlang/examples/eventbus/modules/some_module/some_module.v -rw-r--r-- root/root 227 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fetch.v -rw-r--r-- root/root 837 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fetch_ip.v -rw-r--r-- root/root 626 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fibonacci.v -rw-r--r-- root/root 263 2025-05-21 08:37 ./usr/share/doc/vlang/examples/file_list.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/ -rw-r--r-- root/root 1956 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/fireworks.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/modules/objects/ -rw-r--r-- root/root 140 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/modules/objects/color.v -rw-r--r-- root/root 407 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/modules/objects/constants.v -rw-r--r-- root/root 780 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/modules/objects/particle.v -rw-r--r-- root/root 1314 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/modules/objects/rocket.v -rw-r--r-- root/root 455 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fireworks/modules/objects/vector.v -rw-r--r-- root/root 144 2025-05-21 08:37 ./usr/share/doc/vlang/examples/fizz_buzz.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flag/ -rw-r--r-- root/root 2664 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flag/animated_help_text.v -rw-r--r-- root/root 5378 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flag/flag_layout_editor.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/flappylearning/ -rw-r--r-- root/root 1062 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/LICENSE -rw-r--r-- root/root 205 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/README.md drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/assets/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/flappylearning/assets/img/ -rw-r--r-- root/root 3175 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/assets/img/background.png -rw-r--r-- root/root 382 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/assets/img/bird.png -rw-r--r-- root/root 17036 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/assets/img/flappy.png -rw-r--r-- root/root 1241 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/assets/img/pipebottom.png -rw-r--r-- root/root 1191 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/assets/img/pipetop.png -rw-r--r-- root/root 6235 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/game.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/modules/neuroevolution/ -rw-r--r-- root/root 5395 2025-05-21 08:37 ./usr/share/doc/vlang/examples/flappylearning/modules/neuroevolution/neuronevolution.v -rw-r--r-- root/root 732 2025-05-21 08:37 ./usr/share/doc/vlang/examples/function_types.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/game_of_life/ -rw-r--r-- root/root 219 2025-05-21 08:37 ./usr/share/doc/vlang/examples/game_of_life/README.md -rw-r--r-- root/root 1428 2025-05-21 08:37 ./usr/share/doc/vlang/examples/game_of_life/life.v -rw-r--r-- root/root 954 2025-05-21 08:37 ./usr/share/doc/vlang/examples/game_of_life/life_gg.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/game_of_life/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/game_of_life/modules/automaton/ -rw-r--r-- root/root 3447 2025-05-21 08:37 ./usr/share/doc/vlang/examples/game_of_life/modules/automaton/automaton.v -rw-r--r-- root/root 198 2025-05-21 08:37 ./usr/share/doc/vlang/examples/get_raw_line.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/get_weather/ -rw-r--r-- root/root 727 2025-05-21 08:37 ./usr/share/doc/vlang/examples/get_weather/README.md -rw-r--r-- root/root 1338 2025-05-21 08:37 ./usr/share/doc/vlang/examples/get_weather/get_weather.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/ -rw-r--r-- root/root 2777 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/additive.v -rw-r--r-- root/root 4572 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/arcs_and_slices.v -rw-r--r-- root/root 852 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/bezier.v -rw-r--r-- root/root 1179 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/bezier_anim.v -rw-r--r-- root/root 1762 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/bouncing_balls.v -rw-r--r-- root/root 393 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/cursor.v -rw-r--r-- root/root 4488 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/digital_rain.v -rw-r--r-- root/root 1234 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/drag_n_drop.v -rw-r--r-- root/root 986 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/draw_pixels.v -rw-r--r-- root/root 736 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/draw_unicode_text_with_gg.v -rw-r--r-- root/root 2966 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/easing_animation.v -rw-r--r-- root/root 3169 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/fire.v -rw-r--r-- root/root 6567 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/mandelbrot.v -rw-r--r-- root/root 1688 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/many_thousands_of_circles.v -rw-r--r-- root/root 1022 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/many_thousands_of_circles_overriding_max_vertices.v -rw-r--r-- root/root 4765 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/minesweeper.v -rw-r--r-- root/root 320 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/minimal.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/gg/path_finding_algorithm_visualizer/ -rw-r--r-- root/root 1068 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/path_finding_algorithm_visualizer/LICENSE -rw-r--r-- root/root 734 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/path_finding_algorithm_visualizer/README.md -rw-r--r-- root/root 11672 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/path_finding_algorithm_visualizer/aStar.v -rw-r--r-- root/root 37961 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/path_finding_algorithm_visualizer/screenshot.png -rw-r--r-- root/root 544 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/polygons.v -rw-r--r-- root/root 1328 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/random.v -rw-r--r-- root/root 3213 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/raven_text_rendering.v -rw-r--r-- root/root 7536 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/raycaster.v -rw-r--r-- root/root 880 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/rectangles.v -rw-r--r-- root/root 1869 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/rotating_textured_quad.v -rw-r--r-- root/root 608 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/sample_count.v -rw-r--r-- root/root 1812 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/spirograph.v -rw-r--r-- root/root 3294 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/stars.v -rw-r--r-- root/root 2166 2025-05-21 08:37 ./usr/share/doc/vlang/examples/gg/worker_thread.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/ -rw-r--r-- root/root 4402 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/bellman-ford.v -rw-r--r-- root/root 991 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/bfs.v -rw-r--r-- root/root 3025 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/bfs2.v -rw-r--r-- root/root 1172 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/bfs3.v -rw-r--r-- root/root 3321 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/dfs.v -rw-r--r-- root/root 2053 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/dfs2.v -rw-r--r-- root/root 6355 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/dijkstra.v -rw-r--r-- root/root 6139 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/minimal_spann_tree_prim.v -rw-r--r-- root/root 2774 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/topological_sorting_dfs.v -rw-r--r-- root/root 4172 2025-05-21 08:37 ./usr/share/doc/vlang/examples/graphs/topological_sorting_greedy.v -rw-r--r-- root/root 311 2025-05-21 08:37 ./usr/share/doc/vlang/examples/hanoi.v -rw-r--r-- root/root 25 2025-05-21 08:37 ./usr/share/doc/vlang/examples/hello_world.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/hot_reload/ -rw-r--r-- root/root 1693 2025-05-21 08:37 ./usr/share/doc/vlang/examples/hot_reload/bounce.v -rw-r--r-- root/root 1702 2025-05-21 08:37 ./usr/share/doc/vlang/examples/hot_reload/graph.v -rw-r--r-- root/root 810 2025-05-21 08:37 ./usr/share/doc/vlang/examples/hot_reload/message.v -rw-r--r-- root/root 4193 2025-05-21 08:37 ./usr/share/doc/vlang/examples/hot_reload/tunnel.v -rw-r--r-- root/root 570 2025-05-21 08:37 ./usr/share/doc/vlang/examples/http_server.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_cube/ -rw-r--r-- root/root 3194 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_cube/README.md -rw-r--r-- root/root 8579 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_cube/cube.js.v -rw-r--r-- root/root 117 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_cube/index.html drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw/ -rw-r--r-- root/root 3269 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw/README.md -rw-r--r-- root/root 2101 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw/draw.js.v -rw-r--r-- root/root 288 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw/index.html drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/ -rw-r--r-- root/root 2716 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/README.md drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/ -rw-r--r-- root/root 82 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/Dockerfile -rw-r--r-- root/root 2335 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/README.md -rw-r--r-- root/root 3395 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/draw.js.v -rw-r--r-- root/root 309868 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/favicon.ico -rw-r--r-- root/root 7339 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/main.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/templates/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/templates/controller/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/templates/controller/get/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/templates/controller/get/all/ -rw-r--r-- root/root 3316 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/chart/templates/controller/get/all/task.html drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/ -rw-r--r-- root/root 563 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/package.json drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/src/ -rw-r--r-- root/root 3576 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/src/index.ts -rw-r--r-- root/root 2390 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/src/server.js -rw-r--r-- root/root 1204 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/tsconfig.json drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/v_vweb_orm/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/v_vweb_orm/src/ -rw-r--r-- root/root 2197 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_dom_draw_benchmark_chart/v_vweb_orm/src/main.v -rw-r--r-- root/root 72 2025-05-21 08:37 ./usr/share/doc/vlang/examples/js_hello_world.v -rw-r--r-- root/root 749 2025-05-21 08:37 ./usr/share/doc/vlang/examples/json.v -rw-r--r-- root/root 821 2025-05-21 08:37 ./usr/share/doc/vlang/examples/lander.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/linear_regression/ -rw-r--r-- root/root 1992 2025-05-21 08:37 ./usr/share/doc/vlang/examples/linear_regression/simple_linear_regression.v -rw-r--r-- root/root 244 2025-05-21 08:37 ./usr/share/doc/vlang/examples/links_scraper.v -rw-r--r-- root/root 1091 2025-05-21 08:37 ./usr/share/doc/vlang/examples/log.v -rw-r--r-- root/root 179 2025-05-21 08:37 ./usr/share/doc/vlang/examples/logfatal.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/macos_tray/ -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/macos_tray/.skip_should_compile_all -rw-r--r-- root/root 690 2025-05-21 08:37 ./usr/share/doc/vlang/examples/macos_tray/icon.png -rw-r--r-- root/root 4083 2025-05-21 08:37 ./usr/share/doc/vlang/examples/macos_tray/tray.m -rw-r--r-- root/root 1421 2025-05-21 08:37 ./usr/share/doc/vlang/examples/macos_tray/tray.v -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/macos_tray/v.mod -rw-r--r-- root/root 2801 2025-05-21 08:37 ./usr/share/doc/vlang/examples/mini_calculator.v -rw-r--r-- root/root 1987 2025-05-21 08:37 ./usr/share/doc/vlang/examples/mini_calculator_recursive_descent.v -rw-r--r-- root/root 643 2025-05-21 08:37 ./usr/share/doc/vlang/examples/minimal_c_like_program_using_puts.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/native/ -rw-r--r-- root/root 355 2025-05-21 08:37 ./usr/share/doc/vlang/examples/native/hello_world.v -rw-r--r-- root/root 3391 2025-05-21 08:37 ./usr/share/doc/vlang/examples/nbody.v -rw-r--r-- root/root 104 2025-05-21 08:37 ./usr/share/doc/vlang/examples/net_failconnect.v -rw-r--r-- root/root 106 2025-05-21 08:37 ./usr/share/doc/vlang/examples/net_peer_ip.v -rw-r--r-- root/root 452 2025-05-21 08:37 ./usr/share/doc/vlang/examples/net_raw_http.v -rw-r--r-- root/root 387 2025-05-21 08:37 ./usr/share/doc/vlang/examples/net_resolve.v -rw-r--r-- root/root 391 2025-05-21 08:37 ./usr/share/doc/vlang/examples/net_t.v -rw-r--r-- root/root 1140 2025-05-21 08:37 ./usr/share/doc/vlang/examples/net_udp_server_and_client.v -rw-r--r-- root/root 1686 2025-05-21 08:37 ./usr/share/doc/vlang/examples/news_fetcher.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/orm/ -rw-r--r-- root/root 1355 2025-05-21 08:37 ./usr/share/doc/vlang/examples/orm/orm_func.v -rw-r--r-- root/root 1346 2025-05-21 08:37 ./usr/share/doc/vlang/examples/orm/orm_sql.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/password/ -rw-r--r-- root/root 335 2025-05-21 08:37 ./usr/share/doc/vlang/examples/password/password.v -rw-r--r-- root/root 1003 2025-05-21 08:37 ./usr/share/doc/vlang/examples/password/password_test.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/password/tests/ -rwxr-xr-x root/root 377 2025-05-21 08:37 ./usr/share/doc/vlang/examples/password/tests/correct.expect -rwxr-xr-x root/root 365 2025-05-21 08:37 ./usr/share/doc/vlang/examples/password/tests/incorrect.expect -rwxr-xr-x root/root 313 2025-05-21 08:37 ./usr/share/doc/vlang/examples/password/tests/output_from_expect_arg.expect -rw-r--r-- root/root 14109 2025-05-21 08:37 ./usr/share/doc/vlang/examples/path_tracing.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/pendulum-simulation/ -rw-r--r-- root/root 1092 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/LICENSE -rw-r--r-- root/root 2776 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/README.md -rw-r--r-- root/root 834 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/animation.v -rw-r--r-- root/root 1327 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/full.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/anim/ -rw-r--r-- root/root 1341 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/anim/app.v -rw-r--r-- root/root 373 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/anim/worker.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/args/ -rw-r--r-- root/root 5044 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/args/parser.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/img/ -rw-r--r-- root/root 1479 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/img/ppm.v -rw-r--r-- root/root 1002 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/img/worker.v -rw-r--r-- root/root 1583 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/img/writer.v -rw-r--r-- root/root 134 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/log.v -rw-r--r-- root/root 2902 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/params.v -rw-r--r-- root/root 2868 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/params_test.v -rw-r--r-- root/root 1951 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/runner.v -rw-r--r-- root/root 1170 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/sim.v -rw-r--r-- root/root 1699 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/sim_test.v -rw-r--r-- root/root 862 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/vec.v -rw-r--r-- root/root 1147 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/vec_test.v -rw-r--r-- root/root 1283 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/worker.v -rw-r--r-- root/root 1271 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/modules/sim/worker_test.v -rw-r--r-- root/root 1761 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/parallel.v -rw-r--r-- root/root 1209 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/parallel_with_iw.v -rw-r--r-- root/root 655 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pendulum-simulation/sequential.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pico/ -rw-r--r-- root/root 1000 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pico/pico.v -rw-r--r-- root/root 939 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pico/raw_callback.v -rw-r--r-- root/root 948 2025-05-21 08:37 ./usr/share/doc/vlang/examples/pidigits.v -rw-r--r-- root/root 1100 2025-05-21 08:37 ./usr/share/doc/vlang/examples/poll_coindesk_bitcoin_vs_usd_rate.v -rw-r--r-- root/root 322 2025-05-21 08:37 ./usr/share/doc/vlang/examples/primes.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/process/ -rw-r--r-- root/root 579 2025-05-21 08:37 ./usr/share/doc/vlang/examples/process/command.v -rw-r--r-- root/root 613 2025-05-21 08:37 ./usr/share/doc/vlang/examples/process/execve.v -rw-r--r-- root/root 1161 2025-05-21 08:37 ./usr/share/doc/vlang/examples/process/process_script.v -rw-r--r-- root/root 1224 2025-05-21 08:37 ./usr/share/doc/vlang/examples/process/wrapping_interactive_python.v -rw-r--r-- root/root 2870 2025-05-21 08:37 ./usr/share/doc/vlang/examples/process/write_and_read_from_a_bash_child_process.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/quadtree_demo/ -rw-r--r-- root/root 4029 2025-05-21 08:37 ./usr/share/doc/vlang/examples/quadtree_demo/quadtree_demo.v -rw-r--r-- root/root 942 2025-05-21 08:37 ./usr/share/doc/vlang/examples/quick_sort.v -rw-r--r-- root/root 139 2025-05-21 08:37 ./usr/share/doc/vlang/examples/random_ips.v -rw-r--r-- root/root 303 2025-05-21 08:37 ./usr/share/doc/vlang/examples/readdir.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/readline/ -rw-r--r-- root/root 551 2025-05-21 08:37 ./usr/share/doc/vlang/examples/readline/readline.v -rw-r--r-- root/root 925 2025-05-21 08:37 ./usr/share/doc/vlang/examples/readline/readline_test.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/readline/tests/ -rwxr-xr-x root/root 307 2025-05-21 08:37 ./usr/share/doc/vlang/examples/readline/tests/readline.expect -rwxr-xr-x root/root 313 2025-05-21 08:37 ./usr/share/doc/vlang/examples/readline/tests/readline_from_expect_arg.expect drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/regex/ -rw-r--r-- root/root 1378 2025-05-21 08:37 ./usr/share/doc/vlang/examples/regex/pcre.vv -rw-r--r-- root/root 291 2025-05-21 08:37 ./usr/share/doc/vlang/examples/regex/readme.md -rw-r--r-- root/root 2775 2025-05-21 08:37 ./usr/share/doc/vlang/examples/regex/regex_example.v -rw-r--r-- root/root 4340 2025-05-21 08:37 ./usr/share/doc/vlang/examples/regex/regex_with_memoization.v -rw-r--r-- root/root 1719 2025-05-21 08:37 ./usr/share/doc/vlang/examples/rule110.v -rw-r--r-- root/root 197 2025-05-21 08:37 ./usr/share/doc/vlang/examples/rune.v -rw-r--r-- root/root 865 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sha256sum_with_io_cp.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/smtp/ -rw-r--r-- root/root 1258 2025-05-21 08:37 ./usr/share/doc/vlang/examples/smtp/mail.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/snek/ -rw-r--r-- root/root 312 2025-05-21 08:37 ./usr/share/doc/vlang/examples/snek/README.md -rw-r--r-- root/root 201 2025-05-21 08:37 ./usr/share/doc/vlang/examples/snek/index.html -rw-r--r-- root/root 3460 2025-05-21 08:37 ./usr/share/doc/vlang/examples/snek/snek.js.v -rw-r--r-- root/root 4187 2025-05-21 08:37 ./usr/share/doc/vlang/examples/snek/snek.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/ -rw-r--r-- root/root 889 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/_all_levels.txt -rw-r--r-- root/root 3618 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/box.png -rw-r--r-- root/root 4113 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/box_on_storage.png -rw-r--r-- root/root 367 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/corners.txt -rw-r--r-- root/root 3220 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/floor.png -rw-r--r-- root/root 3703 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/other.png -rw-r--r-- root/root 5836 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/player.png -rw-r--r-- root/root 310 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/simple.txt -rw-r--r-- root/root 6651 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/sokoban.v -rw-r--r-- root/root 5163 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/storage.png -rw-r--r-- root/root 280 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/three_boxes.txt drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/ -rw-r--r-- root/root 199 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/01.txt -rw-r--r-- root/root 183 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/02.txt -rw-r--r-- root/root 199 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/03.txt -rw-r--r-- root/root 265 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/04.txt -rw-r--r-- root/root 258 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/05.txt -rw-r--r-- root/root 177 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/06.txt -rw-r--r-- root/root 188 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/07.txt -rw-r--r-- root/root 261 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/08.txt -rw-r--r-- root/root 275 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/09.txt -rw-r--r-- root/root 355 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/10.txt -rw-r--r-- root/root 258 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/11.txt -rw-r--r-- root/root 261 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/12.txt -rw-r--r-- root/root 272 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/13.txt -rw-r--r-- root/root 319 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/14.txt -rw-r--r-- root/root 264 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/15.txt -rw-r--r-- root/root 220 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/16.txt -rw-r--r-- root/root 248 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/17.txt -rw-r--r-- root/root 284 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/18.txt -rw-r--r-- root/root 293 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/19.txt -rw-r--r-- root/root 338 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/20.txt -rw-r--r-- root/root 244 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/21.txt -rw-r--r-- root/root 346 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/22.txt -rw-r--r-- root/root 289 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/23.txt -rw-r--r-- root/root 341 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/24.txt -rw-r--r-- root/root 330 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/25.txt -rw-r--r-- root/root 212 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/26.txt -rw-r--r-- root/root 283 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/27.txt -rw-r--r-- root/root 293 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/28.txt -rw-r--r-- root/root 263 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/29.txt -rw-r--r-- root/root 305 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/30.txt -rw-r--r-- root/root 271 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/31.txt -rw-r--r-- root/root 224 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/32.txt -rw-r--r-- root/root 230 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/33.txt -rw-r--r-- root/root 238 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/34.txt -rw-r--r-- root/root 333 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/35.txt -rw-r--r-- root/root 324 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/36.txt -rw-r--r-- root/root 307 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/37.txt -rw-r--r-- root/root 155 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/38.txt -rw-r--r-- root/root 326 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/39.txt -rw-r--r-- root/root 283 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/40.txt -rw-r--r-- root/root 321 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/41.txt -rw-r--r-- root/root 268 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/42.txt -rw-r--r-- root/root 248 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/43.txt -rw-r--r-- root/root 293 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/44.txt -rw-r--r-- root/root 238 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/45.txt -rw-r--r-- root/root 256 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/46.txt -rw-r--r-- root/root 217 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/47.txt -rw-r--r-- root/root 237 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/48.txt -rw-r--r-- root/root 269 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/49.txt -rw-r--r-- root/root 342 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokoban/tr_levels/50.txt -rw-r--r-- root/root 3239 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokoban/wall.png drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokol/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/01_cubes/ -rw-r--r-- root/root 9905 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/01_cubes/cube.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/02_cubes_glsl/ -rw-r--r-- root/root 2535 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/02_cubes_glsl/cube_glsl.glsl -rw-r--r-- root/root 16571 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/02_cubes_glsl/cube_glsl.v -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/02_cubes_glsl/v.mod drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/03_march_tracing_glsl/ -rw-r--r-- root/root 19422 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/03_march_tracing_glsl/rt_glsl.glsl -rw-r--r-- root/root 11634 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/03_march_tracing_glsl/rt_glsl.v -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/03_march_tracing_glsl/v.mod drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/04_multi_shader_glsl/ -rw-r--r-- root/root 11008 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/04_multi_shader_glsl/rt_glsl.v -rw-r--r-- root/root 19441 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/04_multi_shader_glsl/rt_glsl_march.glsl -rw-r--r-- root/root 17042 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/04_multi_shader_glsl/rt_glsl_puppy.glsl -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/04_multi_shader_glsl/v.mod drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/05_instancing_glsl/ -rw-r--r-- root/root 14658 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/05_instancing_glsl/rt_glsl.v -rw-r--r-- root/root 1272 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/05_instancing_glsl/rt_glsl_instancing.glsl -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/05_instancing_glsl/v.mod drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/ -rw-r--r-- root/root 453 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/apple.mtl -rw-r--r-- root/root 314483 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/apple.obj -rw-r--r-- root/root 35218 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/apple.png -rw-r--r-- root/root 368 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/cube.obj -rw-r--r-- root/root 240 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/donut.mtl -rw-r--r-- root/root 73222 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/donut.obj -rw-r--r-- root/root 125 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/floor.obj -rw-r--r-- root/root 28705 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/hollowcube.obj -rw-r--r-- root/root 1665 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/snub_cube.obj -rw-r--r-- root/root 1209 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/trunc_cube.obj -rw-r--r-- root/root 210702 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/utahTeapot.obj -rw-r--r-- root/root 279 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/v.mtl -rw-r--r-- root/root 5028 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/assets/models/v.obj -rw-r--r-- root/root 3838 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/gouraud.glsl drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/modules/obj/ -rw-r--r-- root/root 13159 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/modules/obj/obj.v -rw-r--r-- root/root 8774 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/modules/obj/rend.v -rw-r--r-- root/root 2473 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/modules/obj/struct.v -rw-r--r-- root/root 564 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/modules/obj/util.v -rw-r--r-- root/root 7883 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/show_obj.v -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/06_obj_viewer/v.mod drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokol/07_simple_shader_glsl/ -rw-r--r-- root/root 941 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/07_simple_shader_glsl/simple_shader.glsl -rw-r--r-- root/root 5048 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/07_simple_shader_glsl/simple_shader.v -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/07_simple_shader_glsl/v.mod drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/sokol/08_sdf/ -rw-r--r-- root/root 5042 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/08_sdf/sdf.glsl -rw-r--r-- root/root 1999 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/08_sdf/sdf.v -rw-r--r-- root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/08_sdf/v.mod -rw-r--r-- root/root 792 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/clear.v -rw-r--r-- root/root 1493 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/drawing.v -rw-r--r-- root/root 4236 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/fonts.v -rw-r--r-- root/root 4458 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/freetype_raven.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/modules/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/modules/particle/ -rw-r--r-- root/root 1073 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/modules/particle/LICENSE -rw-r--r-- root/root 239 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/modules/particle/color.v -rw-r--r-- root/root 2055 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/modules/particle/particle.v -rw-r--r-- root/root 2309 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/modules/particle/system.v -rw-r--r-- root/root 2976 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/particles/particles.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/sounds/ -rw-r--r-- root/root 1853 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/sounds/melody.v -rw-r--r-- root/root 1349 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/sounds/simple_bytebeat.v -rw-r--r-- root/root 2108 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/sounds/simple_sin_tone_using_audio_push.v -rw-r--r-- root/root 1148 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/sounds/simple_sin_tones.v -rw-r--r-- root/root 68562 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/sounds/uhoh.wav -rw-r--r-- root/root 5310 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sokol/sounds/wav_player.v -rw-r--r-- root/root 1219 2025-05-21 08:37 ./usr/share/doc/vlang/examples/spectral.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/cert/ -rw-r--r-- root/root 1249 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/cert/ca.crt -rw-r--r-- root/root 1472 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/cert/client.crt -rw-r--r-- root/root 3243 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/cert/client.key -rw-r--r-- root/root 1099 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/cert/makecerts.sh -rw-r--r-- root/root 1554 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/cert/server.crt -rw-r--r-- root/root 3243 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/cert/server.key -rw-r--r-- root/root 456 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/client.v -rw-r--r-- root/root 544 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/server.v -rw-r--r-- root/root 2503 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/server_sni.v -rw-r--r-- root/root 2780 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ssl_server/server_sni_advanced.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/submodule/ -rw-r--r-- root/root 158 2025-05-21 08:37 ./usr/share/doc/vlang/examples/submodule/main.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/submodule/mymodules/ -rw-r--r-- root/root 68 2025-05-21 08:37 ./usr/share/doc/vlang/examples/submodule/mymodules/main_functions.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/submodule/mymodules/submodule/ -rw-r--r-- root/root 68 2025-05-21 08:37 ./usr/share/doc/vlang/examples/submodule/mymodules/submodule/sub_functions.v -rw-r--r-- root/root 91 2025-05-21 08:37 ./usr/share/doc/vlang/examples/submodule/v.mod -rw-r--r-- root/root 2203 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sudoku.v -rw-r--r-- root/root 1181 2025-05-21 08:37 ./usr/share/doc/vlang/examples/sync_pool.v -rw-r--r-- root/root 1018 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tcp_echo_server.v -rw-r--r-- root/root 1691 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tcp_notify_echo_server.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/templates/ -rw-r--r-- root/root 6723 2025-05-21 08:37 ./usr/share/doc/vlang/examples/templates/data.json -rw-r--r-- root/root 382 2025-05-21 08:37 ./usr/share/doc/vlang/examples/templates/readme.md -rw-r--r-- root/root 195 2025-05-21 08:37 ./usr/share/doc/vlang/examples/templates/template.md -rw-r--r-- root/root 6831 2025-05-21 08:37 ./usr/share/doc/vlang/examples/templates/templates.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/term.ui/ -rw-r--r-- root/root 108 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/README.md -rw-r--r-- root/root 1894 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/cursor_chaser.v -rw-r--r-- root/root 1152 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/event_viewer.v -rw-r--r-- root/root 9974 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/pong.v -rw-r--r-- root/root 1438 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/rectangles.v -rw-r--r-- root/root 1054 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/screenshot_pong.png -rw-r--r-- root/root 11892 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/term_drawing.v -rw-r--r-- root/root 14851 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/text_editor.v -rw-r--r-- root/root 11572 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term.ui/vyper.v -rw-r--r-- root/root 701 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term_display_sixel.v -rw-r--r-- root/root 499 2025-05-21 08:37 ./usr/share/doc/vlang/examples/term_key_pressed.v -rw-r--r-- root/root 606 2025-05-21 08:37 ./usr/share/doc/vlang/examples/terminal_control.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/tetris/ -rw-r--r-- root/root 1215 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tetris/README.md -rw-r--r-- root/root 482 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tetris/index.html -rw-r--r-- root/root 23598 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tetris/screenshot.png -rw-r--r-- root/root 11319 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tetris/tetris.js.v -rw-r--r-- root/root 11684 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tetris/tetris.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/thread_safety/ -rw-r--r-- root/root 1877 2025-05-21 08:37 ./usr/share/doc/vlang/examples/thread_safety/atomic_counter.v -rw-r--r-- root/root 1100 2025-05-21 08:37 ./usr/share/doc/vlang/examples/thread_safety/concurrent_shared_data.v -rw-r--r-- root/root 2599 2025-05-21 08:37 ./usr/share/doc/vlang/examples/thread_safety/queue.v -rw-r--r-- root/root 489 2025-05-21 08:37 ./usr/share/doc/vlang/examples/thread_safety/readme.md -rw-r--r-- root/root 1007 2025-05-21 08:37 ./usr/share/doc/vlang/examples/toml.v -rw-r--r-- root/root 573 2025-05-21 08:37 ./usr/share/doc/vlang/examples/tree_of_nodes.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ttf_font/ -rw-r--r-- root/root 161 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ttf_font/draw_static_text.txt -rw-r--r-- root/root 2804 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ttf_font/draw_static_text.v -rw-r--r-- root/root 4256 2025-05-21 08:37 ./usr/share/doc/vlang/examples/ttf_font/example_ttf.v -rwxr-xr-x root/root 1002 2025-05-21 17:22 ./usr/share/doc/vlang/examples/v_script.vsh drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vanilla_http_server/ -rw-r--r-- root/root 123 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/.editorconfig -rw-r--r-- root/root 1916 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/README.md drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/src/ -rw-r--r-- root/root 1067 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/src/controllers.v -rw-r--r-- root/root 775 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/src/main.c.v -rw-r--r-- root/root 1204 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/src/request_parser.v -rw-r--r-- root/root 8257 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/src/server.c.v -rw-r--r-- root/root 111 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vanilla_http_server/src/v.mod -rw-r--r-- root/root 8596 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vascii.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vcasino/ -rw-r--r-- root/root 319 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vcasino/README.md -rw-r--r-- root/root 3246 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vcasino/vcasino.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/cors/ -rw-r--r-- root/root 1731 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/cors/veb_cors_example.v -rw-r--r-- root/root 23 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/custom.html drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_transform/ -rw-r--r-- root/root 810 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_transform/file_transform.v -rw-r--r-- root/root 1204 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_transform/index.html -rw-r--r-- root/root 29 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_transform/sample_input.txt -rw-r--r-- root/root 44 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_transform/upload.html drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_upload/ -rw-r--r-- root/root 649 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_upload/file_uploading.v -rw-r--r-- root/root 700 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_upload/index.html -rw-r--r-- root/root 147 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_upload/submit.html -rw-r--r-- root/root 220 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/file_upload/upload.html -rw-r--r-- root/root 34 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/footer.html -rw-r--r-- root/root 123 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/header.html -rw-r--r-- root/root 217 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/index.html drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/middleware/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/middleware/templates/ -rw-r--r-- root/root 476 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/middleware/templates/base.html -rw-r--r-- root/root 17 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/middleware/templates/early.html -rw-r--r-- root/root 17 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/middleware/templates/index.html -rw-r--r-- root/root 25 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/middleware/templates/secret.html -rw-r--r-- root/root 2008 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/middleware/using_middleware.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/server_sent_events/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/server_sent_events/assets/ -rw-r--r-- root/root 285 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/server_sent_events/assets/site.css -rw-r--r-- root/root 671 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/server_sent_events/assets/v-logo.svg -rw-r--r-- root/root 15406 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/server_sent_events/favicon.ico -rw-r--r-- root/root 1446 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/server_sent_events/index.html -rw-r--r-- root/root 1078 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/server_sent_events/server.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/static_website/ -rw-r--r-- root/root 244 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/static_website/README.md drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/static_website/dist/ -rw-r--r-- root/root 407 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/static_website/dist/another.html -rw-r--r-- root/root 394 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/static_website/dist/index.html -rw-r--r-- root/root 388 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/static_website/server.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/veb/todo/ -rw-r--r-- root/root 425 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/todo/README.md drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/todo/assets/ -rw-r--r-- root/root 1702 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/todo/assets/main.css -rw-r--r-- root/root 4034 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/todo/main.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/todo/templates/ -rw-r--r-- root/root 2281 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/todo/templates/index.html drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_assets/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_assets/assets/ -rw-r--r-- root/root 317 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_assets/assets/index.css -rw-r--r-- root/root 671 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_assets/assets/v-logo.svg -rw-r--r-- root/root 15406 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_assets/favicon.ico -rw-r--r-- root/root 175 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_assets/index.html -rw-r--r-- root/root 1037 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_assets/vweb_assets.v -rw-r--r-- root/root 1519 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/veb_example.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/websocket/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/websocket/assets/ -rw-r--r-- root/root 1571 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/websocket/assets/client.js -rw-r--r-- root/root 1350 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/websocket/assets/favicon.ico -rw-r--r-- root/root 668 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/websocket/assets/style.css -rw-r--r-- root/root 626 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/websocket/index.html -rw-r--r-- root/root 3013 2025-05-21 08:37 ./usr/share/doc/vlang/examples/veb/websocket/server.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/viewer/ -rw-r--r-- root/root 1069 2025-05-21 08:37 ./usr/share/doc/vlang/examples/viewer/LICENSE -rw-r--r-- root/root 1319 2025-05-21 08:37 ./usr/share/doc/vlang/examples/viewer/README.md -rw-r--r-- root/root 8126 2025-05-21 08:37 ./usr/share/doc/vlang/examples/viewer/file_scan.v -rw-r--r-- root/root 186 2025-05-21 08:37 ./usr/share/doc/vlang/examples/viewer/v.mod -rw-r--r-- root/root 21817 2025-05-21 08:37 ./usr/share/doc/vlang/examples/viewer/view.v -rw-r--r-- root/root 2155 2025-05-21 08:37 ./usr/share/doc/vlang/examples/viewer/zip_container.v -rw-r--r-- root/root 2855 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vmatrix.v -rw-r--r-- root/root 206 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vmod.v -rw-r--r-- root/root 466 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vpwgen.v -rw-r--r-- root/root 779 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vtail.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vwatch/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vwatch/cli_clock/ -rw-r--r-- root/root 407 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vwatch/cli_clock/main.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vwatch/web_server/ -rw-r--r-- root/root 1964 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vwatch/web_server/main.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_fullstack/ -rw-r--r-- root/root 123 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/.editorconfig -rw-r--r-- root/root 1069 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/LICENSE -rw-r--r-- root/root 225 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/readme.md drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_fullstack/src/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_fullstack/src/assets/ -rw-r--r-- root/root 15406 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/assets/favicon.ico -rw-r--r-- root/root 671 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/assets/v-logo.svg -rw-r--r-- root/root 309874 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_fullstack/src/assets/veasel.png -rw-r--r-- root/root 288 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/auth_controllers.v -rw-r--r-- root/root 93 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/auth_dto.v -rw-r--r-- root/root 2321 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/auth_services.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/databases/ -rw-r--r-- root/root 166 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/databases/config_databases_sqlite.v -rw-r--r-- root/root 2676 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_fullstack/src/index.html -rw-r--r-- root/root 707 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/main.v -rw-r--r-- root/root 1535 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/product_controller.v -rw-r--r-- root/root 199 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/product_entities.v -rw-r--r-- root/root 726 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/product_service.v -rw-r--r-- root/root 346 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/product_view.v -rw-r--r-- root/root 742 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/product_view_api.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_fullstack/src/templates/ -rw-r--r-- root/root 524 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/templates/header_component.html -rw-r--r-- root/root 186 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/templates/products.css -rw-r--r-- root/root 3052 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_fullstack/src/templates/products.html -rw-r--r-- root/root 1637 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/user_controllers.v -rw-r--r-- root/root 233 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/user_entities.v -rw-r--r-- root/root 1087 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/user_services.v -rw-r--r-- root/root 709 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/user_view_api.v -rw-r--r-- root/root 96 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_fullstack/src/v.mod drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/vweb_orm_jwt/ -rw-r--r-- root/root 123 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/.editorconfig drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/ -rw-r--r-- root/root 417 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/auth_controllers.v -rw-r--r-- root/root 363 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/auth_dto.v -rw-r--r-- root/root 2187 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/auth_services.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/databases/ -rw-r--r-- root/root 134 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/databases/config_databases_sqlite.v -rw-r--r-- root/root 562 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/main.v -rw-r--r-- root/root 1593 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/user_controllers.v -rw-r--r-- root/root 363 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/user_entities.v -rw-r--r-- root/root 1509 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/user_services.v -rw-r--r-- root/root 94 2025-05-21 08:37 ./usr/share/doc/vlang/examples/vweb_orm_jwt/src/v.mod drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/examples/wasm/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/change_color_by_id/ -rw-r--r-- root/root 437 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/change_color_by_id/README.md -rw-r--r-- root/root 1686 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/change_color_by_id/change_color_by_id.html -rw-r--r-- root/root 576 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/change_color_by_id/change_color_by_id.wasm.v -rw-r--r-- root/root 991 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/change_color_by_id/favicon.ico -rw-r--r-- root/root 492 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/change_color_by_id/serve_folder.v -rw-r--r-- root/root 701 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/functions.v -rw-r--r-- root/root 118 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/hello_world.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/mandelbrot/ -rw-r--r-- root/root 397 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/mandelbrot/README.md -rw-r--r-- root/root 991 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/mandelbrot/favicon.ico -rw-r--r-- root/root 1571 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/mandelbrot/mandelbrot.html -rw-r--r-- root/root 801 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/mandelbrot/mandelbrot.wasm.v -rw-r--r-- root/root 468 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm/mandelbrot/serve_folder.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/ -rw-r--r-- root/root 249 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/add.v -rw-r--r-- root/root 3214 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/bf_compiler.v -rw-r--r-- root/root 760 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/control_flow.v -rw-r--r-- root/root 503 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/factorial.v -rw-r--r-- root/root 563 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/functions.v -rw-r--r-- root/root 849 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/hello_wasi.v -rw-r--r-- root/root 217 2025-05-21 08:37 ./usr/share/doc/vlang/examples/wasm_codegen/memory.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/web_crawler/ -rw-r--r-- root/root 468 2025-05-21 08:37 ./usr/share/doc/vlang/examples/web_crawler/README.md -rw-r--r-- root/root 567 2025-05-21 08:37 ./usr/share/doc/vlang/examples/web_crawler/web_crawler.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/websocket/ drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/websocket/client-server/ -rw-r--r-- root/root 1804 2025-05-21 08:37 ./usr/share/doc/vlang/examples/websocket/client-server/client.v -rw-r--r-- root/root 1624 2025-05-21 08:37 ./usr/share/doc/vlang/examples/websocket/client-server/server.v -rw-r--r-- root/root 3587 2025-05-21 08:37 ./usr/share/doc/vlang/examples/websocket/ping.v drwxr-xr-x root/root 0 2025-05-21 08:37 ./usr/share/doc/vlang/examples/word_counter/ -rw-r--r-- root/root 290 2025-05-21 08:37 ./usr/share/doc/vlang/examples/word_counter/README.md -rw-r--r-- root/root 13813 2025-05-21 08:37 ./usr/share/doc/vlang/examples/word_counter/cinderella.txt -rw-r--r-- root/root 1385 2025-05-21 08:37 ./usr/share/doc/vlang/examples/word_counter/word_counter.v drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang-doc/ -rw-r--r-- root/root 171 2025-05-21 17:22 ./usr/share/doc/vlang-doc/changelog.Debian.gz -rw-r--r-- root/root 83782 2025-05-21 08:37 ./usr/share/doc/vlang-doc/changelog.gz -rw-r--r-- root/root 15581 2025-05-21 17:22 ./usr/share/doc/vlang-doc/copyright drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/doc-base/ -rw-r--r-- root/root 201 2025-05-21 17:22 ./usr/share/doc-base/vlang-doc.vlang drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/lintian/ drwxr-xr-x root/root 0 2025-05-21 17:22 ./usr/share/lintian/overrides/ -rw-r--r-- root/root 355 2025-05-21 17:22 ./usr/share/lintian/overrides/vlang-doc lrwxrwxrwx root/root 0 2025-05-21 17:22 ./usr/share/doc/vlang/docs/normalize.css -> ../../../javascript/normalize.css/normalize.css |
copyright of vlang-doc_0.4.10+git20250521.7c50fb1+ds-1_all.deb (click to toggle) | |
---|---|
NOTE: Copyright is the same as vlang (vlang_0.4.10+git20250521.7c50fb1+ds-1_amd64.deb). Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: https://github.com/vlang/v Upstream-Name: vlang Upstream-Contact: https://github.com/vlang/v/issues Files-Excluded: thirdparty/libatomic_ops thirdparty/libbacktrace thirdparty/libgc thirdparty/mbedtls thirdparty/zstd vlib/x/ttf/ttf_test_data.bin Comment: Exclude embedded libraries, replace with dynamic linking Exclude embedded test font "Qarmic Sans" Files: * Copyright: 2019-2025 Alexander Medvednikov 2019-2024 Dario Deledda License: Expat Files: vc-bootstrap/* Copyright: 2019-2025 Alexander Medvednikov 2019-2024 Dario Deledda License: Expat Files: vmarkdown/* Copyright: 2016-2019 Martin Mitáš 2020 Ned Palacios (V bindings) 2020-2021 The V Programming Language License: Expat Files: examples/assets/fonts/Graduate-Regular.ttf examples/assets/fonts/Imprima-Regular.ttf Copyright: 2012 Eduardo Tunni License: OFL-1.1 Files: examples/assets/fonts/RobotoMono-Regular.ttf Copyright: 2015 Google Inc. License: Apache-2.0 Files: examples/js_dom_draw_benchmark_chart/typescript_vanilla_typeorm/* Copyright: Unknown License: ISC Files: thirdparty/fontstash/fontstash.h Copyright: 2009-2013 Mikko Mononen <memon@inside.org> License: Zlib Files: thirdparty/picoev/* Copyright: 2009 Cybozu Labs, Inc. License: BSD-3-clause Files: thirdparty/picohttpparser/* Copyright: 2009-2014, Kazuho Oku, Tokuhiro Matsuno, Daisuke Murase, Shigeo Mitsunari License: Expat Files: thirdparty/sokol/* Copyright: 2018 Andre Weissflog License: Zlib Files: thirdparty/stb_image* thirdparty/fontstash/stb_truetype.h Copyright: Sean Barrett RAD Game Tools Jeff Roberts (v2) Jorge L Rodriguez License: Expat or Unlicense stb_image - public domain image loader - http://nothings.org/stb no warranty implied; use at your own risk This software is available under 2 licenses -- choose whichever you prefer. Files: thirdparty/stdatomic/nix/atomic_cpp.h Copyright: 2011 Ed Schouten <ed@FreeBSD.org> David Chisnall <theraven@FreeBSD.org> License: BSD-2-clause Files: thirdparty/stdatomic/win/atomic.h Copyright: FFmpeg authors License: LGPL-2.1+ Files: thirdparty/walloc/walloc.c Copyright: 2020 Igalia, S.L. License: Expat Files: thirdparty/zip/* Copyright: 2013-2014 RAD Game Tools and Valve Software 2010-2014 Rich Geldreich and Tenacious Software LLC Rich Geldreich <richgel99@gmail.com> License: Expat and Unlicense Files: vlib/crypto/aes/block_generic.v Copyright: 2019-2024 Alexander Medvednikov Vincent Rijmen <vincent.rijmen@esat.kuleuven.ac.be> Antoon Bosselaers <antoon.bosselaers@esat.kuleuven.ac.be> Paulo Barreto <paulo.barreto@Terra.com.br> License: Expat and public-domain This code is hereby placed in the public domain Files: vlib/dlmalloc/dlmalloc.v Copyright: 2019-2024 Alexander Medvednikov Doug Lea License: Expat and public-domain The original source was written by Doug Lea and released to the public domain Files: vlib/net/afunix.h Copyright: Unknown License: public-domain This file has no copyright assigned and is placed in the Public Domain. This file is part of the mingw-w64 runtime package. Files: vlib/rand/mt19937/mt19937.v Copyright: 2019-2024 Alexander Medvednikov 1997-2002 Makoto Matsumoto and Takuji Nishimura License: Expat and BSD-3-clause Files: debian/* Copyright: 2025 Ahmad Khalifa <ahmad@khalifa.ws> License: Expat 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 . http://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. Comment: On Debian systems, the complete text of the Apache License, Version 2.0 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, and the entire permission notice in its entirety, including the disclaimer of warranties. 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. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR 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 NOT ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: BSD-2-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. . THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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: 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. License: ISC Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. . THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. Comment: On Debian systems, the complete text of the GNU Lesser General Public License can be found in "/usr/share/common-licenses/LGPL-2.1". License: OFL-1.1 ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- . PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. . The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. . DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. . "Reserved Font Name" refers to any names specified as such after the copyright statement(s). . "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). . "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. . "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. . PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: . 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. . 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. . 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. . 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. . 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. . TERMINATION This license becomes null and void if any of the above conditions are not met. . DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. License: Unlicense This is free and unencumbered software released into the public domain. . Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. . In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. . 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 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. . For more information, please refer to <https://unlicense.org/> License: Zlib This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. |
Timestamp: 12.09.2025 / 11:03:47 (UTC)