0s autopkgtest: DBG: testbed init 0s autopkgtest [01:26:53]: starting date and time: 2025-02-16 01:26:53+0000 0s autopkgtest [01:26:53]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:26:53]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.14s59fnj/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade oxigraph --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-20.secgroup --name adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 100s autopkgtest: DBG: sending command to testbed: print-execute-command 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 100s autopkgtest: DBG: sending command to testbed: capabilities 100s autopkgtest: DBG: got reply from testbed: ok revert-full-system isolation-machine suggested-normal-user=ubuntu reboot revert root-on-testbed 100s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'revert', 'root-on-testbed', 'has_internet'] 100s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 101s autopkgtest: DBG: got reply from testbed: ok 101s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [01:28:34]: testbed dpkg architecture: s390x 101s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [01:28:34]: testbed apt version: 2.9.28 101s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed has eatmydata 101s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [01:28:34]: @@@@@@@@@@@@@@@@@@@@ test bed setup 101s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [01:28:35]: testbed release detected to be: None 102s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: adding APT source: Types: deb deb-src 102s URIs: http://ftpmaster.internal/ubuntu/ 102s Suites: plucky-proposed 102s Components: main restricted universe multiverse 102s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 102s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 102s Package: * 102s Pin: release plucky-proposed 102s Pin-Priority: 500 102s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [01:28:35]: updating testbed package index (apt update) 102s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 102s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 103s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 103s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 103s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 103s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 103s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 103s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 103s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 103s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 103s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 103s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 103s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 103s Fetched 2062 kB in 1s (2046 kB/s) 104s Reading package lists... 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 104s Package: * 104s Pin: release plucky-proposed 104s Pin-Priority: 100 104s 104s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 104s Pin: release plucky-proposed 104s Pin-Priority: 995 104s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 105s + lsb_release --codename --short 105s + RELEASE=plucky 105s + cat 105s + [ plucky != trusty ] 105s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 105s Reading package lists... 105s Building dependency tree... 105s Reading state information... 105s Calculating upgrade... 105s The following packages were automatically installed and are no longer required: 105s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 105s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 105s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 105s linux-tools-6.11.0-8-generic 105s Use 'sudo apt autoremove' to remove them. 105s The following packages will be upgraded: 105s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 105s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 105s Need to get 1155 kB of archives. 105s After this operation, 16.4 kB of additional disk space will be used. 105s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 105s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 105s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 105s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 106s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 106s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 106s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 106s Preconfiguring packages ... 106s Fetched 1155 kB in 1s (1942 kB/s) 106s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 106s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 106s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 106s Setting up dash (0.5.12-12ubuntu1) ... 106s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 106s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 106s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 106s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 106s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 106s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 106s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 106s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 106s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 106s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 106s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 106s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 106s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 106s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 106s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 106s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 106s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 106s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 106s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 106s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 106s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 106s Setting up libtasn1-6:s390x (4.20.0-2) ... 106s Processing triggers for libc-bin (2.40-4ubuntu1) ... 106s Processing triggers for man-db (2.13.0-1) ... 107s Processing triggers for debianutils (5.21) ... 107s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 107s + /usr/lib/apt/apt-helper analyze-pattern ?true 107s + uname -r 107s + sed s/\./\\./g 107s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 107s + + tail -n+2 107s apt list ?obsolete 107s + grep -v ^linux-.*6\.12\.0-15-generic.* 107s + cut -d/ -f1 107s + true 107s + obsolete_pkgs= 107s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 107s Reading package lists... 107s Building dependency tree... 107s Reading state information... 107s The following packages will be REMOVED: 107s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 107s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 107s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 107s linux-tools-6.11.0-8-generic* 108s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 108s After this operation, 167 MB disk space will be freed. 108s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 108s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 108s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 108s Removing libpython3.12t64:s390x (3.12.9-1) ... 108s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 108s Removing libnsl2:s390x (1.3.0-3build3) ... 108s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 108s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 108s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 109s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 109s Processing triggers for libc-bin (2.40-4ubuntu1) ... 109s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 109s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 109s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 109s + grep -q trusty /etc/lsb-release 109s + [ ! -d /usr/share/doc/unattended-upgrades ] 109s + [ ! -d /usr/share/doc/lxd ] 109s + [ ! -d /usr/share/doc/lxd-client ] 109s + [ ! -d /usr/share/doc/snapd ] 109s + type iptables 109s + cat 109s + chmod 755 /etc/rc.local 109s + . /etc/rc.local 109s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 109s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 109s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 109s + uname -m 109s + [ s390x = ppc64le ] 109s + [ -d /run/systemd/system ] 109s + systemd-detect-virt --quiet --vm 109s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 109s + cat 109s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 109s + echo COMPRESS=lz4 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [01:28:42]: upgrading testbed (apt dist-upgrade and autopurge) 109s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 109s Reading package lists... 109s Building dependency tree... 109s Reading state information... 110s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 110s Starting 2 pkgProblemResolver with broken count: 0 110s Done 110s Entering ResolveByKeep 110s 110s The following packages will be upgraded: 110s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 110s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 110s Need to get 10.7 MB of archives. 110s After this operation, 305 kB of additional disk space will be used. 110s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 110s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 111s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 111s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 111s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 111s Preconfiguring packages ... 111s Fetched 10.7 MB in 1s (10.3 MB/s) 111s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 111s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 111s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 111s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 111s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 111s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 111s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 112s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 112s Checking for services that may need to be restarted... 112s Checking init scripts... 112s Checking for services that may need to be restarted... 112s Checking init scripts... 112s Stopping some services possibly affected by the upgrade (will be restarted later): 112s cron: stopping...done. 112s 112s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 112s Setting up libc6:s390x (2.41-1ubuntu1) ... 112s Checking for services that may need to be restarted... 112s Checking init scripts... 112s Restarting services possibly affected by the upgrade: 112s cron: restarting...done. 112s 112s Services restarted successfully. 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 112s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 112s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 112s Setting up libc-bin (2.41-1ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 112s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 112s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 112s Setting up iproute2 (6.13.0-1ubuntu1) ... 112s Setting up locales (2.41-1ubuntu1) ... 112s Installing new version of config file /etc/locale.alias ... 113s Generating locales (this might take a while)... 114s en_US.UTF-8... done 114s Generation complete. 114s Setting up libc-dev-bin (2.41-1ubuntu1) ... 114s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 114s Processing triggers for man-db (2.13.0-1) ... 115s Processing triggers for systemd (257.2-3ubuntu1) ... 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 117s autopkgtest: DBG: testbed command exited with code 1 117s autopkgtest [01:28:50]: rebooting testbed after setup commands that affected boot 117s autopkgtest: DBG: sending command to testbed: reboot 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 133s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest [01:29:08]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 135s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: Binaries: initialising 137s autopkgtest [01:29:10]: @@@@@@@@@@@@@@@@@@@@ apt-source oxigraph 137s autopkgtest: DBG: blame += oxigraph 137s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 137s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'oxigraph'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-sparesults-dev$'], kind short, sout pipe, serr raw, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-sparesults-dev=0.4.0~really0.2.4+0.4.7-4build1'], kind short, sout pipe, serr raw, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-oxrdf-dev$'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-oxrdf-dev=0.4.0~really0.2.4+0.4.7-4build1'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-oxsdatatypes-dev$'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-oxsdatatypes-dev=0.4.0~really0.2.2+0.4.7-4build1'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-spargebra-dev$'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-spargebra-dev=0.4.0~really0.3.4+0.4.7-4build1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-oxrocksdb-sys-dev$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-oxrocksdb-sys-dev=0.4.7-4build1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-oxigraph-dev$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-oxigraph-dev=0.4.7-4build1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^oxigraph$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'oxigraph=0.4.7-4build1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: install_deps: deps_new=[] 141s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.QBkw4D/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source oxigraph=0.4.7-4build1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x oxigraph_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 141s + cd / 141s + mktemp -d /tmp/autopkgtest.QBkw4D/build.XXX 141s + builddir=/tmp/autopkgtest.QBkw4D/build.qEj 141s + cd /tmp/autopkgtest.QBkw4D/build.qEj 141s + apt-get source -d -q --only-source oxigraph=0.4.7-4build1 142s + OUT=Reading package lists... 142s NOTICE: 'oxigraph' packaging is maintained in the 'Git' version control system at: 142s https://salsa.debian.org/debian/oxigraph.git 142s Please use: 142s git clone https://salsa.debian.org/debian/oxigraph.git 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 807 kB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (dsc) [5503 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (tar) [782 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (diff) [19.2 kB] 142s Fetched 807 kB in 1s (1395 kB/s) 142s Download complete and in download only mode 142s + [ -n ] 142s + + grep ^Get:echo 142s Reading package lists... 142s NOTICE: 'oxigraph' packaging is maintained in the 'Git' version control system at: 142s https://salsa.debian.org/debian/oxigraph.git 142s Please use: 142s git clone https://salsa.debian.org/debian/oxigraph.git 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 807 kB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (dsc) [5503 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (tar) [782 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (diff) [19.2 kB] 142s Fetched 807 kB in 1s (1395 kB/s) 142s Download complete and in download only mode 142s Get:1 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (dsc) [5503 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (tar) [782 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/universe oxigraph 0.4.7-4build1 (diff) [19.2 kB] 142s + dpkg-source -x oxigraph_0.4.7-4build1.dsc src 142s gpgv: Signature made Thu Feb 13 17:22:15 2025 UTC 142s gpgv: using RSA key B8340990283D8D9BC1949AC74799A35146D12B35 142s gpgv: Can't check signature: No public key 142s dpkg-source: warning: cannot verify inline signature for ./oxigraph_0.4.7-4build1.dsc: no acceptable signature found 142s + chmod -R a+rX . 142s + cd src/. 142s + pwd 142s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest [01:29:15]: testing package oxigraph version 0.4.7-4build1 142s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/build.qEj/src/debian/ /tmp/autopkgtest-work.14s59fnj/out/pkg/debian/ 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdf-0.2+default-dev 143s autopkgtest: DBG: Test defined: name rust-oxrdf:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrdf 0.2.4 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrdf:default'] depends ['dh-rust', 'librust-oxrdf-0.2+default-dev'] 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdf-0.2-dev 143s rust-oxrdf:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdf-0.2-dev 143s rust-oxrdf: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdf-0.2+rdf-star-dev 143s rust-oxrdf:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdf-0.2+oxsdatatypes-dev 143s rust-oxrdf:oxsdatatypes SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1+default-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 143s autopkgtest: DBG: Test defined: name rust-oxrdfio:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrdfio 0.1.5 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrdfio:default'] depends ['dh-rust', 'librust-oxrdfio-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 143s rust-oxrdfio:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 143s rust-oxrdfio: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1+async-tokio-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 143s rust-oxrdfio:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1+default-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 143s autopkgtest: DBG: Test defined: name rust-oxrdfxml:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrdfxml 0.1.5 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrdfxml:default'] depends ['dh-rust', 'librust-oxrdfxml-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 143s autopkgtest: DBG: processing dependency dh-rust 143s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 143s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 143s rust-oxrdfxml:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1-dev 144s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 144s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 144s rust-oxrdfxml: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1+async-tokio-dev 144s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 144s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 144s rust-oxrdfxml:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2+default-dev 144s autopkgtest: DBG: Test defined: name rust-oxsdatatypes:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxsdatatypes 0.2.2 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxsdatatypes:default'] depends ['dh-rust', 'librust-oxsdatatypes-0.2+default-dev'] 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2-dev 144s rust-oxsdatatypes:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2-dev 144s rust-oxsdatatypes: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2+custom-now-dev 144s rust-oxsdatatypes:custom-now SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxttl-0.1+default-dev 144s autopkgtest: DBG: Test defined: name rust-oxttl:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxttl 0.1.5 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxttl:default'] depends ['dh-rust', 'librust-oxttl-0.1+default-dev'] 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxttl-0.1-dev 144s rust-oxttl:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxttl-0.1-dev 144s rust-oxttl: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxttl-0.1+async-tokio-dev 144s rust-oxttl:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-oxttl-0.1+rdf-star-dev 144s rust-oxttl:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 144s autopkgtest: DBG: processing dependency dh-rust 144s autopkgtest: DBG: processing dependency librust-sparesults-0.2+default-dev 144s autopkgtest: DBG: Test defined: name rust-sparesults:default path None command "/usr/share/dh-rust/bin/cargo-auto-test sparesults 0.2.4 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-sparesults:default'] depends ['dh-rust', 'librust-sparesults-0.2+default-dev'] 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-sparesults-0.2-dev 145s rust-sparesults:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-sparesults-0.2-dev 145s rust-sparesults: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-sparesults-0.2+rdf-star-dev 145s rust-sparesults:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spareval-0.1+default-dev 145s autopkgtest: DBG: Test defined: name rust-spareval:default path None command "/usr/share/dh-rust/bin/cargo-auto-test spareval 0.1.1 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-spareval:default'] depends ['dh-rust', 'librust-spareval-0.1+default-dev'] 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spareval-0.1-dev 145s rust-spareval:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spareval-0.1-dev 145s rust-spareval: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spareval-0.1+calendar-ext-dev 145s rust-spareval:calendar-ext SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spareval-0.1+rdf-star-dev 145s rust-spareval:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spareval-0.1+sep-0002-dev 145s rust-spareval:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spareval-0.1+sep-0006-dev 145s rust-spareval:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spargebra-0.3+default-dev 145s autopkgtest: DBG: Test defined: name rust-spargebra:default path None command "/usr/share/dh-rust/bin/cargo-auto-test spargebra 0.3.4 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-spargebra:default'] depends ['dh-rust', 'librust-spargebra-0.3+default-dev'] 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spargebra-0.3-dev 145s rust-spargebra:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 145s autopkgtest: DBG: processing dependency dh-rust 145s autopkgtest: DBG: processing dependency librust-spargebra-0.3-dev 146s rust-spargebra: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-spargebra-0.3+rdf-star-dev 146s rust-spargebra:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-spargebra-0.3+sep-0002-dev 146s rust-spargebra:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-spargebra-0.3+sep-0006-dev 146s rust-spargebra:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-sparopt-0.2+default-dev 146s autopkgtest: DBG: Test defined: name rust-sparopt:default path None command "/usr/share/dh-rust/bin/cargo-auto-test sparopt 0.2.0 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-sparopt:default'] depends ['dh-rust', 'librust-sparopt-0.2+default-dev'] 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-sparopt-0.2-dev 146s rust-sparopt:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-sparopt-0.2-dev 146s rust-sparopt: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-sparopt-0.2+rdf-star-dev 146s rust-sparopt:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-sparopt-0.2+sep-0002-dev 146s rust-sparopt:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-sparopt-0.2+sep-0006-dev 146s rust-sparopt:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 146s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 146s autopkgtest: DBG: processing dependency librust-oxigraph-0.4+default-dev 146s autopkgtest: DBG: Test defined: name rust-oxigraph:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxigraph 0.4.7 --all-targets --no-fail-fast -- --skip test_backup --skip test_backward_compatibility --skip test_secondary" restrictions ['allow-stderr'] features ['test-name=rust-oxigraph:default'] depends ['dh-rust', 'librust-cc-1+parallel-dev', 'librust-is-terminal-0.4+default-dev', 'librust-oxigraph-0.4+default-dev'] 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 146s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 146s autopkgtest: DBG: processing dependency librust-oxigraph-0.4-dev 146s rust-oxigraph:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 146s autopkgtest: DBG: processing dependency dh-rust 146s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 146s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 146s autopkgtest: DBG: processing dependency librust-oxigraph-0.4-dev 147s rust-oxigraph: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 147s autopkgtest: DBG: processing dependency dh-rust 147s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 147s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 147s autopkgtest: DBG: processing dependency librust-oxigraph-0.4+http-client-dev 147s rust-oxigraph:http-client SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 147s autopkgtest: DBG: processing dependency dh-rust 147s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 147s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 147s autopkgtest: DBG: processing dependency librust-oxigraph-0.4+rocksdb-debug-dev 147s rust-oxigraph:rocksdb-debug SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 147s autopkgtest: DBG: processing dependency dh-rust 147s autopkgtest: DBG: processing dependency librust-bindgen-dev (<< 0.72) 147s autopkgtest: DBG: processing dependency librust-cc-1+default-dev 147s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 147s autopkgtest: DBG: processing dependency librust-oxrocksdb-sys-0.4+default-dev 147s autopkgtest: DBG: Test defined: name rust-oxrocksdb-sys:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrocksdb-sys 0.4.7 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrocksdb-sys:default'] depends ['dh-rust', 'librust-bindgen-dev (<< 0.72)', 'librust-cc-1+default-dev', 'librust-cc-1+parallel-dev', 'librust-oxrocksdb-sys-0.4+default-dev'] 147s autopkgtest: DBG: processing dependency dh-rust 147s autopkgtest: DBG: processing dependency librust-bindgen-dev (<< 0.72) 147s autopkgtest: DBG: processing dependency librust-cc-1+default-dev 147s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 147s autopkgtest: DBG: processing dependency librust-oxrocksdb-sys-0.4-dev 147s rust-oxrocksdb-sys:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 147s autopkgtest: DBG: processing dependency dh-rust 147s autopkgtest: DBG: processing dependency librust-bindgen-dev (<< 0.72) 147s autopkgtest: DBG: processing dependency librust-cc-1+default-dev 147s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 147s autopkgtest: DBG: processing dependency librust-oxrocksdb-sys-0.4+pkg-config-dev 147s rust-oxrocksdb-sys:pkg-config SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 147s autopkgtest: DBG: processing dependency oxigraph 147s autopkgtest: DBG: marked alternatives ['oxigraph'] as a synthesised dependency 147s autopkgtest: DBG: Test defined: name command1 path None command "echo ' a .' | oxigraph convert --from-format ttl --from-base http://example.com/foo --to-format ttl | grep -Fxq '<> a .'" restrictions [] features [] depends ['oxigraph'] 147s autopkgtest [01:29:20]: build not needed 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/build.qEj/src/ /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: processing dependency dh-rust 148s autopkgtest: DBG: processing dependency librust-oxrdf-0.2+default-dev 148s autopkgtest: DBG: Test defined: name rust-oxrdf:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrdf 0.2.4 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrdf:default'] depends ['dh-rust', 'librust-oxrdf-0.2+default-dev'] 148s autopkgtest: DBG: processing dependency dh-rust 148s autopkgtest: DBG: processing dependency librust-oxrdf-0.2-dev 148s rust-oxrdf:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 148s autopkgtest: DBG: processing dependency dh-rust 148s autopkgtest: DBG: processing dependency librust-oxrdf-0.2-dev 148s rust-oxrdf: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 148s autopkgtest: DBG: processing dependency dh-rust 148s autopkgtest: DBG: processing dependency librust-oxrdf-0.2+rdf-star-dev 148s rust-oxrdf:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 148s autopkgtest: DBG: processing dependency dh-rust 148s autopkgtest: DBG: processing dependency librust-oxrdf-0.2+oxsdatatypes-dev 148s rust-oxrdf:oxsdatatypes SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 148s autopkgtest: DBG: processing dependency dh-rust 148s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1+default-dev 148s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 148s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 148s autopkgtest: DBG: Test defined: name rust-oxrdfio:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrdfio 0.1.5 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrdfio:default'] depends ['dh-rust', 'librust-oxrdfio-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 148s autopkgtest: DBG: processing dependency dh-rust 148s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1-dev 148s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 148s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 149s rust-oxrdfio:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 149s rust-oxrdfio: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxrdfio-0.1+async-tokio-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 149s rust-oxrdfio:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1+default-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 149s autopkgtest: DBG: Test defined: name rust-oxrdfxml:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrdfxml 0.1.5 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrdfxml:default'] depends ['dh-rust', 'librust-oxrdfxml-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 149s rust-oxrdfxml:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 149s rust-oxrdfxml: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxrdfxml-0.1+async-tokio-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+macros-dev 149s autopkgtest: DBG: processing dependency librust-tokio-1+rt-dev 149s rust-oxrdfxml:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2+default-dev 149s autopkgtest: DBG: Test defined: name rust-oxsdatatypes:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxsdatatypes 0.2.2 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxsdatatypes:default'] depends ['dh-rust', 'librust-oxsdatatypes-0.2+default-dev'] 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2-dev 149s rust-oxsdatatypes:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2-dev 149s rust-oxsdatatypes: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 149s autopkgtest: DBG: processing dependency dh-rust 149s autopkgtest: DBG: processing dependency librust-oxsdatatypes-0.2+custom-now-dev 150s rust-oxsdatatypes:custom-now SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-oxttl-0.1+default-dev 150s autopkgtest: DBG: Test defined: name rust-oxttl:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxttl 0.1.5 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxttl:default'] depends ['dh-rust', 'librust-oxttl-0.1+default-dev'] 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-oxttl-0.1-dev 150s rust-oxttl:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-oxttl-0.1-dev 150s rust-oxttl: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-oxttl-0.1+async-tokio-dev 150s rust-oxttl:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-oxttl-0.1+rdf-star-dev 150s rust-oxttl:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-sparesults-0.2+default-dev 150s autopkgtest: DBG: Test defined: name rust-sparesults:default path None command "/usr/share/dh-rust/bin/cargo-auto-test sparesults 0.2.4 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-sparesults:default'] depends ['dh-rust', 'librust-sparesults-0.2+default-dev'] 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-sparesults-0.2-dev 150s rust-sparesults:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-sparesults-0.2-dev 150s rust-sparesults: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-sparesults-0.2+rdf-star-dev 150s rust-sparesults:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 150s autopkgtest: DBG: processing dependency dh-rust 150s autopkgtest: DBG: processing dependency librust-spareval-0.1+default-dev 150s autopkgtest: DBG: Test defined: name rust-spareval:default path None command "/usr/share/dh-rust/bin/cargo-auto-test spareval 0.1.1 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-spareval:default'] depends ['dh-rust', 'librust-spareval-0.1+default-dev'] 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spareval-0.1-dev 151s rust-spareval:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spareval-0.1-dev 151s rust-spareval: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spareval-0.1+calendar-ext-dev 151s rust-spareval:calendar-ext SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spareval-0.1+rdf-star-dev 151s rust-spareval:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spareval-0.1+sep-0002-dev 151s rust-spareval:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spareval-0.1+sep-0006-dev 151s rust-spareval:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spargebra-0.3+default-dev 151s autopkgtest: DBG: Test defined: name rust-spargebra:default path None command "/usr/share/dh-rust/bin/cargo-auto-test spargebra 0.3.4 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-spargebra:default'] depends ['dh-rust', 'librust-spargebra-0.3+default-dev'] 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spargebra-0.3-dev 151s rust-spargebra:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spargebra-0.3-dev 151s rust-spargebra: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spargebra-0.3+rdf-star-dev 151s rust-spargebra:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest: DBG: processing dependency dh-rust 151s autopkgtest: DBG: processing dependency librust-spargebra-0.3+sep-0002-dev 151s rust-spargebra:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-spargebra-0.3+sep-0006-dev 152s rust-spargebra:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-sparopt-0.2+default-dev 152s autopkgtest: DBG: Test defined: name rust-sparopt:default path None command "/usr/share/dh-rust/bin/cargo-auto-test sparopt 0.2.0 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-sparopt:default'] depends ['dh-rust', 'librust-sparopt-0.2+default-dev'] 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-sparopt-0.2-dev 152s rust-sparopt:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-sparopt-0.2-dev 152s rust-sparopt: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-sparopt-0.2+rdf-star-dev 152s rust-sparopt:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-sparopt-0.2+sep-0002-dev 152s rust-sparopt:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-sparopt-0.2+sep-0006-dev 152s rust-sparopt:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 152s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 152s autopkgtest: DBG: processing dependency librust-oxigraph-0.4+default-dev 152s autopkgtest: DBG: Test defined: name rust-oxigraph:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxigraph 0.4.7 --all-targets --no-fail-fast -- --skip test_backup --skip test_backward_compatibility --skip test_secondary" restrictions ['allow-stderr'] features ['test-name=rust-oxigraph:default'] depends ['dh-rust', 'librust-cc-1+parallel-dev', 'librust-is-terminal-0.4+default-dev', 'librust-oxigraph-0.4+default-dev'] 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 152s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 152s autopkgtest: DBG: processing dependency librust-oxigraph-0.4-dev 152s rust-oxigraph:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 152s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 152s autopkgtest: DBG: processing dependency librust-oxigraph-0.4-dev 152s rust-oxigraph: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 152s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 152s autopkgtest: DBG: processing dependency librust-oxigraph-0.4+http-client-dev 152s rust-oxigraph:http-client SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 152s autopkgtest: DBG: processing dependency dh-rust 152s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 152s autopkgtest: DBG: processing dependency librust-is-terminal-0.4+default-dev 152s autopkgtest: DBG: processing dependency librust-oxigraph-0.4+rocksdb-debug-dev 152s rust-oxigraph:rocksdb-debug SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 153s autopkgtest: DBG: processing dependency dh-rust 153s autopkgtest: DBG: processing dependency librust-bindgen-dev (<< 0.72) 153s autopkgtest: DBG: processing dependency librust-cc-1+default-dev 153s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 153s autopkgtest: DBG: processing dependency librust-oxrocksdb-sys-0.4+default-dev 153s autopkgtest: DBG: Test defined: name rust-oxrocksdb-sys:default path None command "/usr/share/dh-rust/bin/cargo-auto-test oxrocksdb-sys 0.4.7 --all-targets" restrictions ['allow-stderr'] features ['test-name=rust-oxrocksdb-sys:default'] depends ['dh-rust', 'librust-bindgen-dev (<< 0.72)', 'librust-cc-1+default-dev', 'librust-cc-1+parallel-dev', 'librust-oxrocksdb-sys-0.4+default-dev'] 153s autopkgtest: DBG: processing dependency dh-rust 153s autopkgtest: DBG: processing dependency librust-bindgen-dev (<< 0.72) 153s autopkgtest: DBG: processing dependency librust-cc-1+default-dev 153s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 153s autopkgtest: DBG: processing dependency librust-oxrocksdb-sys-0.4-dev 153s rust-oxrocksdb-sys:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 153s autopkgtest: DBG: processing dependency dh-rust 153s autopkgtest: DBG: processing dependency librust-bindgen-dev (<< 0.72) 153s autopkgtest: DBG: processing dependency librust-cc-1+default-dev 153s autopkgtest: DBG: processing dependency librust-cc-1+parallel-dev 153s autopkgtest: DBG: processing dependency librust-oxrocksdb-sys-0.4+pkg-config-dev 153s rust-oxrocksdb-sys:pkg-config SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 153s autopkgtest: DBG: processing dependency oxigraph 153s autopkgtest: DBG: marked alternatives ['oxigraph'] as a synthesised dependency 153s autopkgtest: DBG: Test defined: name command1 path None command "echo ' a .' | oxigraph convert --from-format ttl --from-base http://example.com/foo --to-format ttl | grep -Fxq '<> a .'" restrictions [] features [] depends ['oxigraph'] 153s autopkgtest [01:29:26]: test rust-oxrdf:default: preparing testbed 153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-rust', 'librust-oxrdf-0.2+default-dev'] 153s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 153s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-oxrdf-0.2+default-dev'] 153s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-oxrdf-0.2+default-dev 153s autopkgtest: DBG: can use apt-get on testbed: True 153s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-oxrdf-0.2+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 153s Reading package lists... 153s Building dependency tree... 153s Reading state information... 153s Starting pkgProblemResolver with broken count: 0 153s Starting 2 pkgProblemResolver with broken count: 0 153s Done 154s The following NEW packages will be installed: 154s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 154s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 154s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 154s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 154s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 154s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 154s librust-addr2line-dev librust-adler-dev librust-ahash-dev 154s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 154s librust-backtrace-dev librust-blobby-dev librust-block-buffer-dev 154s librust-bumpalo-dev librust-byteorder-dev librust-bytes-dev 154s librust-cfg-if-dev librust-compiler-builtins-dev librust-const-oid-dev 154s librust-const-random-dev librust-const-random-macro-dev 154s librust-cpp-demangle-dev librust-crc32fast-dev librust-critical-section-dev 154s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 154s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 154s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 154s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 154s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 154s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 154s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev 154s librust-js-sys-dev librust-libc-dev librust-libz-sys-dev 154s librust-lock-api-dev librust-log-dev librust-memchr-dev librust-memmap2-dev 154s librust-miniz-oxide-dev librust-mio-dev librust-no-panic-dev 154s librust-object-dev librust-once-cell-dev librust-owning-ref-dev 154s librust-oxilangtag-dev librust-oxiri-dev librust-oxrdf-dev 154s librust-oxsdatatypes-dev librust-parking-lot-core-dev 154s librust-parking-lot-dev librust-pin-project-lite-dev librust-pkg-config-dev 154s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 154s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 154s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 154s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 154s librust-rayon-core-dev librust-rayon-dev librust-rustc-demangle-dev 154s librust-rustc-std-workspace-core-dev librust-ruzstd-dev librust-ryu-dev 154s librust-scopeguard-dev librust-serde-derive-dev librust-serde-dev 154s librust-serde-fmt-dev librust-serde-json-dev librust-serde-test-dev 154s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 154s librust-stable-deref-trait-dev librust-static-assertions-dev 154s librust-subtle-dev librust-sval-buffer-dev librust-sval-derive-dev 154s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 154s librust-sval-ref-dev librust-sval-serde-dev librust-syn-1-dev 154s librust-syn-dev librust-thiserror-1-dev librust-thiserror-impl-1-dev 154s librust-tiny-keccak-dev librust-tokio-dev librust-tokio-macros-dev 154s librust-tracing-attributes-dev librust-tracing-core-dev librust-tracing-dev 154s librust-twox-hash-dev librust-typed-arena-dev librust-typenum-dev 154s librust-unicode-ident-dev librust-valuable-derive-dev librust-valuable-dev 154s librust-value-bag-dev librust-value-bag-serde1-dev 154s librust-value-bag-sval2-dev librust-version-check-dev 154s librust-wasm-bindgen-backend-dev librust-wasm-bindgen-dev 154s librust-wasm-bindgen-macro-dev librust-wasm-bindgen-macro-support-dev 154s librust-wasm-bindgen-shared-dev librust-zerocopy-derive-dev 154s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 154s libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 m4 pkgconf 154s pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 154s 0 upgraded, 171 newly installed, 0 to remove and 0 not upgraded. 154s Need to get 137 MB of archives. 154s After this operation, 534 MB of additional disk space will be used. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 154s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 154s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 154s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 154s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 155s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 158s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 158s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 158s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 158s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 158s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 158s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 158s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 158s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 158s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 158s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 158s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 158s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 158s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 159s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 159s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 159s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 159s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 159s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 160s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 160s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 160s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 160s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 160s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 160s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 160s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 160s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 160s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 160s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 160s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 160s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 160s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 160s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 160s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 160s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 160s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 160s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 160s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 160s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 160s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 160s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 160s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 160s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 160s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 160s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 160s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 160s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 160s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 160s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 160s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 160s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 160s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 160s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 160s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 160s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 160s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 160s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 160s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 160s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 160s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 160s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 160s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 160s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 160s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 160s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 160s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 160s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 160s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 160s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 160s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 160s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 160s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 160s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 160s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 160s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 160s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 161s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 161s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 161s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 161s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 161s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 161s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 161s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 161s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 161s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 161s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 161s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 161s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 161s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 161s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 161s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 161s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 161s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 161s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 161s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 161s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 161s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 161s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 161s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 161s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 161s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 161s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 161s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 161s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 161s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 161s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 161s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 161s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 161s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 161s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 161s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 161s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 161s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 161s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 161s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 161s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 161s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 161s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 161s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 161s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 161s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 161s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 161s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 161s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 162s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 162s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 162s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 162s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 162s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 162s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 162s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 162s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 162s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 162s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 162s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 162s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 162s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 162s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 162s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 162s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 162s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 162s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 162s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 162s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 162s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 162s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 162s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 162s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 162s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 162s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 162s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 162s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 162s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 162s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 162s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 162s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 162s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 162s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 162s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 162s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 162s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 162s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 162s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 162s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 163s Fetched 137 MB in 9s (16.1 MB/s) 163s Selecting previously unselected package m4. 163s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 163s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 163s Unpacking m4 (1.4.19-5) ... 163s Selecting previously unselected package autoconf. 163s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 163s Unpacking autoconf (2.72-3) ... 163s Selecting previously unselected package autotools-dev. 163s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 163s Unpacking autotools-dev (20220109.1) ... 163s Selecting previously unselected package automake. 163s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 163s Unpacking automake (1:1.17-3) ... 163s Selecting previously unselected package autopoint. 163s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 163s Unpacking autopoint (0.23.1-1) ... 163s Selecting previously unselected package libgit2-1.8:s390x. 163s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 163s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 163s Selecting previously unselected package libstd-rust-1.83:s390x. 163s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 163s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 163s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 163s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 163s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 164s Selecting previously unselected package libisl23:s390x. 164s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 164s Unpacking libisl23:s390x (0.27-1) ... 164s Selecting previously unselected package libmpc3:s390x. 164s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 164s Unpacking libmpc3:s390x (1.3.1-1build2) ... 164s Selecting previously unselected package cpp-14-s390x-linux-gnu. 164s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 164s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 164s Selecting previously unselected package cpp-14. 164s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 164s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 164s Selecting previously unselected package cpp-s390x-linux-gnu. 164s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 164s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 164s Selecting previously unselected package cpp. 164s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 164s Unpacking cpp (4:14.2.0-1ubuntu1) ... 164s Selecting previously unselected package libcc1-0:s390x. 164s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 164s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 164s Selecting previously unselected package libgomp1:s390x. 164s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 164s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 164s Selecting previously unselected package libitm1:s390x. 164s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 164s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 164s Selecting previously unselected package libasan8:s390x. 164s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 164s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 165s Selecting previously unselected package libubsan1:s390x. 165s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 165s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 165s Selecting previously unselected package libgcc-14-dev:s390x. 165s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 165s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 165s Selecting previously unselected package gcc-14-s390x-linux-gnu. 165s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 165s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 165s Selecting previously unselected package gcc-14. 165s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 165s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 165s Selecting previously unselected package gcc-s390x-linux-gnu. 165s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 165s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 165s Selecting previously unselected package gcc. 165s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 165s Unpacking gcc (4:14.2.0-1ubuntu1) ... 165s Selecting previously unselected package rustc-1.83. 165s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 165s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 165s Selecting previously unselected package cargo-1.83. 165s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 165s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 165s Selecting previously unselected package libdebhelper-perl. 165s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 165s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 165s Selecting previously unselected package libtool. 165s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 165s Unpacking libtool (2.5.4-3build1) ... 165s Selecting previously unselected package dh-autoreconf. 165s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 165s Unpacking dh-autoreconf (20) ... 165s Selecting previously unselected package libarchive-zip-perl. 165s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 165s Unpacking libarchive-zip-perl (1.68-1) ... 165s Selecting previously unselected package libfile-stripnondeterminism-perl. 165s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 165s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 165s Selecting previously unselected package dh-strip-nondeterminism. 165s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 165s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 165s Selecting previously unselected package debugedit. 165s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 165s Unpacking debugedit (1:5.1-2) ... 165s Selecting previously unselected package dwz. 165s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 165s Unpacking dwz (0.15-1build6) ... 165s Selecting previously unselected package gettext. 165s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 165s Unpacking gettext (0.23.1-1) ... 165s Selecting previously unselected package intltool-debian. 165s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 165s Unpacking intltool-debian (0.35.0+20060710.6) ... 165s Selecting previously unselected package po-debconf. 165s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 165s Unpacking po-debconf (1.0.21+nmu1) ... 165s Selecting previously unselected package debhelper. 165s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 165s Unpacking debhelper (13.24.1ubuntu2) ... 165s Selecting previously unselected package rustc. 165s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 165s Unpacking rustc (1.83.0ubuntu1) ... 165s Selecting previously unselected package cargo. 165s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 165s Unpacking cargo (1.83.0ubuntu1) ... 165s Selecting previously unselected package dh-rust. 165s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 165s Unpacking dh-rust (0.0.11) ... 165s Selecting previously unselected package libpkgconf3:s390x. 165s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 165s Unpacking libpkgconf3:s390x (1.8.1-4) ... 165s Selecting previously unselected package librust-cfg-if-dev:s390x. 165s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 165s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 165s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 165s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 165s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 165s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 165s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 165s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 165s Selecting previously unselected package librust-unicode-ident-dev:s390x. 165s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 165s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 166s Selecting previously unselected package librust-proc-macro2-dev:s390x. 166s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 166s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 166s Selecting previously unselected package librust-quote-dev:s390x. 166s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 166s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 166s Selecting previously unselected package librust-syn-dev:s390x. 166s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 166s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 166s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 166s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 166s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 166s Selecting previously unselected package librust-arbitrary-dev:s390x. 166s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 166s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 166s Selecting previously unselected package librust-equivalent-dev:s390x. 166s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 166s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 166s Selecting previously unselected package librust-critical-section-dev:s390x. 166s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 166s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 166s Selecting previously unselected package librust-serde-derive-dev:s390x. 166s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 166s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 166s Selecting previously unselected package librust-serde-dev:s390x. 166s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 166s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 166s Selecting previously unselected package librust-portable-atomic-dev:s390x. 166s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 166s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 166s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 166s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 166s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 166s Selecting previously unselected package librust-libc-dev:s390x. 166s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 166s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 166s Selecting previously unselected package librust-getrandom-dev:s390x. 166s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 166s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 166s Selecting previously unselected package librust-smallvec-dev:s390x. 166s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 166s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 166s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 166s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 166s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 166s Selecting previously unselected package librust-once-cell-dev:s390x. 166s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 166s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 166s Selecting previously unselected package librust-crunchy-dev:s390x. 166s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 166s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 166s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 166s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 166s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 166s Selecting previously unselected package librust-const-random-macro-dev:s390x. 166s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 166s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 166s Selecting previously unselected package librust-const-random-dev:s390x. 166s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 166s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 166s Selecting previously unselected package librust-version-check-dev:s390x. 166s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 166s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 166s Selecting previously unselected package librust-byteorder-dev:s390x. 166s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 166s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 166s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 166s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 166s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 166s Selecting previously unselected package librust-zerocopy-dev:s390x. 166s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 166s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 166s Selecting previously unselected package librust-ahash-dev. 166s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 166s Unpacking librust-ahash-dev (0.8.11-9) ... 166s Selecting previously unselected package librust-allocator-api2-dev:s390x. 166s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 166s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 166s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 166s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 166s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 166s Selecting previously unselected package librust-either-dev:s390x. 166s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 166s Unpacking librust-either-dev:s390x (1.13.0-1) ... 166s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 166s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 166s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 166s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 166s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 166s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 166s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 166s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 166s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 166s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 166s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 166s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 166s Selecting previously unselected package librust-rayon-core-dev:s390x. 166s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 166s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 166s Selecting previously unselected package librust-rayon-dev:s390x. 166s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 166s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 166s Selecting previously unselected package librust-hashbrown-dev:s390x. 166s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 166s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 166s Selecting previously unselected package librust-indexmap-dev:s390x. 166s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 166s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 166s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 166s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 166s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 166s Selecting previously unselected package librust-gimli-dev:s390x. 166s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 166s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 166s Selecting previously unselected package librust-memmap2-dev:s390x. 166s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 166s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 166s Selecting previously unselected package librust-crc32fast-dev:s390x. 166s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 166s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 166s Selecting previously unselected package pkgconf-bin. 166s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 166s Unpacking pkgconf-bin (1.8.1-4) ... 166s Selecting previously unselected package pkgconf:s390x. 166s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 166s Unpacking pkgconf:s390x (1.8.1-4) ... 166s Selecting previously unselected package librust-pkg-config-dev:s390x. 166s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 166s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 166s Selecting previously unselected package zlib1g-dev:s390x. 166s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 166s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 166s Selecting previously unselected package librust-libz-sys-dev:s390x. 166s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 166s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 166s Selecting previously unselected package librust-adler-dev:s390x. 166s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 166s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 166s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 166s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 166s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 166s Selecting previously unselected package librust-flate2-dev:s390x. 166s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 166s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 166s Selecting previously unselected package librust-sval-derive-dev:s390x. 166s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 166s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 166s Selecting previously unselected package librust-sval-dev:s390x. 166s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 166s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 166s Selecting previously unselected package librust-sval-ref-dev:s390x. 166s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 166s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 166s Selecting previously unselected package librust-erased-serde-dev:s390x. 166s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 166s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 166s Selecting previously unselected package librust-serde-fmt-dev. 166s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 166s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 166s Selecting previously unselected package librust-no-panic-dev:s390x. 166s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 166s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 166s Selecting previously unselected package librust-itoa-dev:s390x. 166s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 166s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 166s Selecting previously unselected package librust-ryu-dev:s390x. 166s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 166s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 166s Selecting previously unselected package librust-serde-json-dev:s390x. 166s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 166s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 166s Selecting previously unselected package librust-serde-test-dev:s390x. 166s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 166s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 166s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 166s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 166s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 166s Selecting previously unselected package librust-sval-buffer-dev:s390x. 166s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 166s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 166s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 166s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 166s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 166s Selecting previously unselected package librust-sval-fmt-dev:s390x. 166s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 166s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 166s Selecting previously unselected package librust-sval-serde-dev:s390x. 166s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 166s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 166s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 166s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 166s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 166s Selecting previously unselected package librust-value-bag-dev:s390x. 166s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 166s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 166s Selecting previously unselected package librust-log-dev:s390x. 166s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 166s Unpacking librust-log-dev:s390x (0.4.22-1) ... 166s Selecting previously unselected package librust-memchr-dev:s390x. 166s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 166s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 166s Selecting previously unselected package librust-blobby-dev:s390x. 166s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 166s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 166s Selecting previously unselected package librust-typenum-dev:s390x. 166s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 166s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 166s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 166s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 166s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 166s Selecting previously unselected package librust-zeroize-dev:s390x. 166s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 166s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 166s Selecting previously unselected package librust-generic-array-dev:s390x. 166s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 166s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 166s Selecting previously unselected package librust-block-buffer-dev:s390x. 166s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 166s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 166s Selecting previously unselected package librust-const-oid-dev:s390x. 166s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 166s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 166s Selecting previously unselected package librust-rand-core-dev:s390x. 166s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 166s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 166s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 166s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 166s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 166s Selecting previously unselected package librust-crypto-common-dev:s390x. 166s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 166s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 167s Selecting previously unselected package librust-subtle-dev:s390x. 167s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 167s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 167s Selecting previously unselected package librust-digest-dev:s390x. 167s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 167s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 167s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 167s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 167s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 167s Selecting previously unselected package librust-rand-chacha-dev:s390x. 167s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 167s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 167s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 167s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 167s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 167s Selecting previously unselected package librust-rand-core+std-dev:s390x. 167s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 167s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 167s Selecting previously unselected package librust-rand-dev:s390x. 167s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 167s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 167s Selecting previously unselected package librust-static-assertions-dev:s390x. 167s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 167s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 167s Selecting previously unselected package librust-twox-hash-dev:s390x. 167s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 167s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 167s Selecting previously unselected package librust-ruzstd-dev:s390x. 167s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 167s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 167s Selecting previously unselected package librust-object-dev:s390x. 167s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 167s Unpacking librust-object-dev:s390x (0.36.5-2) ... 167s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 167s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 167s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 167s Selecting previously unselected package librust-typed-arena-dev:s390x. 167s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 167s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 167s Selecting previously unselected package librust-addr2line-dev:s390x. 167s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 167s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 167s Selecting previously unselected package librust-autocfg-dev:s390x. 167s Preparing to unpack .../137-librust-autocfg-dev_1.1.0-1_s390x.deb ... 167s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 167s Selecting previously unselected package librust-backtrace-dev:s390x. 167s Preparing to unpack .../138-librust-backtrace-dev_0.3.74-3_s390x.deb ... 167s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 167s Selecting previously unselected package librust-bumpalo-dev:s390x. 167s Preparing to unpack .../139-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 167s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 167s Selecting previously unselected package librust-bytes-dev:s390x. 167s Preparing to unpack .../140-librust-bytes-dev_1.9.0-1_s390x.deb ... 167s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 167s Selecting previously unselected package librust-encoding-rs-dev:s390x. 167s Preparing to unpack .../141-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 167s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 167s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 167s Preparing to unpack .../142-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 167s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 167s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 167s Preparing to unpack .../143-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 167s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 167s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 167s Preparing to unpack .../144-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 167s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 167s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 167s Preparing to unpack .../145-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 167s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 167s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 167s Preparing to unpack .../146-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 167s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 167s Selecting previously unselected package librust-js-sys-dev:s390x. 167s Preparing to unpack .../147-librust-js-sys-dev_0.3.64-1_s390x.deb ... 167s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 167s Selecting previously unselected package librust-owning-ref-dev:s390x. 167s Preparing to unpack .../148-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 167s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 167s Selecting previously unselected package librust-scopeguard-dev:s390x. 167s Preparing to unpack .../149-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 167s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 167s Selecting previously unselected package librust-lock-api-dev:s390x. 167s Preparing to unpack .../150-librust-lock-api-dev_0.4.12-1_s390x.deb ... 167s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 167s Selecting previously unselected package librust-mio-dev:s390x. 167s Preparing to unpack .../151-librust-mio-dev_1.0.2-3_s390x.deb ... 167s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 167s Selecting previously unselected package librust-oxilangtag-dev. 167s Preparing to unpack .../152-librust-oxilangtag-dev_0.1.5-4_all.deb ... 167s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 167s Selecting previously unselected package librust-oxiri-dev. 167s Preparing to unpack .../153-librust-oxiri-dev_0.2.11-2_all.deb ... 167s Unpacking librust-oxiri-dev (0.2.11-2) ... 167s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 167s Preparing to unpack .../154-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 167s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 167s Selecting previously unselected package librust-thiserror-1-dev:s390x. 167s Preparing to unpack .../155-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 167s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 167s Selecting previously unselected package librust-oxsdatatypes-dev. 167s Preparing to unpack .../156-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 167s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 167s Selecting previously unselected package librust-parking-lot-dev:s390x. 167s Preparing to unpack .../157-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 167s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 167s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 167s Preparing to unpack .../158-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 167s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 167s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 167s Preparing to unpack .../159-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 167s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 167s Selecting previously unselected package librust-socket2-dev:s390x. 167s Preparing to unpack .../160-librust-socket2-dev_0.5.8-1_s390x.deb ... 167s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 167s Selecting previously unselected package librust-tokio-macros-dev:s390x. 167s Preparing to unpack .../161-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 167s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 167s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 167s Preparing to unpack .../162-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 167s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 167s Selecting previously unselected package librust-syn-1-dev:s390x. 167s Preparing to unpack .../163-librust-syn-1-dev_1.0.109-3_s390x.deb ... 167s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 167s Selecting previously unselected package librust-valuable-derive-dev:s390x. 167s Preparing to unpack .../164-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 167s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 167s Selecting previously unselected package librust-valuable-dev:s390x. 167s Preparing to unpack .../165-librust-valuable-dev_0.1.0-4_s390x.deb ... 167s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 167s Selecting previously unselected package librust-tracing-core-dev:s390x. 167s Preparing to unpack .../166-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 167s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 167s Selecting previously unselected package librust-tracing-dev:s390x. 167s Preparing to unpack .../167-librust-tracing-dev_0.1.40-1_s390x.deb ... 167s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 167s Selecting previously unselected package librust-tokio-dev:s390x. 167s Preparing to unpack .../168-librust-tokio-dev_1.43.0-1_s390x.deb ... 167s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 167s Selecting previously unselected package librust-quick-xml-dev:s390x. 167s Preparing to unpack .../169-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 167s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 167s Selecting previously unselected package librust-oxrdf-dev. 167s Preparing to unpack .../170-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 167s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 167s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 167s Setting up librust-either-dev:s390x (1.13.0-1) ... 167s Setting up librust-adler-dev:s390x (1.0.2-2) ... 167s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 167s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 167s Setting up libarchive-zip-perl (1.68-1) ... 167s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 167s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 167s Setting up m4 (1.4.19-5) ... 167s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 167s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 167s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 167s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 167s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 167s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 167s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 167s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 167s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 167s Setting up autotools-dev (20220109.1) ... 167s Setting up libpkgconf3:s390x (1.8.1-4) ... 167s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 167s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 167s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 167s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 167s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 167s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 167s Setting up libmpc3:s390x (1.3.1-1build2) ... 167s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 167s Setting up autopoint (0.23.1-1) ... 167s Setting up pkgconf-bin (1.8.1-4) ... 167s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 167s Setting up autoconf (2.72-3) ... 167s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 167s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 167s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 167s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 167s Setting up dwz (0.15-1build6) ... 167s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 167s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 167s Setting up debugedit (1:5.1-2) ... 167s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 167s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 167s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 167s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 167s Setting up libisl23:s390x (0.27-1) ... 167s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 167s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 167s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 167s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 167s Setting up automake (1:1.17-3) ... 167s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 167s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 167s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 167s Setting up librust-libc-dev:s390x (0.2.169-1) ... 167s Setting up gettext (0.23.1-1) ... 167s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 167s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 167s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 167s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 167s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 167s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 167s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 167s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 167s Setting up pkgconf:s390x (1.8.1-4) ... 167s Setting up intltool-debian (0.35.0+20060710.6) ... 167s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 167s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 167s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up cpp-14 (14.2.0-17ubuntu1) ... 167s Setting up dh-strip-nondeterminism (1.14.1-2) ... 167s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 167s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 167s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 167s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 167s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 167s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up po-debconf (1.0.21+nmu1) ... 167s Setting up librust-quote-dev:s390x (1.0.37-1) ... 167s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 167s Setting up librust-syn-dev:s390x (2.0.96-2) ... 167s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 167s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 167s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 167s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 167s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 167s Setting up cpp (4:14.2.0-1ubuntu1) ... 167s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 167s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 167s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 167s Setting up librust-serde-dev:s390x (1.0.217-1) ... 167s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 167s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 167s Setting up librust-oxilangtag-dev (0.1.5-4) ... 167s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 167s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 167s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 167s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 167s Setting up librust-serde-fmt-dev (1.0.3-4) ... 167s Setting up librust-oxiri-dev (0.2.11-2) ... 167s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 167s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 167s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 167s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 167s Setting up librust-sval-dev:s390x (2.6.1-2) ... 167s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 167s Setting up gcc-14 (14.2.0-17ubuntu1) ... 167s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 167s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 167s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 167s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 167s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 167s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 167s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 167s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 167s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 167s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 167s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 167s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 167s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 167s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 167s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 167s Setting up libtool (2.5.4-3build1) ... 167s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 167s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 167s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 167s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 167s Setting up gcc (4:14.2.0-1ubuntu1) ... 167s Setting up dh-autoreconf (20) ... 167s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 167s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 167s Setting up rustc (1.83.0ubuntu1) ... 167s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 167s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 167s Setting up librust-digest-dev:s390x (0.10.7-2) ... 167s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 167s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 167s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 167s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 167s Setting up debhelper (13.24.1ubuntu2) ... 167s Setting up librust-ahash-dev (0.8.11-9) ... 167s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 167s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 167s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 167s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 167s Setting up cargo (1.83.0ubuntu1) ... 167s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 167s Setting up dh-rust (0.0.11) ... 167s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 167s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 167s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 167s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 167s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 167s Setting up librust-log-dev:s390x (0.4.22-1) ... 167s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 167s Setting up librust-rand-dev:s390x (0.8.5-1) ... 167s Setting up librust-mio-dev:s390x (1.0.2-3) ... 167s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 167s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 167s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 167s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 167s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 167s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 167s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 167s Setting up librust-object-dev:s390x (0.36.5-2) ... 167s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 167s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 167s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 167s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 167s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 167s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 167s Processing triggers for install-info (7.1.1-1) ... 167s Processing triggers for libc-bin (2.41-1ubuntu1) ... 167s Processing triggers for man-db (2.13.0-1) ... 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-oxrdf:default-packages.all"], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdf%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdf%3Adefault-packages.all 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.QBkw4D/build.qEj/src already exists 168s autopkgtest [01:29:41]: test rust-oxrdf:default: /usr/share/dh-rust/bin/cargo-auto-test oxrdf 0.2.4 --all-targets 168s autopkgtest [01:29:41]: test rust-oxrdf:default: [----------------------- 168s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-oxrdf:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-oxrdf:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-oxrdf:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test oxrdf 0.2.4 --all-targets'"], kind test, sout raw, serr raw, env [] 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-oxrdf:default-artifacts 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-oxrdf:default-stderr 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-oxrdf:default-stdout 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test oxrdf 0.2.4 --all-targets 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.wJxZErXECi/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-oxrdf:default-stdout 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.wJxZErXECi/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-oxrdf:default-stdout 168s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 3120 to /tmp/autopkgtest_script_pid 169s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 169s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 169s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.XGkKcFOhgI/registry/ 169s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 169s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 169s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 169s Compiling proc-macro2 v1.0.92 169s Compiling unicode-ident v1.0.13 169s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.XGkKcFOhgI/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn` 169s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.XGkKcFOhgI/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn` 169s Compiling libc v0.2.169 169s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 169s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.XGkKcFOhgI/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn` 169s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.XGkKcFOhgI/target/release/deps:/tmp/tmp.XGkKcFOhgI/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.XGkKcFOhgI/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.XGkKcFOhgI/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 169s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 169s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 169s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 169s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 169s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps OUT_DIR=/tmp/tmp.XGkKcFOhgI/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.XGkKcFOhgI/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern unicode_ident=/tmp/tmp.XGkKcFOhgI/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 169s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 169s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.XGkKcFOhgI/target/release/deps:/tmp/tmp.XGkKcFOhgI/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.XGkKcFOhgI/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 169s [libc 0.2.169] cargo:rerun-if-changed=build.rs 169s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 169s [libc 0.2.169] cargo:rustc-cfg=freebsd11 169s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 169s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 169s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 169s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps OUT_DIR=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 169s warning: unused import: `crate::ntptimeval` 169s --> /tmp/tmp.XGkKcFOhgI/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 169s | 169s 5 | use crate::ntptimeval; 169s | ^^^^^^^^^^^^^^^^^ 169s | 169s = note: `#[warn(unused_imports)]` on by default 169s 170s Compiling quote v1.0.37 170s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.XGkKcFOhgI/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern proc_macro2=/tmp/tmp.XGkKcFOhgI/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 170s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 170s | 170s = note: this feature is not stably supported; its behavior can change in the future 170s 170s warning: `libc` (lib) generated 2 warnings 170s Compiling byteorder v1.5.0 170s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 170s Compiling syn v2.0.96 170s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=25776e54546dab2e -C extra-filename=-25776e54546dab2e --out-dir /tmp/tmp.XGkKcFOhgI/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern proc_macro2=/tmp/tmp.XGkKcFOhgI/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.XGkKcFOhgI/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.XGkKcFOhgI/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 170s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 170s Compiling cfg-if v1.0.0 170s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 170s parameters. Structured like an if-else chain, the first matching branch is the 170s item that gets emitted. 170s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 170s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 170s Compiling getrandom v0.2.15 170s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern cfg_if=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 170s warning: unexpected `cfg` condition value: `js` 170s --> /tmp/tmp.XGkKcFOhgI/registry/getrandom-0.2.15/src/lib.rs:334:25 170s | 170s 334 | } else if #[cfg(all(feature = "js", 170s | ^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 170s = help: consider adding `js` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s = note: `#[warn(unexpected_cfgs)]` on by default 170s 170s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 170s Compiling rand_core v0.6.4 170s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 170s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern getrandom=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 170s warning: unexpected `cfg` condition name: `doc_cfg` 170s --> /tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/src/lib.rs:38:13 170s | 170s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 170s | ^^^^^^^ 170s | 170s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 170s = help: consider using a Cargo feature instead 170s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 170s [lints.rust] 170s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 170s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 170s = note: see for more information about checking conditional configuration 170s = note: `#[warn(unexpected_cfgs)]` on by default 170s 170s warning: unexpected `cfg` condition name: `doc_cfg` 170s --> /tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/src/error.rs:50:16 170s | 170s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 170s | ^^^^^^^ 170s | 170s = help: consider using a Cargo feature instead 170s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 170s [lints.rust] 170s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 170s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition name: `doc_cfg` 170s --> /tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/src/error.rs:64:16 170s | 170s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 170s | ^^^^^^^ 170s | 170s = help: consider using a Cargo feature instead 170s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 170s [lints.rust] 170s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 170s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition name: `doc_cfg` 170s --> /tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/src/error.rs:75:16 170s | 170s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 170s | ^^^^^^^ 170s | 170s = help: consider using a Cargo feature instead 170s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 170s [lints.rust] 170s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 170s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition name: `doc_cfg` 170s --> /tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/src/os.rs:46:12 170s | 170s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 170s | ^^^^^^^ 170s | 170s = help: consider using a Cargo feature instead 170s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 170s [lints.rust] 170s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 170s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition name: `doc_cfg` 170s --> /tmp/tmp.XGkKcFOhgI/registry/rand_core-0.6.4/src/lib.rs:411:16 170s | 170s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 170s | ^^^^^^^ 170s | 170s = help: consider using a Cargo feature instead 170s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 170s [lints.rust] 170s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 170s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 170s = note: see for more information about checking conditional configuration 170s 171s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 171s Compiling thiserror v1.0.69 171s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.XGkKcFOhgI/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn` 171s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.XGkKcFOhgI/target/release/deps:/tmp/tmp.XGkKcFOhgI/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.XGkKcFOhgI/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 171s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 171s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 171s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 171s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 171s Compiling oxilangtag v0.1.5 171s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 171s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 171s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 171s Compiling oxiri v0.2.11 171s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 171s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 172s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 172s Compiling zerocopy-derive v0.7.34 172s Compiling thiserror-impl v1.0.69 172s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ade2215b6e585001 -C extra-filename=-ade2215b6e585001 --out-dir /tmp/tmp.XGkKcFOhgI/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern proc_macro2=/tmp/tmp.XGkKcFOhgI/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.XGkKcFOhgI/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.XGkKcFOhgI/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 172s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=282169f5dfa653c6 -C extra-filename=-282169f5dfa653c6 --out-dir /tmp/tmp.XGkKcFOhgI/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern proc_macro2=/tmp/tmp.XGkKcFOhgI/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.XGkKcFOhgI/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.XGkKcFOhgI/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 173s Compiling zerocopy v0.7.34 173s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=05091faa96a9c488 -C extra-filename=-05091faa96a9c488 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern byteorder=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.XGkKcFOhgI/target/release/deps/libzerocopy_derive-ade2215b6e585001.so --cap-lints warn -Ctarget-feature=+backchain` 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/util.rs:597:32 174s | 174s 597 | let remainder = t.addr() % mem::align_of::(); 174s | ^^^^^^^^^^^^^^^^^^ 174s | 174s note: the lint level is defined here 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:174:5 174s | 174s 174 | unused_qualifications, 174s | ^^^^^^^^^^^^^^^^^^^^^ 174s help: remove the unnecessary path segments 174s | 174s 597 - let remainder = t.addr() % mem::align_of::(); 174s 597 + let remainder = t.addr() % align_of::(); 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:333:35 174s | 174s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 174s | ^^^^^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 174s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:488:44 174s | 174s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 174s | ^^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 174s 488 + align: match NonZeroUsize::new(align_of::()) { 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:492:49 174s | 174s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 174s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:511:44 174s | 174s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 174s | ^^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 174s 511 + align: match NonZeroUsize::new(align_of::()) { 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:517:29 174s | 174s 517 | _elem_size: mem::size_of::(), 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 517 - _elem_size: mem::size_of::(), 174s 517 + _elem_size: size_of::(), 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:1418:19 174s | 174s 1418 | let len = mem::size_of_val(self); 174s | ^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 1418 - let len = mem::size_of_val(self); 174s 1418 + let len = size_of_val(self); 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:2714:19 174s | 174s 2714 | let len = mem::size_of_val(self); 174s | ^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 2714 - let len = mem::size_of_val(self); 174s 2714 + let len = size_of_val(self); 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:2789:19 174s | 174s 2789 | let len = mem::size_of_val(self); 174s | ^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 2789 - let len = mem::size_of_val(self); 174s 2789 + let len = size_of_val(self); 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:2863:27 174s | 174s 2863 | if bytes.len() != mem::size_of_val(self) { 174s | ^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 2863 - if bytes.len() != mem::size_of_val(self) { 174s 2863 + if bytes.len() != size_of_val(self) { 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:2920:20 174s | 174s 2920 | let size = mem::size_of_val(self); 174s | ^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 2920 - let size = mem::size_of_val(self); 174s 2920 + let size = size_of_val(self); 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:2981:45 174s | 174s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 174s | ^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 174s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4161:27 174s | 174s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 174s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4176:26 174s | 174s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 174s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4179:46 174s | 174s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 174s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4194:46 174s | 174s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 174s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4221:26 174s | 174s 4221 | .checked_rem(mem::size_of::()) 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4221 - .checked_rem(mem::size_of::()) 174s 4221 + .checked_rem(size_of::()) 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4243:34 174s | 174s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 174s 4243 + let expected_len = match size_of::().checked_mul(count) { 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4268:34 174s | 174s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 174s 4268 + let expected_len = match size_of::().checked_mul(count) { 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4795:25 174s | 174s 4795 | let elem_size = mem::size_of::(); 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4795 - let elem_size = mem::size_of::(); 174s 4795 + let elem_size = size_of::(); 174s | 174s 174s warning: unnecessary qualification 174s --> /tmp/tmp.XGkKcFOhgI/registry/zerocopy-0.7.34/src/lib.rs:4825:25 174s | 174s 4825 | let elem_size = mem::size_of::(); 174s | ^^^^^^^^^^^^^^^^^ 174s | 174s help: remove the unnecessary path segments 174s | 174s 4825 - let elem_size = mem::size_of::(); 174s 4825 + let elem_size = size_of::(); 174s | 174s 174s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps OUT_DIR=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=27dfaf5cbfbe8b32 -C extra-filename=-27dfaf5cbfbe8b32 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern thiserror_impl=/tmp/tmp.XGkKcFOhgI/target/release/deps/libthiserror_impl-282169f5dfa653c6.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 174s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 174s Compiling ppv-lite86 v0.2.20 174s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.XGkKcFOhgI/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=19f965d8a4b7f765 -C extra-filename=-19f965d8a4b7f765 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern zerocopy=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-05091faa96a9c488.rmeta --cap-lints warn -Ctarget-feature=+backchain` 174s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 175s Compiling rand_chacha v0.3.1 175s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 175s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=f79f49c44487231e -C extra-filename=-f79f49c44487231e --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern ppv_lite86=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-19f965d8a4b7f765.rmeta --extern rand_core=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 175s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 175s Compiling rand v0.8.5 175s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 175s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=2fe9818164ef43c6 -C extra-filename=-2fe9818164ef43c6 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern libc=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-f79f49c44487231e.rmeta --extern rand_core=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/lib.rs:52:13 175s | 175s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s = note: `#[warn(unexpected_cfgs)]` on by default 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/lib.rs:53:13 175s | 175s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 175s | ^^^^^^^ 175s | 175s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/lib.rs:181:12 175s | 175s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/mod.rs:116:12 175s | 175s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `features` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 175s | 175s 162 | #[cfg(features = "nightly")] 175s | ^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: see for more information about checking conditional configuration 175s help: there is a config with a similar name and value 175s | 175s 162 | #[cfg(feature = "nightly")] 175s | ~~~~~~~ 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:15:7 175s | 175s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:156:7 175s | 175s 156 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:158:7 175s | 175s 158 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:160:7 175s | 175s 160 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:162:7 175s | 175s 162 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:165:7 175s | 175s 165 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:167:7 175s | 175s 167 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/float.rs:169:7 175s | 175s 169 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:13:32 175s | 175s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:15:35 175s | 175s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:19:7 175s | 175s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:112:7 175s | 175s 112 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:142:7 175s | 175s 142 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:144:7 175s | 175s 144 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:146:7 175s | 175s 146 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:148:7 175s | 175s 148 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:150:7 175s | 175s 150 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:152:7 175s | 175s 152 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/integer.rs:155:5 175s | 175s 155 | feature = "simd_support", 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:11:7 175s | 175s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:144:7 175s | 175s 144 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `std` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:235:11 175s | 175s 235 | #[cfg(not(std))] 175s | ^^^ help: found config with similar value: `feature = "std"` 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:363:7 175s | 175s 363 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:423:7 175s | 175s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 175s | ^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:424:7 175s | 175s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 175s | ^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:425:7 175s | 175s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 175s | ^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:426:7 175s | 175s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 175s | ^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:427:7 175s | 175s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 175s | ^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:428:7 175s | 175s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 175s | ^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:429:7 175s | 175s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 175s | ^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `std` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:291:19 175s | 175s 291 | #[cfg(not(std))] 175s | ^^^ help: found config with similar value: `feature = "std"` 175s ... 175s 359 | scalar_float_impl!(f32, u32); 175s | ---------------------------- in this macro invocation 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 175s 175s warning: unexpected `cfg` condition name: `std` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:291:19 175s | 175s 291 | #[cfg(not(std))] 175s | ^^^ help: found config with similar value: `feature = "std"` 175s ... 175s 360 | scalar_float_impl!(f64, u64); 175s | ---------------------------- in this macro invocation 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 175s | 175s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 175s | 175s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 175s | 175s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 175s | 175s 572 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 175s | 175s 679 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 175s | 175s 687 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 175s | 175s 696 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 175s | 175s 706 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 175s | 175s 1001 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 175s | 175s 1003 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 175s | 175s 1005 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 175s | 175s 1007 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 175s | 175s 1010 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 175s | 175s 1012 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition value: `simd_support` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 175s | 175s 1014 | #[cfg(feature = "simd_support")] 175s | ^^^^^^^^^^^^^^^^^^^^^^^^ 175s | 175s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 175s = help: consider adding `simd_support` as a feature in `Cargo.toml` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/rng.rs:395:12 175s | 175s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/rngs/mod.rs:99:12 175s | 175s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/rngs/mod.rs:118:12 175s | 175s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/rngs/std.rs:32:12 175s | 175s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/rngs/thread.rs:60:12 175s | 175s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/rngs/thread.rs:87:12 175s | 175s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/mod.rs:29:12 175s | 175s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/mod.rs:623:12 175s | 175s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/index.rs:276:12 175s | 175s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/mod.rs:114:16 175s | 175s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/mod.rs:142:16 175s | 175s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/mod.rs:170:16 175s | 175s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/mod.rs:219:16 175s | 175s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 175s warning: unexpected `cfg` condition name: `doc_cfg` 175s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/seq/mod.rs:465:16 175s | 175s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 175s | ^^^^^^^ 175s | 175s = help: consider using a Cargo feature instead 175s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 175s [lints.rust] 175s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 175s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 175s = note: see for more information about checking conditional configuration 175s 176s warning: trait `Float` is never used 176s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:238:18 176s | 176s 238 | pub(crate) trait Float: Sized { 176s | ^^^^^ 176s | 176s = note: `#[warn(dead_code)]` on by default 176s 176s warning: associated items `lanes`, `extract`, and `replace` are never used 176s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:247:8 176s | 176s 245 | pub(crate) trait FloatAsSIMD: Sized { 176s | ----------- associated items in this trait 176s 246 | #[inline(always)] 176s 247 | fn lanes() -> usize { 176s | ^^^^^ 176s ... 176s 255 | fn extract(self, index: usize) -> Self { 176s | ^^^^^^^ 176s ... 176s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 176s | ^^^^^^^ 176s 176s warning: method `all` is never used 176s --> /tmp/tmp.XGkKcFOhgI/registry/rand-0.8.5/src/distributions/utils.rs:268:8 176s | 176s 266 | pub(crate) trait BoolAsSIMD: Sized { 176s | ---------- method in this trait 176s 267 | fn any(self) -> bool; 176s 268 | fn all(self) -> bool; 176s | ^^^ 176s 176s warning: `rand` (lib) generated 70 warnings (1 duplicate) 177s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 177s Compiling oxrdf v0.2.4 (/usr/share/cargo/registry/oxrdf-0.2.4) 177s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 177s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.XGkKcFOhgI/target/release/deps rustc --crate-name oxrdf --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=e286757c6bfb5f37 -C extra-filename=-e286757c6bfb5f37 --out-dir /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.XGkKcFOhgI/target/release/deps --extern oxilangtag=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rlib --extern oxiri=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rlib --extern rand=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rlib --extern thiserror=/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rlib -Ctarget-feature=+backchain` 182s warning: `oxrdf` (lib test) generated 1 warning (1 duplicate) 182s Finished `release` profile [optimized] target(s) in 13.29s 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 182s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.XGkKcFOhgI/target/s390x-unknown-linux-gnu/release/deps/oxrdf-e286757c6bfb5f37` 182s 182s running 10 tests 182s test blank_node::tests::as_str_partial ... ok 182s test blank_node::tests::as_str_full ... ok 182s test blank_node::tests::new_numerical ... ok 182s test blank_node::tests::new_validation ... /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 182s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 182s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 182s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 182s ok 182s test blank_node::tests::test_equals ... ok 182s test blank_node::tests::test_size_and_alignment ... ok 182s test literal::tests::test_float_format ... ok 182s test dataset::tests::test_canon ... ok 182s test literal::tests::test_simple_literal_equality ... ok 182s test triple::tests::triple_from_terms ... ok 182s 182s test result: ok. 10 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 182s 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest [01:29:55]: test rust-oxrdf:default: -----------------------] 182s autopkgtest: DBG: testbed executing test finished with exit status 0 182s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdf%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdf%3Adefault-stdout 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdf%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdf%3Adefault-stderr 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest [01:29:56]: test rust-oxrdf:default: - - - - - - - - - - results - - - - - - - - - - 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdf%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 183s rust-oxrdf:default PASS 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-oxrdf:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest [01:29:56]: test rust-oxrdfio:default: preparing testbed 183s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-oxrdf-0.2+default-dev'], deps_new=['dh-rust', 'librust-oxrdfio-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 183s autopkgtest: DBG: testbed reset 183s autopkgtest: DBG: sending command to testbed: revert 343s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 343s autopkgtest: DBG: sending command to testbed: print-execute-command 343s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 343s autopkgtest: DBG: sending command to testbed: capabilities 343s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 343s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 343s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 343s autopkgtest: DBG: testbed command exited with code 0 343s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 344s autopkgtest: DBG: got reply from testbed: ok 344s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest [01:32:37]: testbed dpkg architecture: s390x 344s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest [01:32:37]: testbed apt version: 2.9.28 344s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: testbed has eatmydata 344s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest [01:32:38]: @@@@@@@@@@@@@@@@@@@@ test bed setup 345s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest [01:32:38]: testbed release detected to be: plucky 345s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: adding APT source: Types: deb deb-src 345s URIs: http://ftpmaster.internal/ubuntu/ 345s Suites: plucky-proposed 345s Components: main restricted universe multiverse 345s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 345s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 345s Package: * 345s Pin: release plucky-proposed 345s Pin-Priority: 500 345s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest [01:32:38]: updating testbed package index (apt update) 345s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 346s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 346s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 346s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 346s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 346s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 346s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 346s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 346s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 346s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 346s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 346s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 346s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 347s Fetched 2062 kB in 1s (2126 kB/s) 347s Reading package lists... 347s autopkgtest: DBG: testbed command exited with code 0 347s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 347s Package: * 347s Pin: release plucky-proposed 347s Pin-Priority: 100 347s 347s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 347s Pin: release plucky-proposed 347s Pin-Priority: 995 347s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 347s autopkgtest: DBG: testbed command exited with code 0 347s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 348s + lsb_release --codename --short 348s + RELEASE=plucky 348s + cat 348s + [ plucky != trusty ] 348s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 348s Reading package lists... 348s Building dependency tree... 348s Reading state information... 348s Calculating upgrade... 348s The following packages were automatically installed and are no longer required: 348s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 348s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 348s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 348s linux-tools-6.11.0-8-generic 348s Use 'sudo apt autoremove' to remove them. 348s The following packages will be upgraded: 348s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 348s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 348s Need to get 1155 kB of archives. 348s After this operation, 16.4 kB of additional disk space will be used. 348s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 349s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 349s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 349s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 349s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 349s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 349s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 350s Preconfiguring packages ... 350s Fetched 1155 kB in 1s (1856 kB/s) 350s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 350s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 350s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 350s Setting up dash (0.5.12-12ubuntu1) ... 350s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 350s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 350s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 350s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 350s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 350s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 350s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 350s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 350s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 350s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 350s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 350s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 350s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 350s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 350s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 350s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 350s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 350s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 350s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 350s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 350s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 350s Setting up libtasn1-6:s390x (4.20.0-2) ... 350s Processing triggers for libc-bin (2.40-4ubuntu1) ... 350s Processing triggers for man-db (2.13.0-1) ... 350s Processing triggers for debianutils (5.21) ... 351s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 351s + /usr/lib/apt/apt-helper analyze-pattern ?true 351s + uname -r 351s + sed s/\./\\./g 351s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 351s + apt list ?obsolete 351s + tail -n+2 351s + grep -v ^linux-.*6\.12\.0-15-generic.* 351s + cut -d/ -f1 351s + true 351s + obsolete_pkgs= 351s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 351s Reading package lists... 351s Building dependency tree... 351s Reading state information... 351s The following packages will be REMOVED: 351s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 351s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 351s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 351s linux-tools-6.11.0-8-generic* 351s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 351s After this operation, 167 MB disk space will be freed. 351s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 351s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 351s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 351s Removing libpython3.12t64:s390x (3.12.9-1) ... 351s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 351s Removing libnsl2:s390x (1.3.0-3build3) ... 351s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 351s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 351s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 353s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 353s Processing triggers for libc-bin (2.40-4ubuntu1) ... 353s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 353s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 353s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 353s + grep -q trusty /etc/lsb-release 353s + [ ! -d /usr/share/doc/unattended-upgrades ] 353s + [ ! -d /usr/share/doc/lxd ] 353s + [ ! -d /usr/share/doc/lxd-client ] 353s + [ ! -d /usr/share/doc/snapd ] 353s + type iptables 353s + cat 353s + chmod 755 /etc/rc.local 353s + . /etc/rc.local 353s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 353s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 353s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 353s + uname -m 353s + [ s390x = ppc64le ] 353s + [ -d /run/systemd/system ] 353s + systemd-detect-virt --quiet --vm 353s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 353s + cat 353s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 353s + echo COMPRESS=lz4 353s autopkgtest: DBG: testbed command exited with code 0 353s autopkgtest [01:32:46]: upgrading testbed (apt dist-upgrade and autopurge) 353s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 353s Reading package lists... 353s Building dependency tree... 353s Reading state information... 354s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 354s Starting 2 pkgProblemResolver with broken count: 0 354s Done 354s Entering ResolveByKeep 354s 354s The following packages will be upgraded: 354s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 354s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 354s Need to get 10.7 MB of archives. 354s After this operation, 305 kB of additional disk space will be used. 354s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 354s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 355s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 355s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 355s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 355s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 355s Preconfiguring packages ... 355s Fetched 10.7 MB in 1s (10.4 MB/s) 355s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 355s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 355s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 355s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 355s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 355s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 355s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 356s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 356s Checking for services that may need to be restarted... 356s Checking init scripts... 356s Checking for services that may need to be restarted... 356s Checking init scripts... 356s Stopping some services possibly affected by the upgrade (will be restarted later): 356s cron: stopping...done. 356s 356s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 356s Setting up libc6:s390x (2.41-1ubuntu1) ... 356s Checking for services that may need to be restarted... 356s Checking init scripts... 356s Restarting services possibly affected by the upgrade: 356s cron: restarting...done. 356s 356s Services restarted successfully. 356s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 356s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 356s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 356s Setting up libc-bin (2.41-1ubuntu1) ... 356s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 356s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 356s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 357s Setting up iproute2 (6.13.0-1ubuntu1) ... 357s Setting up locales (2.41-1ubuntu1) ... 357s Installing new version of config file /etc/locale.alias ... 357s Generating locales (this might take a while)... 358s en_US.UTF-8... done 358s Generation complete. 358s Setting up libc-dev-bin (2.41-1ubuntu1) ... 358s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 358s Processing triggers for man-db (2.13.0-1) ... 359s Processing triggers for systemd (257.2-3ubuntu1) ... 360s autopkgtest: DBG: testbed command exited with code 0 360s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 360s Reading package lists... 360s Building dependency tree... 360s Reading state information... 360s Starting pkgProblemResolver with broken count: 0 360s Starting 2 pkgProblemResolver with broken count: 0 360s Done 361s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 361s autopkgtest: DBG: testbed command exited with code 1 361s autopkgtest [01:32:54]: rebooting testbed after setup commands that affected boot 361s autopkgtest: DBG: sending command to testbed: reboot 379s autopkgtest: DBG: got reply from testbed: ok 379s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 379s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 379s autopkgtest: DBG: testbed command exited with code 0 379s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 380s autopkgtest: DBG: got reply from testbed: ok 380s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 381s autopkgtest: DBG: got reply from testbed: ok 381s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 381s autopkgtest: DBG: got reply from testbed: ok 381s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 381s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 382s autopkgtest: DBG: got reply from testbed: ok 382s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 382s autopkgtest: DBG: testbed command exited with code 0 382s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 383s autopkgtest: DBG: got reply from testbed: ok 383s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 383s autopkgtest: DBG: testbed command exited with code 0 383s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 383s autopkgtest: DBG: testbed command exited with code 0 383s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 383s autopkgtest: DBG: testbed command exited with code 0 383s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 383s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-oxrdfio-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 383s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-oxrdfio-0.1+default-dev, librust-tokio-1+macros-dev, librust-tokio-1+rt-dev 383s autopkgtest: DBG: can use apt-get on testbed: True 383s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-oxrdfio-0.1+default-dev, librust-tokio-1+macros-dev, librust-tokio-1+rt-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 384s Reading package lists... 384s Building dependency tree... 384s Reading state information... 384s Starting pkgProblemResolver with broken count: 0 384s Starting 2 pkgProblemResolver with broken count: 0 384s Done 384s The following NEW packages will be installed: 384s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 384s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 384s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 384s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 384s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 384s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 384s librust-addr2line-dev librust-adler-dev librust-ahash-dev 384s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 384s librust-backtrace-dev librust-blobby-dev librust-block-buffer-dev 384s librust-bumpalo-dev librust-byteorder-dev librust-bytes-dev 384s librust-cfg-if-dev librust-compiler-builtins-dev librust-const-oid-dev 384s librust-const-random-dev librust-const-random-macro-dev 384s librust-cpp-demangle-dev librust-crc32fast-dev librust-critical-section-dev 384s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 384s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 384s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 384s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 384s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 384s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 384s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev 384s librust-js-sys-dev librust-libc-dev librust-libz-sys-dev 384s librust-lock-api-dev librust-log-dev librust-memchr-dev librust-memmap2-dev 384s librust-miniz-oxide-dev librust-mio-dev librust-no-panic-dev 384s librust-object-dev librust-once-cell-dev librust-owning-ref-dev 384s librust-oxilangtag-dev librust-oxiri-dev librust-oxrdf-dev 384s librust-oxsdatatypes-dev librust-parking-lot-core-dev 384s librust-parking-lot-dev librust-pin-project-lite-dev librust-pkg-config-dev 384s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 384s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 384s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 384s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 384s librust-rayon-core-dev librust-rayon-dev librust-rustc-demangle-dev 384s librust-rustc-std-workspace-core-dev librust-ruzstd-dev librust-ryu-dev 384s librust-scopeguard-dev librust-serde-derive-dev librust-serde-dev 384s librust-serde-fmt-dev librust-serde-json-dev librust-serde-test-dev 384s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 384s librust-stable-deref-trait-dev librust-static-assertions-dev 384s librust-subtle-dev librust-sval-buffer-dev librust-sval-derive-dev 384s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 384s librust-sval-ref-dev librust-sval-serde-dev librust-syn-1-dev 384s librust-syn-dev librust-thiserror-1-dev librust-thiserror-impl-1-dev 384s librust-tiny-keccak-dev librust-tokio-dev librust-tokio-macros-dev 384s librust-tracing-attributes-dev librust-tracing-core-dev librust-tracing-dev 384s librust-twox-hash-dev librust-typed-arena-dev librust-typenum-dev 384s librust-unicode-ident-dev librust-valuable-derive-dev librust-valuable-dev 384s librust-value-bag-dev librust-value-bag-serde1-dev 384s librust-value-bag-sval2-dev librust-version-check-dev 384s librust-wasm-bindgen-backend-dev librust-wasm-bindgen-dev 384s librust-wasm-bindgen-macro-dev librust-wasm-bindgen-macro-support-dev 384s librust-wasm-bindgen-shared-dev librust-zerocopy-derive-dev 384s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 384s libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 m4 pkgconf 384s pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 384s 0 upgraded, 171 newly installed, 0 to remove and 0 not upgraded. 384s Need to get 137 MB of archives. 384s After this operation, 534 MB of additional disk space will be used. 384s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 385s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 385s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 385s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 385s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 385s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 385s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 387s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 391s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 391s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 391s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 392s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 392s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 392s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 392s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 392s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 392s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 392s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 392s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 392s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 392s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 393s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 393s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 393s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 393s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 394s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 394s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 394s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 394s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 394s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 394s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 394s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 394s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 394s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 394s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 394s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 394s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 394s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 394s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 394s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 394s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 394s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 394s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 394s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 394s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 394s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 394s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 394s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 394s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 394s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 394s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 394s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 394s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 394s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 394s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 394s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 394s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 394s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 394s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 394s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 394s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 394s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 394s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 394s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 395s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 395s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 395s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 395s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 395s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 395s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 395s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 395s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 395s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 395s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 395s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 395s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 395s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 395s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 395s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 395s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 395s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 395s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 395s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 395s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 395s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 395s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 395s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 395s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 395s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 395s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 395s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 395s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 395s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 395s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 395s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 395s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 395s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 395s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 395s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 395s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 395s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 395s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 395s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 395s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 395s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 395s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 395s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 395s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 395s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 395s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 395s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 395s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 395s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 395s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 395s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 395s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 395s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 395s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 395s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 395s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 395s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 396s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 396s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 396s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 396s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 396s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 396s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 396s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 396s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 396s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 396s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 396s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 396s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 396s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 396s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 396s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 396s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 396s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 396s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 396s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 396s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 396s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 396s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 396s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 396s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 396s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 396s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 396s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 396s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 396s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 396s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 396s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 396s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 396s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 396s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 396s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 396s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 396s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 396s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 396s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 396s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 396s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 396s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 396s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 396s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 396s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 396s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 396s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 396s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 396s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 396s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 397s Fetched 137 MB in 12s (11.5 MB/s) 397s Selecting previously unselected package m4. 397s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 397s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 397s Unpacking m4 (1.4.19-5) ... 397s Selecting previously unselected package autoconf. 397s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 397s Unpacking autoconf (2.72-3) ... 397s Selecting previously unselected package autotools-dev. 397s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 397s Unpacking autotools-dev (20220109.1) ... 397s Selecting previously unselected package automake. 397s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 397s Unpacking automake (1:1.17-3) ... 397s Selecting previously unselected package autopoint. 397s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 397s Unpacking autopoint (0.23.1-1) ... 397s Selecting previously unselected package libgit2-1.8:s390x. 397s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 397s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 397s Selecting previously unselected package libstd-rust-1.83:s390x. 397s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 397s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 398s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 398s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 398s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 399s Selecting previously unselected package libisl23:s390x. 399s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 399s Unpacking libisl23:s390x (0.27-1) ... 399s Selecting previously unselected package libmpc3:s390x. 399s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 399s Unpacking libmpc3:s390x (1.3.1-1build2) ... 399s Selecting previously unselected package cpp-14-s390x-linux-gnu. 399s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package cpp-14. 399s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package cpp-s390x-linux-gnu. 399s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 399s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 399s Selecting previously unselected package cpp. 399s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 399s Unpacking cpp (4:14.2.0-1ubuntu1) ... 399s Selecting previously unselected package libcc1-0:s390x. 399s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package libgomp1:s390x. 399s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package libitm1:s390x. 399s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package libasan8:s390x. 399s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package libubsan1:s390x. 399s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package libgcc-14-dev:s390x. 399s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package gcc-14-s390x-linux-gnu. 399s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 399s Selecting previously unselected package gcc-14. 399s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 399s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 400s Selecting previously unselected package gcc-s390x-linux-gnu. 400s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 400s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 400s Selecting previously unselected package gcc. 400s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 400s Unpacking gcc (4:14.2.0-1ubuntu1) ... 400s Selecting previously unselected package rustc-1.83. 400s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 400s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 400s Selecting previously unselected package cargo-1.83. 400s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 400s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 400s Selecting previously unselected package libdebhelper-perl. 400s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 400s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 400s Selecting previously unselected package libtool. 400s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 400s Unpacking libtool (2.5.4-3build1) ... 400s Selecting previously unselected package dh-autoreconf. 400s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 400s Unpacking dh-autoreconf (20) ... 400s Selecting previously unselected package libarchive-zip-perl. 400s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 400s Unpacking libarchive-zip-perl (1.68-1) ... 400s Selecting previously unselected package libfile-stripnondeterminism-perl. 400s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 400s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 400s Selecting previously unselected package dh-strip-nondeterminism. 400s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 400s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 400s Selecting previously unselected package debugedit. 400s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 400s Unpacking debugedit (1:5.1-2) ... 400s Selecting previously unselected package dwz. 400s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 400s Unpacking dwz (0.15-1build6) ... 400s Selecting previously unselected package gettext. 400s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 400s Unpacking gettext (0.23.1-1) ... 400s Selecting previously unselected package intltool-debian. 400s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 400s Unpacking intltool-debian (0.35.0+20060710.6) ... 400s Selecting previously unselected package po-debconf. 400s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 400s Unpacking po-debconf (1.0.21+nmu1) ... 400s Selecting previously unselected package debhelper. 400s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 400s Unpacking debhelper (13.24.1ubuntu2) ... 400s Selecting previously unselected package rustc. 400s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 400s Unpacking rustc (1.83.0ubuntu1) ... 400s Selecting previously unselected package cargo. 400s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 400s Unpacking cargo (1.83.0ubuntu1) ... 400s Selecting previously unselected package dh-rust. 400s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 400s Unpacking dh-rust (0.0.11) ... 400s Selecting previously unselected package libpkgconf3:s390x. 400s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 400s Unpacking libpkgconf3:s390x (1.8.1-4) ... 400s Selecting previously unselected package librust-cfg-if-dev:s390x. 400s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 400s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 400s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 400s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 400s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 400s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 400s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 400s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 400s Selecting previously unselected package librust-unicode-ident-dev:s390x. 400s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 400s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 400s Selecting previously unselected package librust-proc-macro2-dev:s390x. 400s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 400s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 400s Selecting previously unselected package librust-quote-dev:s390x. 400s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 400s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 400s Selecting previously unselected package librust-syn-dev:s390x. 400s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 400s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 400s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 400s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 400s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 400s Selecting previously unselected package librust-arbitrary-dev:s390x. 400s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 400s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 400s Selecting previously unselected package librust-equivalent-dev:s390x. 400s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 400s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 400s Selecting previously unselected package librust-critical-section-dev:s390x. 401s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 401s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 401s Selecting previously unselected package librust-serde-derive-dev:s390x. 401s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 401s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 401s Selecting previously unselected package librust-serde-dev:s390x. 401s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 401s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 401s Selecting previously unselected package librust-portable-atomic-dev:s390x. 401s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 401s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 401s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 401s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 401s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 401s Selecting previously unselected package librust-libc-dev:s390x. 401s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 401s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 401s Selecting previously unselected package librust-getrandom-dev:s390x. 401s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 401s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 401s Selecting previously unselected package librust-smallvec-dev:s390x. 401s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 401s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 401s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 401s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 401s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 401s Selecting previously unselected package librust-once-cell-dev:s390x. 401s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 401s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 401s Selecting previously unselected package librust-crunchy-dev:s390x. 401s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 401s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 401s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 401s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 401s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 401s Selecting previously unselected package librust-const-random-macro-dev:s390x. 401s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 401s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 401s Selecting previously unselected package librust-const-random-dev:s390x. 401s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 401s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 401s Selecting previously unselected package librust-version-check-dev:s390x. 401s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 401s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 401s Selecting previously unselected package librust-byteorder-dev:s390x. 401s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 401s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 401s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 401s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 401s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 401s Selecting previously unselected package librust-zerocopy-dev:s390x. 401s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 401s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 401s Selecting previously unselected package librust-ahash-dev. 401s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 401s Unpacking librust-ahash-dev (0.8.11-9) ... 401s Selecting previously unselected package librust-allocator-api2-dev:s390x. 401s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 401s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 401s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 401s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 401s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 401s Selecting previously unselected package librust-either-dev:s390x. 401s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 401s Unpacking librust-either-dev:s390x (1.13.0-1) ... 401s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 401s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 401s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 401s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 401s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 401s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 401s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 401s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 401s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 401s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 401s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 401s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 401s Selecting previously unselected package librust-rayon-core-dev:s390x. 401s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 401s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 401s Selecting previously unselected package librust-rayon-dev:s390x. 401s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 401s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 401s Selecting previously unselected package librust-hashbrown-dev:s390x. 401s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 401s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 401s Selecting previously unselected package librust-indexmap-dev:s390x. 401s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 401s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 401s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 401s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 401s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 401s Selecting previously unselected package librust-gimli-dev:s390x. 401s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 401s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 401s Selecting previously unselected package librust-memmap2-dev:s390x. 401s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 401s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 401s Selecting previously unselected package librust-crc32fast-dev:s390x. 401s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 401s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 401s Selecting previously unselected package pkgconf-bin. 401s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 401s Unpacking pkgconf-bin (1.8.1-4) ... 401s Selecting previously unselected package pkgconf:s390x. 401s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 401s Unpacking pkgconf:s390x (1.8.1-4) ... 401s Selecting previously unselected package librust-pkg-config-dev:s390x. 401s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 401s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 401s Selecting previously unselected package zlib1g-dev:s390x. 401s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 401s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 401s Selecting previously unselected package librust-libz-sys-dev:s390x. 401s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 401s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 401s Selecting previously unselected package librust-adler-dev:s390x. 401s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 401s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 401s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 401s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 401s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 401s Selecting previously unselected package librust-flate2-dev:s390x. 401s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 401s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 401s Selecting previously unselected package librust-sval-derive-dev:s390x. 401s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 401s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 401s Selecting previously unselected package librust-sval-dev:s390x. 401s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 401s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 401s Selecting previously unselected package librust-sval-ref-dev:s390x. 401s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 401s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 401s Selecting previously unselected package librust-erased-serde-dev:s390x. 401s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 401s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 401s Selecting previously unselected package librust-serde-fmt-dev. 401s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 401s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 401s Selecting previously unselected package librust-no-panic-dev:s390x. 402s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 402s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 402s Selecting previously unselected package librust-itoa-dev:s390x. 402s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 402s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 402s Selecting previously unselected package librust-ryu-dev:s390x. 402s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 402s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 402s Selecting previously unselected package librust-serde-json-dev:s390x. 402s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 402s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 402s Selecting previously unselected package librust-serde-test-dev:s390x. 402s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 402s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 402s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 402s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 402s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 402s Selecting previously unselected package librust-sval-buffer-dev:s390x. 402s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 402s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 402s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 402s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 402s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 402s Selecting previously unselected package librust-sval-fmt-dev:s390x. 402s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 402s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 402s Selecting previously unselected package librust-sval-serde-dev:s390x. 402s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 402s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 402s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 402s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 402s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 402s Selecting previously unselected package librust-value-bag-dev:s390x. 402s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 402s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 402s Selecting previously unselected package librust-log-dev:s390x. 402s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 402s Unpacking librust-log-dev:s390x (0.4.22-1) ... 402s Selecting previously unselected package librust-memchr-dev:s390x. 402s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 402s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 402s Selecting previously unselected package librust-blobby-dev:s390x. 402s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 402s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 402s Selecting previously unselected package librust-typenum-dev:s390x. 402s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 402s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 402s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 402s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 402s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 402s Selecting previously unselected package librust-zeroize-dev:s390x. 402s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 402s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 402s Selecting previously unselected package librust-generic-array-dev:s390x. 402s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 402s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 402s Selecting previously unselected package librust-block-buffer-dev:s390x. 402s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 402s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 402s Selecting previously unselected package librust-const-oid-dev:s390x. 402s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 402s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 402s Selecting previously unselected package librust-rand-core-dev:s390x. 402s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 402s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 402s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 402s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 402s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 402s Selecting previously unselected package librust-crypto-common-dev:s390x. 402s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 402s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 402s Selecting previously unselected package librust-subtle-dev:s390x. 402s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 402s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 402s Selecting previously unselected package librust-digest-dev:s390x. 402s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 402s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 402s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 402s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 402s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 402s Selecting previously unselected package librust-rand-chacha-dev:s390x. 402s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 402s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 402s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 402s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 402s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 402s Selecting previously unselected package librust-rand-core+std-dev:s390x. 402s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 402s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 402s Selecting previously unselected package librust-rand-dev:s390x. 402s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 402s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 402s Selecting previously unselected package librust-static-assertions-dev:s390x. 402s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 402s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 402s Selecting previously unselected package librust-twox-hash-dev:s390x. 402s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 402s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 402s Selecting previously unselected package librust-ruzstd-dev:s390x. 402s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 402s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 402s Selecting previously unselected package librust-object-dev:s390x. 402s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 402s Unpacking librust-object-dev:s390x (0.36.5-2) ... 402s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 402s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 402s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 402s Selecting previously unselected package librust-typed-arena-dev:s390x. 402s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 402s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 402s Selecting previously unselected package librust-addr2line-dev:s390x. 402s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 402s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 402s Selecting previously unselected package librust-autocfg-dev:s390x. 402s Preparing to unpack .../137-librust-autocfg-dev_1.1.0-1_s390x.deb ... 402s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 402s Selecting previously unselected package librust-backtrace-dev:s390x. 402s Preparing to unpack .../138-librust-backtrace-dev_0.3.74-3_s390x.deb ... 402s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 402s Selecting previously unselected package librust-bumpalo-dev:s390x. 402s Preparing to unpack .../139-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 402s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 402s Selecting previously unselected package librust-bytes-dev:s390x. 402s Preparing to unpack .../140-librust-bytes-dev_1.9.0-1_s390x.deb ... 402s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 402s Selecting previously unselected package librust-encoding-rs-dev:s390x. 402s Preparing to unpack .../141-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 402s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 402s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 402s Preparing to unpack .../142-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 402s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 402s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 402s Preparing to unpack .../143-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 402s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 402s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 402s Preparing to unpack .../144-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 402s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 402s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 402s Preparing to unpack .../145-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 402s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 402s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 402s Preparing to unpack .../146-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 402s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 402s Selecting previously unselected package librust-js-sys-dev:s390x. 402s Preparing to unpack .../147-librust-js-sys-dev_0.3.64-1_s390x.deb ... 402s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 402s Selecting previously unselected package librust-owning-ref-dev:s390x. 402s Preparing to unpack .../148-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 402s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 402s Selecting previously unselected package librust-scopeguard-dev:s390x. 402s Preparing to unpack .../149-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 402s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 403s Selecting previously unselected package librust-lock-api-dev:s390x. 403s Preparing to unpack .../150-librust-lock-api-dev_0.4.12-1_s390x.deb ... 403s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 403s Selecting previously unselected package librust-mio-dev:s390x. 403s Preparing to unpack .../151-librust-mio-dev_1.0.2-3_s390x.deb ... 403s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 403s Selecting previously unselected package librust-oxilangtag-dev. 403s Preparing to unpack .../152-librust-oxilangtag-dev_0.1.5-4_all.deb ... 403s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 403s Selecting previously unselected package librust-oxiri-dev. 403s Preparing to unpack .../153-librust-oxiri-dev_0.2.11-2_all.deb ... 403s Unpacking librust-oxiri-dev (0.2.11-2) ... 403s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 403s Preparing to unpack .../154-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 403s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 403s Selecting previously unselected package librust-thiserror-1-dev:s390x. 403s Preparing to unpack .../155-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 403s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 403s Selecting previously unselected package librust-oxsdatatypes-dev. 403s Preparing to unpack .../156-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 403s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 403s Selecting previously unselected package librust-parking-lot-dev:s390x. 403s Preparing to unpack .../157-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 403s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 403s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 403s Preparing to unpack .../158-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 403s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 403s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 403s Preparing to unpack .../159-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 403s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 403s Selecting previously unselected package librust-socket2-dev:s390x. 403s Preparing to unpack .../160-librust-socket2-dev_0.5.8-1_s390x.deb ... 403s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 403s Selecting previously unselected package librust-tokio-macros-dev:s390x. 403s Preparing to unpack .../161-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 403s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 403s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 403s Preparing to unpack .../162-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 403s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 403s Selecting previously unselected package librust-syn-1-dev:s390x. 403s Preparing to unpack .../163-librust-syn-1-dev_1.0.109-3_s390x.deb ... 403s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 403s Selecting previously unselected package librust-valuable-derive-dev:s390x. 403s Preparing to unpack .../164-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 403s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 403s Selecting previously unselected package librust-valuable-dev:s390x. 403s Preparing to unpack .../165-librust-valuable-dev_0.1.0-4_s390x.deb ... 403s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 403s Selecting previously unselected package librust-tracing-core-dev:s390x. 403s Preparing to unpack .../166-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 403s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 403s Selecting previously unselected package librust-tracing-dev:s390x. 403s Preparing to unpack .../167-librust-tracing-dev_0.1.40-1_s390x.deb ... 403s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 403s Selecting previously unselected package librust-tokio-dev:s390x. 403s Preparing to unpack .../168-librust-tokio-dev_1.43.0-1_s390x.deb ... 403s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 403s Selecting previously unselected package librust-quick-xml-dev:s390x. 403s Preparing to unpack .../169-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 403s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 403s Selecting previously unselected package librust-oxrdf-dev. 403s Preparing to unpack .../170-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 403s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 403s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 403s Setting up librust-either-dev:s390x (1.13.0-1) ... 403s Setting up librust-adler-dev:s390x (1.0.2-2) ... 403s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 403s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 403s Setting up libarchive-zip-perl (1.68-1) ... 403s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 403s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 403s Setting up m4 (1.4.19-5) ... 403s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 403s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 403s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 403s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 403s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 403s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 403s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 403s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 403s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 403s Setting up autotools-dev (20220109.1) ... 403s Setting up libpkgconf3:s390x (1.8.1-4) ... 403s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 403s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 403s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 403s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 403s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 403s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 403s Setting up libmpc3:s390x (1.3.1-1build2) ... 403s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 403s Setting up autopoint (0.23.1-1) ... 403s Setting up pkgconf-bin (1.8.1-4) ... 403s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 403s Setting up autoconf (2.72-3) ... 403s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 403s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 403s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 403s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 403s Setting up dwz (0.15-1build6) ... 403s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 403s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 403s Setting up debugedit (1:5.1-2) ... 403s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 403s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 403s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 403s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 403s Setting up libisl23:s390x (0.27-1) ... 403s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 403s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 403s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 403s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 403s Setting up automake (1:1.17-3) ... 403s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 403s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 403s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 403s Setting up librust-libc-dev:s390x (0.2.169-1) ... 403s Setting up gettext (0.23.1-1) ... 403s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 403s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 403s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 403s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 403s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 403s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 403s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 403s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 403s Setting up pkgconf:s390x (1.8.1-4) ... 403s Setting up intltool-debian (0.35.0+20060710.6) ... 403s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 403s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 403s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 403s Setting up cpp-14 (14.2.0-17ubuntu1) ... 403s Setting up dh-strip-nondeterminism (1.14.1-2) ... 403s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 403s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 403s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 403s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 403s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 403s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 403s Setting up po-debconf (1.0.21+nmu1) ... 403s Setting up librust-quote-dev:s390x (1.0.37-1) ... 403s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 403s Setting up librust-syn-dev:s390x (2.0.96-2) ... 403s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 403s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 403s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 403s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 403s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 403s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 403s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 403s Setting up cpp (4:14.2.0-1ubuntu1) ... 403s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 403s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 403s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 403s Setting up librust-serde-dev:s390x (1.0.217-1) ... 403s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 403s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 403s Setting up librust-oxilangtag-dev (0.1.5-4) ... 403s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 403s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 403s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 403s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 403s Setting up librust-serde-fmt-dev (1.0.3-4) ... 403s Setting up librust-oxiri-dev (0.2.11-2) ... 403s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 403s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 403s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 403s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 403s Setting up librust-sval-dev:s390x (2.6.1-2) ... 403s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 403s Setting up gcc-14 (14.2.0-17ubuntu1) ... 403s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 403s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 403s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 403s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 403s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 403s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 403s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 403s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 403s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 403s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 403s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 403s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 403s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 403s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 403s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 403s Setting up libtool (2.5.4-3build1) ... 403s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 403s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 403s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 403s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 403s Setting up gcc (4:14.2.0-1ubuntu1) ... 403s Setting up dh-autoreconf (20) ... 403s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 403s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 403s Setting up rustc (1.83.0ubuntu1) ... 403s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 403s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 403s Setting up librust-digest-dev:s390x (0.10.7-2) ... 403s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 403s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 403s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 403s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 403s Setting up debhelper (13.24.1ubuntu2) ... 403s Setting up librust-ahash-dev (0.8.11-9) ... 403s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 403s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 403s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 403s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 403s Setting up cargo (1.83.0ubuntu1) ... 403s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 403s Setting up dh-rust (0.0.11) ... 403s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 403s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 403s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 403s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 403s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 403s Setting up librust-log-dev:s390x (0.4.22-1) ... 403s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 403s Setting up librust-rand-dev:s390x (0.8.5-1) ... 403s Setting up librust-mio-dev:s390x (1.0.2-3) ... 403s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 403s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 403s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 403s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 403s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 403s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 403s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 403s Setting up librust-object-dev:s390x (0.36.5-2) ... 403s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 403s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 403s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 403s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 403s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 403s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 403s Processing triggers for install-info (7.1.1-1) ... 404s Processing triggers for libc-bin (2.41-1ubuntu1) ... 404s Processing triggers for man-db (2.13.0-1) ... 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-packages.all"], kind short, sout raw, serr pipe, env [] 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfio%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdfio%3Adefault-packages.all 410s autopkgtest: DBG: got reply from testbed: ok 410s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 410s autopkgtest: DBG: testbed command exited with code 1 410s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 411s autopkgtest: DBG: testbed command exited with code 0 411s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 412s autopkgtest: DBG: got reply from testbed: ok 412s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest [01:33:45]: test rust-oxrdfio:default: /usr/share/dh-rust/bin/cargo-auto-test oxrdfio 0.1.5 --all-targets 412s autopkgtest [01:33:45]: test rust-oxrdfio:default: [----------------------- 412s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test oxrdfio 0.1.5 --all-targets'"], kind test, sout raw, serr raw, env [] 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-artifacts 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-stderr 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-stdout 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test oxrdfio 0.1.5 --all-targets 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.nX3zLsXn9M/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-stdout 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.nX3zLsXn9M/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-stdout 413s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 2891 to /tmp/autopkgtest_script_pid 414s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 414s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 414s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.2QppDkxNpX/registry/ 414s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 414s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 414s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 414s Compiling proc-macro2 v1.0.92 414s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.2QppDkxNpX/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn` 414s Compiling unicode-ident v1.0.13 414s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.2QppDkxNpX/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.2QppDkxNpX/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn` 415s Compiling libc v0.2.169 415s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 415s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2QppDkxNpX/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.2QppDkxNpX/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn` 415s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2QppDkxNpX/target/release/deps:/tmp/tmp.2QppDkxNpX/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2QppDkxNpX/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2QppDkxNpX/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 415s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 415s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 415s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 415s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 415s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps OUT_DIR=/tmp/tmp.2QppDkxNpX/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.2QppDkxNpX/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.2QppDkxNpX/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern unicode_ident=/tmp/tmp.2QppDkxNpX/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 415s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 415s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2QppDkxNpX/target/release/deps:/tmp/tmp.2QppDkxNpX/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2QppDkxNpX/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 415s [libc 0.2.169] cargo:rerun-if-changed=build.rs 415s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 415s [libc 0.2.169] cargo:rustc-cfg=freebsd11 415s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 415s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 415s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 415s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps OUT_DIR=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.2QppDkxNpX/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 415s warning: unused import: `crate::ntptimeval` 415s --> /tmp/tmp.2QppDkxNpX/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 415s | 415s 5 | use crate::ntptimeval; 415s | ^^^^^^^^^^^^^^^^^ 415s | 415s = note: `#[warn(unused_imports)]` on by default 415s 416s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 416s | 416s = note: this feature is not stably supported; its behavior can change in the future 416s 416s Compiling quote v1.0.37 416s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.2QppDkxNpX/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.2QppDkxNpX/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern proc_macro2=/tmp/tmp.2QppDkxNpX/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 416s warning: `libc` (lib) generated 2 warnings 416s Compiling byteorder v1.5.0 416s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.2QppDkxNpX/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 416s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 416s Compiling syn v2.0.96 416s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.2QppDkxNpX/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=1e840a5d57ad3da8 -C extra-filename=-1e840a5d57ad3da8 --out-dir /tmp/tmp.2QppDkxNpX/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern proc_macro2=/tmp/tmp.2QppDkxNpX/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.2QppDkxNpX/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.2QppDkxNpX/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 416s Compiling cfg-if v1.0.0 416s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 416s parameters. Structured like an if-else chain, the first matching branch is the 416s item that gets emitted. 416s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.2QppDkxNpX/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 416s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 416s Compiling getrandom v0.2.15 416s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.2QppDkxNpX/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern cfg_if=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 416s warning: unexpected `cfg` condition value: `js` 416s --> /tmp/tmp.2QppDkxNpX/registry/getrandom-0.2.15/src/lib.rs:334:25 416s | 416s 334 | } else if #[cfg(all(feature = "js", 416s | ^^^^^^^^^^^^^^ 416s | 416s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 416s = help: consider adding `js` as a feature in `Cargo.toml` 416s = note: see for more information about checking conditional configuration 416s = note: `#[warn(unexpected_cfgs)]` on by default 416s 417s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 417s Compiling rand_core v0.6.4 417s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 417s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern getrandom=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 417s warning: unexpected `cfg` condition name: `doc_cfg` 417s --> /tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/src/lib.rs:38:13 417s | 417s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 417s | ^^^^^^^ 417s | 417s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 417s = help: consider using a Cargo feature instead 417s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 417s [lints.rust] 417s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 417s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 417s = note: see for more information about checking conditional configuration 417s = note: `#[warn(unexpected_cfgs)]` on by default 417s 417s warning: unexpected `cfg` condition name: `doc_cfg` 417s --> /tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/src/error.rs:50:16 417s | 417s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 417s | ^^^^^^^ 417s | 417s = help: consider using a Cargo feature instead 417s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 417s [lints.rust] 417s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 417s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 417s = note: see for more information about checking conditional configuration 417s 417s warning: unexpected `cfg` condition name: `doc_cfg` 417s --> /tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/src/error.rs:64:16 417s | 417s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 417s | ^^^^^^^ 417s | 417s = help: consider using a Cargo feature instead 417s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 417s [lints.rust] 417s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 417s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 417s = note: see for more information about checking conditional configuration 417s 417s warning: unexpected `cfg` condition name: `doc_cfg` 417s --> /tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/src/error.rs:75:16 417s | 417s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 417s | ^^^^^^^ 417s | 417s = help: consider using a Cargo feature instead 417s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 417s [lints.rust] 417s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 417s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 417s = note: see for more information about checking conditional configuration 417s 417s warning: unexpected `cfg` condition name: `doc_cfg` 417s --> /tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/src/os.rs:46:12 417s | 417s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 417s | ^^^^^^^ 417s | 417s = help: consider using a Cargo feature instead 417s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 417s [lints.rust] 417s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 417s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 417s = note: see for more information about checking conditional configuration 417s 417s warning: unexpected `cfg` condition name: `doc_cfg` 417s --> /tmp/tmp.2QppDkxNpX/registry/rand_core-0.6.4/src/lib.rs:411:16 417s | 417s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 417s | ^^^^^^^ 417s | 417s = help: consider using a Cargo feature instead 417s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 417s [lints.rust] 417s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 417s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 417s = note: see for more information about checking conditional configuration 417s 417s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 417s Compiling thiserror v1.0.69 417s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.2QppDkxNpX/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn` 417s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2QppDkxNpX/target/release/deps:/tmp/tmp.2QppDkxNpX/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2QppDkxNpX/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 417s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 417s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 417s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 417s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 417s Compiling oxiri v0.2.11 417s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 417s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.2QppDkxNpX/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 417s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 417s Compiling memchr v2.7.4 417s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 417s 1, 2 or 3 byte search and single substring search. 417s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.2QppDkxNpX/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 418s warning: `memchr` (lib) generated 1 warning (1 duplicate) 418s Compiling oxilangtag v0.1.5 418s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 418s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.2QppDkxNpX/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 419s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 419s Compiling quick-xml v0.36.1 419s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/quick-xml-0.36.1 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.2QppDkxNpX/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=759ace41c505d51b -C extra-filename=-759ace41c505d51b --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern memchr=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --cap-lints warn -Ctarget-feature=+backchain` 419s warning: unexpected `cfg` condition value: `document-features` 419s --> /tmp/tmp.2QppDkxNpX/registry/quick-xml-0.36.1/src/lib.rs:42:5 419s | 419s 42 | feature = "document-features", 419s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 419s | 419s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 419s = help: consider adding `document-features` as a feature in `Cargo.toml` 419s = note: see for more information about checking conditional configuration 419s = note: `#[warn(unexpected_cfgs)]` on by default 419s 419s warning: elided lifetime has a name 419s --> /tmp/tmp.2QppDkxNpX/registry/quick-xml-0.36.1/src/writer.rs:146:73 419s | 419s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 419s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 419s | 419s = note: `#[warn(elided_named_lifetimes)]` on by default 419s 421s Compiling zerocopy-derive v0.7.34 421s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.2QppDkxNpX/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=83ccd38c41f59dac -C extra-filename=-83ccd38c41f59dac --out-dir /tmp/tmp.2QppDkxNpX/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern proc_macro2=/tmp/tmp.2QppDkxNpX/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.2QppDkxNpX/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.2QppDkxNpX/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 422s warning: `quick-xml` (lib) generated 3 warnings (1 duplicate) 422s Compiling thiserror-impl v1.0.69 422s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.2QppDkxNpX/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=3b2db9dbc1460002 -C extra-filename=-3b2db9dbc1460002 --out-dir /tmp/tmp.2QppDkxNpX/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern proc_macro2=/tmp/tmp.2QppDkxNpX/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.2QppDkxNpX/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.2QppDkxNpX/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 422s Compiling zerocopy v0.7.34 422s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=0397100a42c241b0 -C extra-filename=-0397100a42c241b0 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern byteorder=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.2QppDkxNpX/target/release/deps/libzerocopy_derive-83ccd38c41f59dac.so --cap-lints warn -Ctarget-feature=+backchain` 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/util.rs:597:32 422s | 422s 597 | let remainder = t.addr() % mem::align_of::(); 422s | ^^^^^^^^^^^^^^^^^^ 422s | 422s note: the lint level is defined here 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:174:5 422s | 422s 174 | unused_qualifications, 422s | ^^^^^^^^^^^^^^^^^^^^^ 422s help: remove the unnecessary path segments 422s | 422s 597 - let remainder = t.addr() % mem::align_of::(); 422s 597 + let remainder = t.addr() % align_of::(); 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:333:35 422s | 422s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 422s | ^^^^^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 422s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:488:44 422s | 422s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 422s | ^^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 422s 488 + align: match NonZeroUsize::new(align_of::()) { 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:492:49 422s | 422s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 422s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:511:44 422s | 422s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 422s | ^^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 422s 511 + align: match NonZeroUsize::new(align_of::()) { 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:517:29 422s | 422s 517 | _elem_size: mem::size_of::(), 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 517 - _elem_size: mem::size_of::(), 422s 517 + _elem_size: size_of::(), 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:1418:19 422s | 422s 1418 | let len = mem::size_of_val(self); 422s | ^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 1418 - let len = mem::size_of_val(self); 422s 1418 + let len = size_of_val(self); 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:2714:19 422s | 422s 2714 | let len = mem::size_of_val(self); 422s | ^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 2714 - let len = mem::size_of_val(self); 422s 2714 + let len = size_of_val(self); 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:2789:19 422s | 422s 2789 | let len = mem::size_of_val(self); 422s | ^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 2789 - let len = mem::size_of_val(self); 422s 2789 + let len = size_of_val(self); 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:2863:27 422s | 422s 2863 | if bytes.len() != mem::size_of_val(self) { 422s | ^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 2863 - if bytes.len() != mem::size_of_val(self) { 422s 2863 + if bytes.len() != size_of_val(self) { 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:2920:20 422s | 422s 2920 | let size = mem::size_of_val(self); 422s | ^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 2920 - let size = mem::size_of_val(self); 422s 2920 + let size = size_of_val(self); 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:2981:45 422s | 422s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 422s | ^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 422s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4161:27 422s | 422s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 422s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4176:26 422s | 422s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 422s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4179:46 422s | 422s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 422s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4194:46 422s | 422s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 422s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4221:26 422s | 422s 4221 | .checked_rem(mem::size_of::()) 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4221 - .checked_rem(mem::size_of::()) 422s 4221 + .checked_rem(size_of::()) 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4243:34 422s | 422s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 422s 4243 + let expected_len = match size_of::().checked_mul(count) { 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4268:34 422s | 422s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 422s 4268 + let expected_len = match size_of::().checked_mul(count) { 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4795:25 422s | 422s 4795 | let elem_size = mem::size_of::(); 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4795 - let elem_size = mem::size_of::(); 422s 4795 + let elem_size = size_of::(); 422s | 422s 422s warning: unnecessary qualification 422s --> /tmp/tmp.2QppDkxNpX/registry/zerocopy-0.7.34/src/lib.rs:4825:25 422s | 422s 4825 | let elem_size = mem::size_of::(); 422s | ^^^^^^^^^^^^^^^^^ 422s | 422s help: remove the unnecessary path segments 422s | 422s 4825 - let elem_size = mem::size_of::(); 422s 4825 + let elem_size = size_of::(); 422s | 422s 423s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 423s Compiling ppv-lite86 v0.2.20 423s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.2QppDkxNpX/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=2fed0a76dbecf87b -C extra-filename=-2fed0a76dbecf87b --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern zerocopy=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-0397100a42c241b0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 423s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps OUT_DIR=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.2QppDkxNpX/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a2cbddc2149c38b8 -C extra-filename=-a2cbddc2149c38b8 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern thiserror_impl=/tmp/tmp.2QppDkxNpX/target/release/deps/libthiserror_impl-3b2db9dbc1460002.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 423s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 423s Compiling rand_chacha v0.3.1 423s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 423s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.2QppDkxNpX/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=9f13d5fc363da7ec -C extra-filename=-9f13d5fc363da7ec --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern ppv_lite86=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-2fed0a76dbecf87b.rmeta --extern rand_core=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 423s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 423s Compiling tokio-macros v2.5.0 423s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio_macros CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/tokio-macros-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/tokio-macros-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Tokio'\''s proc macros. 423s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/tokio-macros-2.5.0 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name tokio_macros --edition=2021 /tmp/tmp.2QppDkxNpX/registry/tokio-macros-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=cc1b943c02aa4c24 -C extra-filename=-cc1b943c02aa4c24 --out-dir /tmp/tmp.2QppDkxNpX/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern proc_macro2=/tmp/tmp.2QppDkxNpX/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.2QppDkxNpX/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.2QppDkxNpX/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 424s Compiling rand v0.8.5 424s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 424s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=41ce1892aa719892 -C extra-filename=-41ce1892aa719892 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern libc=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-9f13d5fc363da7ec.rmeta --extern rand_core=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/lib.rs:52:13 424s | 424s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s = note: `#[warn(unexpected_cfgs)]` on by default 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/lib.rs:53:13 424s | 424s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 424s | ^^^^^^^ 424s | 424s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/lib.rs:181:12 424s | 424s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/mod.rs:116:12 424s | 424s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `features` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 424s | 424s 162 | #[cfg(features = "nightly")] 424s | ^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: see for more information about checking conditional configuration 424s help: there is a config with a similar name and value 424s | 424s 162 | #[cfg(feature = "nightly")] 424s | ~~~~~~~ 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:15:7 424s | 424s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:156:7 424s | 424s 156 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:158:7 424s | 424s 158 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:160:7 424s | 424s 160 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:162:7 424s | 424s 162 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:165:7 424s | 424s 165 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:167:7 424s | 424s 167 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/float.rs:169:7 424s | 424s 169 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:13:32 424s | 424s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:15:35 424s | 424s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:19:7 424s | 424s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:112:7 424s | 424s 112 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:142:7 424s | 424s 142 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:144:7 424s | 424s 144 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:146:7 424s | 424s 146 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:148:7 424s | 424s 148 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:150:7 424s | 424s 150 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:152:7 424s | 424s 152 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/integer.rs:155:5 424s | 424s 155 | feature = "simd_support", 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:11:7 424s | 424s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:144:7 424s | 424s 144 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `std` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:235:11 424s | 424s 235 | #[cfg(not(std))] 424s | ^^^ help: found config with similar value: `feature = "std"` 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:363:7 424s | 424s 363 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:423:7 424s | 424s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 424s | ^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:424:7 424s | 424s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 424s | ^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:425:7 424s | 424s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 424s | ^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:426:7 424s | 424s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 424s | ^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:427:7 424s | 424s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 424s | ^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:428:7 424s | 424s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 424s | ^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:429:7 424s | 424s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 424s | ^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `std` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:291:19 424s | 424s 291 | #[cfg(not(std))] 424s | ^^^ help: found config with similar value: `feature = "std"` 424s ... 424s 359 | scalar_float_impl!(f32, u32); 424s | ---------------------------- in this macro invocation 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 424s 424s warning: unexpected `cfg` condition name: `std` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:291:19 424s | 424s 291 | #[cfg(not(std))] 424s | ^^^ help: found config with similar value: `feature = "std"` 424s ... 424s 360 | scalar_float_impl!(f64, u64); 424s | ---------------------------- in this macro invocation 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 424s | 424s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 424s | 424s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 424s | 424s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 424s | 424s 572 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 424s | 424s 679 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 424s | 424s 687 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 424s | 424s 696 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 424s | 424s 706 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 424s | 424s 1001 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 424s | 424s 1003 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 424s | 424s 1005 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 424s | 424s 1007 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 424s | 424s 1010 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 424s | 424s 1012 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition value: `simd_support` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 424s | 424s 1014 | #[cfg(feature = "simd_support")] 424s | ^^^^^^^^^^^^^^^^^^^^^^^^ 424s | 424s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 424s = help: consider adding `simd_support` as a feature in `Cargo.toml` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/rng.rs:395:12 424s | 424s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/rngs/mod.rs:99:12 424s | 424s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/rngs/mod.rs:118:12 424s | 424s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/rngs/std.rs:32:12 424s | 424s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/rngs/thread.rs:60:12 424s | 424s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/rngs/thread.rs:87:12 424s | 424s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/mod.rs:29:12 424s | 424s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/mod.rs:623:12 424s | 424s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/index.rs:276:12 424s | 424s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/mod.rs:114:16 424s | 424s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/mod.rs:142:16 424s | 424s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/mod.rs:170:16 424s | 424s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/mod.rs:219:16 424s | 424s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: unexpected `cfg` condition name: `doc_cfg` 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/seq/mod.rs:465:16 424s | 424s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 424s | ^^^^^^^ 424s | 424s = help: consider using a Cargo feature instead 424s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 424s [lints.rust] 424s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 424s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 424s = note: see for more information about checking conditional configuration 424s 424s warning: trait `Float` is never used 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:238:18 424s | 424s 238 | pub(crate) trait Float: Sized { 424s | ^^^^^ 424s | 424s = note: `#[warn(dead_code)]` on by default 424s 424s warning: associated items `lanes`, `extract`, and `replace` are never used 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:247:8 424s | 424s 245 | pub(crate) trait FloatAsSIMD: Sized { 424s | ----------- associated items in this trait 424s 246 | #[inline(always)] 424s 247 | fn lanes() -> usize { 424s | ^^^^^ 424s ... 424s 255 | fn extract(self, index: usize) -> Self { 424s | ^^^^^^^ 424s ... 424s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 424s | ^^^^^^^ 424s 424s warning: method `all` is never used 424s --> /tmp/tmp.2QppDkxNpX/registry/rand-0.8.5/src/distributions/utils.rs:268:8 424s | 424s 266 | pub(crate) trait BoolAsSIMD: Sized { 424s | ---------- method in this trait 424s 267 | fn any(self) -> bool; 424s 268 | fn all(self) -> bool; 424s | ^^^ 424s 425s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 425s Compiling oxrdf v0.2.4 425s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 425s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.2QppDkxNpX/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=8a09a8efe1aa7283 -C extra-filename=-8a09a8efe1aa7283 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern oxilangtag=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern rand=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/librand-41ce1892aa719892.rmeta --extern thiserror=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 425s warning: `rand` (lib) generated 70 warnings (1 duplicate) 425s Compiling pin-project-lite v0.2.13 425s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 425s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.2QppDkxNpX/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 425s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 425s Compiling tokio v1.43.0 425s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/tokio-1.43.0 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/tokio-1.43.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O 425s backed applications. 425s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.43.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=43 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/tokio-1.43.0 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name tokio --edition=2021 /tmp/tmp.2QppDkxNpX/registry/tokio-1.43.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="macros"' --cfg 'feature="rt"' --cfg 'feature="tokio-macros"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "mio", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "test-util", "time", "tokio-macros", "tracing"))' -C metadata=bba2fec50ae61c26 -C extra-filename=-bba2fec50ae61c26 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern pin_project_lite=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern tokio_macros=/tmp/tmp.2QppDkxNpX/target/release/deps/libtokio_macros-cc1b943c02aa4c24.so --cap-lints warn -Ctarget-feature=+backchain` 430s warning: `tokio` (lib) generated 1 warning (1 duplicate) 430s Compiling oxrdfxml v0.1.5 430s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdfxml CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/oxrdfxml-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/oxrdfxml-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for the RDF/XML format 430s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdfxml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/oxrdfxml-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name oxrdfxml --edition=2021 /tmp/tmp.2QppDkxNpX/registry/oxrdfxml-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default"))' -C metadata=816b3107644a5b78 -C extra-filename=-816b3107644a5b78 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern oxilangtag=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-8a09a8efe1aa7283.rmeta --extern quick_xml=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libquick_xml-759ace41c505d51b.rmeta --extern thiserror=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 436s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 436s Compiling oxttl v0.1.5 436s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxttl CARGO_MANIFEST_DIR=/tmp/tmp.2QppDkxNpX/registry/oxttl-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.2QppDkxNpX/registry/oxttl-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for languages related to RDF Turtle (N-Triples, N-Quads, Turtle, TriG and N3) 436s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxttl CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxttl' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.2QppDkxNpX/registry/oxttl-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name oxttl --edition=2021 /tmp/tmp.2QppDkxNpX/registry/oxttl-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=55a188d76711a008 -C extra-filename=-55a188d76711a008 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern memchr=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern oxilangtag=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-8a09a8efe1aa7283.rmeta --extern thiserror=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 438s warning: `oxrdfxml` (lib) generated 1 warning (1 duplicate) 442s warning: `oxttl` (lib) generated 1 warning (1 duplicate) 442s Compiling oxrdfio v0.1.5 (/usr/share/cargo/registry/oxrdfio-0.1.5) 442s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdfio CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrdfio-0.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrdfio-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for various RDF formats 442s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdfio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxrdfio-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.2QppDkxNpX/target/release/deps rustc --crate-name oxrdfio --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=564de130f015e764 -C extra-filename=-564de130f015e764 --out-dir /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.2QppDkxNpX/target/release/deps --extern oxrdf=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-8a09a8efe1aa7283.rlib --extern oxrdfxml=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxrdfxml-816b3107644a5b78.rlib --extern oxttl=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/liboxttl-55a188d76711a008.rlib --extern thiserror=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rlib --extern tokio=/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/libtokio-bba2fec50ae61c26.rlib -Ctarget-feature=+backchain` 442s warning: `oxrdfio` (lib test) generated 1 warning (1 duplicate) 442s Finished `release` profile [optimized] target(s) in 28.24s 442s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrdfio-0.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrdfio-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for various RDF formats 442s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdfio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.2QppDkxNpX/target/s390x-unknown-linux-gnu/release/deps/oxrdfio-564de130f015e764` 442s 442s running 0 tests 442s 442s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 442s 442s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 442s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 442s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 442s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 442s autopkgtest: DBG: testbed command exited with code 0 443s autopkgtest [01:34:16]: test rust-oxrdfio:default: -----------------------] 443s autopkgtest: DBG: testbed executing test finished with exit status 0 443s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfio%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdfio%3Adefault-stdout 443s autopkgtest: DBG: got reply from testbed: ok 443s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfio%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdfio%3Adefault-stderr 443s autopkgtest: DBG: got reply from testbed: ok 443s autopkgtest [01:34:16]: test rust-oxrdfio:default: - - - - - - - - - - results - - - - - - - - - - 443s rust-oxrdfio:default PASS 443s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfio%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 443s autopkgtest: DBG: got reply from testbed: ok 443s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-oxrdfio:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 444s autopkgtest: DBG: testbed command exited with code 0 444s autopkgtest [01:34:17]: test rust-oxrdfxml:default: preparing testbed 444s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-oxrdfio-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'], deps_new=['dh-rust', 'librust-oxrdfxml-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 444s autopkgtest: DBG: testbed reset 444s autopkgtest: DBG: sending command to testbed: revert 545s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 545s autopkgtest: DBG: sending command to testbed: print-execute-command 545s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 545s autopkgtest: DBG: sending command to testbed: capabilities 545s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 545s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 545s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 545s autopkgtest: DBG: testbed command exited with code 0 545s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 546s autopkgtest: DBG: got reply from testbed: ok 546s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 546s autopkgtest: DBG: testbed command exited with code 0 546s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 546s autopkgtest: DBG: testbed command exited with code 0 546s autopkgtest [01:35:59]: testbed dpkg architecture: s390x 546s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 546s autopkgtest: DBG: testbed command exited with code 0 546s autopkgtest [01:35:59]: testbed apt version: 2.9.28 546s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 546s autopkgtest: DBG: testbed command exited with code 0 546s autopkgtest: DBG: testbed has eatmydata 546s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 546s autopkgtest: DBG: testbed command exited with code 0 546s autopkgtest [01:35:59]: @@@@@@@@@@@@@@@@@@@@ test bed setup 546s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 546s autopkgtest: DBG: testbed command exited with code 0 546s autopkgtest [01:35:59]: testbed release detected to be: plucky 546s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 547s autopkgtest: DBG: testbed command exited with code 0 547s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 547s autopkgtest: DBG: testbed command exited with code 0 547s autopkgtest: DBG: adding APT source: Types: deb deb-src 547s URIs: http://ftpmaster.internal/ubuntu/ 547s Suites: plucky-proposed 547s Components: main restricted universe multiverse 547s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 547s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 547s autopkgtest: DBG: testbed command exited with code 0 547s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 547s Package: * 547s Pin: release plucky-proposed 547s Pin-Priority: 500 547s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 547s autopkgtest: DBG: testbed command exited with code 0 547s autopkgtest [01:36:00]: updating testbed package index (apt update) 547s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 547s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 548s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 548s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 548s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 548s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 548s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 548s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 548s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 548s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 548s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 548s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 548s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 548s Fetched 2062 kB in 1s (2042 kB/s) 549s Reading package lists... 549s autopkgtest: DBG: testbed command exited with code 0 549s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 549s Package: * 549s Pin: release plucky-proposed 549s Pin-Priority: 100 549s 549s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 549s Pin: release plucky-proposed 549s Pin-Priority: 995 549s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 549s autopkgtest: DBG: testbed command exited with code 0 549s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 549s autopkgtest: DBG: testbed command exited with code 0 549s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 549s + lsb_release --codename --short 549s + RELEASE=plucky 549s + cat 549s + [ plucky != trusty ] 549s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 550s Reading package lists... 550s Building dependency tree... 550s Reading state information... 550s Calculating upgrade... 550s The following packages were automatically installed and are no longer required: 550s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 550s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 550s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 550s linux-tools-6.11.0-8-generic 550s Use 'sudo apt autoremove' to remove them. 550s The following packages will be upgraded: 550s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 550s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 550s Need to get 1155 kB of archives. 550s After this operation, 16.4 kB of additional disk space will be used. 550s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 550s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 550s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 550s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 550s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 550s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 550s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 551s Preconfiguring packages ... 551s Fetched 1155 kB in 1s (1847 kB/s) 551s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 551s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 551s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 551s Setting up dash (0.5.12-12ubuntu1) ... 551s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 551s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 551s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 551s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 551s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 551s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 551s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 551s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 551s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 551s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 551s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 551s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 551s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 551s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 551s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 551s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 551s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 551s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 551s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 551s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 551s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 551s Setting up libtasn1-6:s390x (4.20.0-2) ... 551s Processing triggers for libc-bin (2.40-4ubuntu1) ... 551s Processing triggers for man-db (2.13.0-1) ... 552s Processing triggers for debianutils (5.21) ... 552s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 552s + /usr/lib/apt/apt-helper analyze-pattern ?true 552s + uname -r 552s + sed s/\./\\./g 552s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 552s + apt list ?obsolete 552s + tail -n+2 552s + grep -v ^linux-.*6\.12\.0-15-generic.* 552s + cut -d/ -f1 552s + true 552s + obsolete_pkgs= 552s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 552s Reading package lists... 552s Building dependency tree... 552s Reading state information... 552s The following packages will be REMOVED: 552s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 552s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 552s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 552s linux-tools-6.11.0-8-generic* 552s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 552s After this operation, 167 MB disk space will be freed. 552s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 552s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 552s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 552s Removing libpython3.12t64:s390x (3.12.9-1) ... 552s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 552s Removing libnsl2:s390x (1.3.0-3build3) ... 552s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 553s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 553s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 553s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 554s Processing triggers for libc-bin (2.40-4ubuntu1) ... 554s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 554s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 554s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 554s + grep -q trusty /etc/lsb-release 554s + [ ! -d /usr/share/doc/unattended-upgrades ] 554s + [ ! -d /usr/share/doc/lxd ] 554s + [ ! -d /usr/share/doc/lxd-client ] 554s + [ ! -d /usr/share/doc/snapd ] 554s + type iptables 554s + cat 554s + chmod 755 /etc/rc.local 554s + . /etc/rc.local 554s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 554s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 554s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 554s + uname -m 554s + [ s390x = ppc64le ] 554s + [ -d /run/systemd/system ] 554s + systemd-detect-virt --quiet --vm 554s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 554s + cat 554s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 554s + echo COMPRESS=lz4 554s autopkgtest: DBG: testbed command exited with code 0 554s autopkgtest [01:36:07]: upgrading testbed (apt dist-upgrade and autopurge) 554s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 554s Reading package lists... 554s Building dependency tree... 554s Reading state information... 554s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 554s Starting 2 pkgProblemResolver with broken count: 0 554s Done 554s Entering ResolveByKeep 555s 555s The following packages will be upgraded: 555s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 555s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 555s Need to get 10.7 MB of archives. 555s After this operation, 305 kB of additional disk space will be used. 555s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 555s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 555s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 555s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 556s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 556s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 556s Preconfiguring packages ... 556s Fetched 10.7 MB in 1s (11.5 MB/s) 556s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 556s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 556s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 556s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 556s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 556s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 556s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 556s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 556s Checking for services that may need to be restarted... 556s Checking init scripts... 556s Checking for services that may need to be restarted... 556s Checking init scripts... 556s Stopping some services possibly affected by the upgrade (will be restarted later): 556s cron: stopping...done. 556s 556s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 556s Setting up libc6:s390x (2.41-1ubuntu1) ... 556s Checking for services that may need to be restarted... 556s Checking init scripts... 556s Restarting services possibly affected by the upgrade: 556s cron: restarting...done. 556s 556s Services restarted successfully. 556s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 556s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 556s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 556s Setting up libc-bin (2.41-1ubuntu1) ... 557s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 557s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 557s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 557s Setting up iproute2 (6.13.0-1ubuntu1) ... 557s Setting up locales (2.41-1ubuntu1) ... 557s Installing new version of config file /etc/locale.alias ... 557s Generating locales (this might take a while)... 558s en_US.UTF-8... done 558s Generation complete. 558s Setting up libc-dev-bin (2.41-1ubuntu1) ... 558s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 558s Processing triggers for man-db (2.13.0-1) ... 559s Processing triggers for systemd (257.2-3ubuntu1) ... 560s autopkgtest: DBG: testbed command exited with code 0 560s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 560s Reading package lists... 560s Building dependency tree... 560s Reading state information... 560s Starting pkgProblemResolver with broken count: 0 560s Starting 2 pkgProblemResolver with broken count: 0 560s Done 560s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 560s autopkgtest: DBG: testbed command exited with code 0 560s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 560s autopkgtest: DBG: testbed command exited with code 1 560s autopkgtest [01:36:13]: rebooting testbed after setup commands that affected boot 560s autopkgtest: DBG: sending command to testbed: reboot 580s autopkgtest: DBG: got reply from testbed: ok 580s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 580s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 580s autopkgtest: DBG: testbed command exited with code 0 580s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 580s autopkgtest: DBG: got reply from testbed: ok 580s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 580s autopkgtest: DBG: testbed command exited with code 0 580s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 580s autopkgtest: DBG: testbed command exited with code 0 580s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 580s autopkgtest: DBG: testbed command exited with code 0 580s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 581s autopkgtest: DBG: testbed command exited with code 0 581s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 581s autopkgtest: DBG: got reply from testbed: ok 581s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 581s autopkgtest: DBG: testbed command exited with code 0 581s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 581s autopkgtest: DBG: testbed command exited with code 0 581s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 581s autopkgtest: DBG: testbed command exited with code 0 581s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 581s autopkgtest: DBG: testbed command exited with code 0 581s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 582s autopkgtest: DBG: got reply from testbed: ok 582s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 582s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 582s autopkgtest: DBG: testbed command exited with code 0 582s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 582s autopkgtest: DBG: got reply from testbed: ok 582s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 582s autopkgtest: DBG: testbed command exited with code 0 582s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 582s autopkgtest: DBG: testbed command exited with code 0 582s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 582s autopkgtest: DBG: testbed command exited with code 0 582s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 583s autopkgtest: DBG: testbed command exited with code 0 583s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 583s autopkgtest: DBG: got reply from testbed: ok 583s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 583s autopkgtest: DBG: testbed command exited with code 0 583s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 583s autopkgtest: DBG: testbed command exited with code 0 583s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 583s autopkgtest: DBG: testbed command exited with code 0 583s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 583s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-oxrdfxml-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'] 583s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-oxrdfxml-0.1+default-dev, librust-tokio-1+macros-dev, librust-tokio-1+rt-dev 583s autopkgtest: DBG: can use apt-get on testbed: True 583s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-oxrdfxml-0.1+default-dev, librust-tokio-1+macros-dev, librust-tokio-1+rt-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 584s Reading package lists... 584s Building dependency tree... 584s Reading state information... 584s Starting pkgProblemResolver with broken count: 0 584s Starting 2 pkgProblemResolver with broken count: 0 584s Done 584s The following NEW packages will be installed: 584s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 584s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 584s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 584s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 584s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 584s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 584s librust-addr2line-dev librust-adler-dev librust-ahash-dev 584s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 584s librust-backtrace-dev librust-blobby-dev librust-block-buffer-dev 584s librust-bumpalo-dev librust-byteorder-dev librust-bytes-dev 584s librust-cfg-if-dev librust-compiler-builtins-dev librust-const-oid-dev 584s librust-const-random-dev librust-const-random-macro-dev 584s librust-cpp-demangle-dev librust-crc32fast-dev librust-critical-section-dev 584s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 584s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 584s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 584s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 584s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 584s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 584s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev 584s librust-js-sys-dev librust-libc-dev librust-libz-sys-dev 584s librust-lock-api-dev librust-log-dev librust-memchr-dev librust-memmap2-dev 584s librust-miniz-oxide-dev librust-mio-dev librust-no-panic-dev 584s librust-object-dev librust-once-cell-dev librust-owning-ref-dev 584s librust-oxilangtag-dev librust-oxiri-dev librust-oxrdf-dev 584s librust-oxsdatatypes-dev librust-parking-lot-core-dev 584s librust-parking-lot-dev librust-pin-project-lite-dev librust-pkg-config-dev 584s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 584s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 584s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 584s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 584s librust-rayon-core-dev librust-rayon-dev librust-rustc-demangle-dev 584s librust-rustc-std-workspace-core-dev librust-ruzstd-dev librust-ryu-dev 584s librust-scopeguard-dev librust-serde-derive-dev librust-serde-dev 584s librust-serde-fmt-dev librust-serde-json-dev librust-serde-test-dev 584s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 584s librust-stable-deref-trait-dev librust-static-assertions-dev 584s librust-subtle-dev librust-sval-buffer-dev librust-sval-derive-dev 584s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 584s librust-sval-ref-dev librust-sval-serde-dev librust-syn-1-dev 584s librust-syn-dev librust-thiserror-1-dev librust-thiserror-impl-1-dev 584s librust-tiny-keccak-dev librust-tokio-dev librust-tokio-macros-dev 584s librust-tracing-attributes-dev librust-tracing-core-dev librust-tracing-dev 584s librust-twox-hash-dev librust-typed-arena-dev librust-typenum-dev 584s librust-unicode-ident-dev librust-valuable-derive-dev librust-valuable-dev 584s librust-value-bag-dev librust-value-bag-serde1-dev 584s librust-value-bag-sval2-dev librust-version-check-dev 584s librust-wasm-bindgen-backend-dev librust-wasm-bindgen-dev 584s librust-wasm-bindgen-macro-dev librust-wasm-bindgen-macro-support-dev 584s librust-wasm-bindgen-shared-dev librust-zerocopy-derive-dev 584s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 584s libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 m4 pkgconf 584s pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 584s 0 upgraded, 171 newly installed, 0 to remove and 0 not upgraded. 584s Need to get 137 MB of archives. 584s After this operation, 534 MB of additional disk space will be used. 584s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 585s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 585s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 585s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 585s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 585s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 585s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 586s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 588s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 588s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 588s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 588s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 588s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 588s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 588s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 588s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 588s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 588s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 588s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 588s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 588s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 589s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 589s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 589s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 589s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 589s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 589s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 589s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 589s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 589s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 589s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 589s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 589s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 589s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 589s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 589s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 589s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 589s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 589s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 589s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 589s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 589s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 589s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 589s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 590s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 590s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 590s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 590s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 590s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 590s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 590s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 590s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 590s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 590s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 590s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 590s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 590s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 590s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 590s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 590s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 590s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 590s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 590s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 590s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 590s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 590s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 590s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 590s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 590s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 590s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 590s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 590s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 590s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 590s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 590s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 590s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 590s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 590s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 590s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 590s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 590s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 590s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 590s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 590s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 590s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 590s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 590s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 590s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 590s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 590s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 590s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 590s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 590s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 590s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 590s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 590s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 590s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 590s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 590s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 590s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 590s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 590s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 591s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 591s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 591s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 591s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 591s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 591s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 591s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 591s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 591s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 591s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 591s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 591s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 591s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 591s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 591s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 591s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 591s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 591s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 591s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 591s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 591s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 591s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 591s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 591s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 591s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 591s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 591s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 591s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 591s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 591s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 591s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 591s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 591s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 591s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 591s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 591s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 591s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 591s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 591s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 591s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 591s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 591s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 591s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 591s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 591s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 591s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 591s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 591s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 591s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 591s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 591s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 591s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 591s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 591s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 591s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 591s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 591s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 591s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 591s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 591s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 591s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 591s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 591s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 591s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 591s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 591s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 591s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 591s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 591s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 592s Fetched 137 MB in 7s (18.7 MB/s) 592s Selecting previously unselected package m4. 592s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 592s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 592s Unpacking m4 (1.4.19-5) ... 592s Selecting previously unselected package autoconf. 592s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 592s Unpacking autoconf (2.72-3) ... 592s Selecting previously unselected package autotools-dev. 592s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 592s Unpacking autotools-dev (20220109.1) ... 592s Selecting previously unselected package automake. 592s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 592s Unpacking automake (1:1.17-3) ... 592s Selecting previously unselected package autopoint. 592s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 592s Unpacking autopoint (0.23.1-1) ... 592s Selecting previously unselected package libgit2-1.8:s390x. 592s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 592s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 592s Selecting previously unselected package libstd-rust-1.83:s390x. 592s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 592s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 593s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 593s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 593s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 593s Selecting previously unselected package libisl23:s390x. 593s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 593s Unpacking libisl23:s390x (0.27-1) ... 593s Selecting previously unselected package libmpc3:s390x. 594s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 594s Unpacking libmpc3:s390x (1.3.1-1build2) ... 594s Selecting previously unselected package cpp-14-s390x-linux-gnu. 594s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package cpp-14. 594s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package cpp-s390x-linux-gnu. 594s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 594s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 594s Selecting previously unselected package cpp. 594s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 594s Unpacking cpp (4:14.2.0-1ubuntu1) ... 594s Selecting previously unselected package libcc1-0:s390x. 594s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package libgomp1:s390x. 594s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package libitm1:s390x. 594s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package libasan8:s390x. 594s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package libubsan1:s390x. 594s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package libgcc-14-dev:s390x. 594s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package gcc-14-s390x-linux-gnu. 594s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package gcc-14. 594s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 594s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 594s Selecting previously unselected package gcc-s390x-linux-gnu. 594s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 594s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 594s Selecting previously unselected package gcc. 594s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 594s Unpacking gcc (4:14.2.0-1ubuntu1) ... 594s Selecting previously unselected package rustc-1.83. 594s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 594s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 594s Selecting previously unselected package cargo-1.83. 594s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 594s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 594s Selecting previously unselected package libdebhelper-perl. 594s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 594s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 594s Selecting previously unselected package libtool. 594s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 594s Unpacking libtool (2.5.4-3build1) ... 594s Selecting previously unselected package dh-autoreconf. 594s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 594s Unpacking dh-autoreconf (20) ... 594s Selecting previously unselected package libarchive-zip-perl. 594s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 594s Unpacking libarchive-zip-perl (1.68-1) ... 594s Selecting previously unselected package libfile-stripnondeterminism-perl. 594s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 594s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 594s Selecting previously unselected package dh-strip-nondeterminism. 594s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 594s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 595s Selecting previously unselected package debugedit. 595s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 595s Unpacking debugedit (1:5.1-2) ... 595s Selecting previously unselected package dwz. 595s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 595s Unpacking dwz (0.15-1build6) ... 595s Selecting previously unselected package gettext. 595s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 595s Unpacking gettext (0.23.1-1) ... 595s Selecting previously unselected package intltool-debian. 595s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 595s Unpacking intltool-debian (0.35.0+20060710.6) ... 595s Selecting previously unselected package po-debconf. 595s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 595s Unpacking po-debconf (1.0.21+nmu1) ... 595s Selecting previously unselected package debhelper. 595s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 595s Unpacking debhelper (13.24.1ubuntu2) ... 595s Selecting previously unselected package rustc. 595s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 595s Unpacking rustc (1.83.0ubuntu1) ... 595s Selecting previously unselected package cargo. 595s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 595s Unpacking cargo (1.83.0ubuntu1) ... 595s Selecting previously unselected package dh-rust. 595s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 595s Unpacking dh-rust (0.0.11) ... 595s Selecting previously unselected package libpkgconf3:s390x. 595s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 595s Unpacking libpkgconf3:s390x (1.8.1-4) ... 595s Selecting previously unselected package librust-cfg-if-dev:s390x. 595s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 595s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 595s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 595s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 595s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 595s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 595s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 595s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 595s Selecting previously unselected package librust-unicode-ident-dev:s390x. 595s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 595s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 595s Selecting previously unselected package librust-proc-macro2-dev:s390x. 595s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 595s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 595s Selecting previously unselected package librust-quote-dev:s390x. 595s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 595s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 595s Selecting previously unselected package librust-syn-dev:s390x. 595s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 595s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 595s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 595s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 595s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 595s Selecting previously unselected package librust-arbitrary-dev:s390x. 595s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 595s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 595s Selecting previously unselected package librust-equivalent-dev:s390x. 595s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 595s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 595s Selecting previously unselected package librust-critical-section-dev:s390x. 595s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 595s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 595s Selecting previously unselected package librust-serde-derive-dev:s390x. 595s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 595s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 595s Selecting previously unselected package librust-serde-dev:s390x. 595s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 595s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 595s Selecting previously unselected package librust-portable-atomic-dev:s390x. 595s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 595s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 595s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 595s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 595s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 595s Selecting previously unselected package librust-libc-dev:s390x. 595s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 595s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 595s Selecting previously unselected package librust-getrandom-dev:s390x. 595s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 595s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 595s Selecting previously unselected package librust-smallvec-dev:s390x. 595s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 595s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 595s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 595s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 595s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 595s Selecting previously unselected package librust-once-cell-dev:s390x. 595s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 595s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 595s Selecting previously unselected package librust-crunchy-dev:s390x. 595s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 595s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 595s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 595s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 595s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 595s Selecting previously unselected package librust-const-random-macro-dev:s390x. 595s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 595s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 595s Selecting previously unselected package librust-const-random-dev:s390x. 595s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 595s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 595s Selecting previously unselected package librust-version-check-dev:s390x. 595s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 595s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 595s Selecting previously unselected package librust-byteorder-dev:s390x. 595s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 595s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 595s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 595s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 595s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 595s Selecting previously unselected package librust-zerocopy-dev:s390x. 595s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 595s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 595s Selecting previously unselected package librust-ahash-dev. 595s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 595s Unpacking librust-ahash-dev (0.8.11-9) ... 595s Selecting previously unselected package librust-allocator-api2-dev:s390x. 595s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 595s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 595s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 595s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 595s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 595s Selecting previously unselected package librust-either-dev:s390x. 595s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 595s Unpacking librust-either-dev:s390x (1.13.0-1) ... 595s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 595s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 595s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 595s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 595s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 595s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 595s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 595s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 595s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 595s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 595s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 595s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 595s Selecting previously unselected package librust-rayon-core-dev:s390x. 595s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 595s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 595s Selecting previously unselected package librust-rayon-dev:s390x. 595s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 595s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 595s Selecting previously unselected package librust-hashbrown-dev:s390x. 595s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 595s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 595s Selecting previously unselected package librust-indexmap-dev:s390x. 595s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 595s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 595s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 595s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 595s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 595s Selecting previously unselected package librust-gimli-dev:s390x. 595s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 595s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 595s Selecting previously unselected package librust-memmap2-dev:s390x. 595s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 595s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 595s Selecting previously unselected package librust-crc32fast-dev:s390x. 595s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 595s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 595s Selecting previously unselected package pkgconf-bin. 595s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 595s Unpacking pkgconf-bin (1.8.1-4) ... 595s Selecting previously unselected package pkgconf:s390x. 595s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 595s Unpacking pkgconf:s390x (1.8.1-4) ... 595s Selecting previously unselected package librust-pkg-config-dev:s390x. 595s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 595s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 595s Selecting previously unselected package zlib1g-dev:s390x. 595s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 595s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 595s Selecting previously unselected package librust-libz-sys-dev:s390x. 595s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 595s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 595s Selecting previously unselected package librust-adler-dev:s390x. 595s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 595s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 595s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 595s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 595s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 595s Selecting previously unselected package librust-flate2-dev:s390x. 595s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 595s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 595s Selecting previously unselected package librust-sval-derive-dev:s390x. 595s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 595s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 595s Selecting previously unselected package librust-sval-dev:s390x. 595s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 595s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 595s Selecting previously unselected package librust-sval-ref-dev:s390x. 595s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 595s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 595s Selecting previously unselected package librust-erased-serde-dev:s390x. 595s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 595s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 595s Selecting previously unselected package librust-serde-fmt-dev. 595s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 595s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 595s Selecting previously unselected package librust-no-panic-dev:s390x. 595s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 595s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 595s Selecting previously unselected package librust-itoa-dev:s390x. 595s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 595s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 596s Selecting previously unselected package librust-ryu-dev:s390x. 596s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 596s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 596s Selecting previously unselected package librust-serde-json-dev:s390x. 596s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 596s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 596s Selecting previously unselected package librust-serde-test-dev:s390x. 596s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 596s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 596s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 596s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 596s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 596s Selecting previously unselected package librust-sval-buffer-dev:s390x. 596s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 596s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 596s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 596s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 596s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 596s Selecting previously unselected package librust-sval-fmt-dev:s390x. 596s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 596s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 596s Selecting previously unselected package librust-sval-serde-dev:s390x. 596s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 596s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 596s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 596s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 596s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 596s Selecting previously unselected package librust-value-bag-dev:s390x. 596s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 596s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 596s Selecting previously unselected package librust-log-dev:s390x. 596s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 596s Unpacking librust-log-dev:s390x (0.4.22-1) ... 596s Selecting previously unselected package librust-memchr-dev:s390x. 596s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 596s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 596s Selecting previously unselected package librust-blobby-dev:s390x. 596s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 596s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 596s Selecting previously unselected package librust-typenum-dev:s390x. 596s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 596s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 596s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 596s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 596s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 596s Selecting previously unselected package librust-zeroize-dev:s390x. 596s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 596s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 596s Selecting previously unselected package librust-generic-array-dev:s390x. 596s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 596s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 596s Selecting previously unselected package librust-block-buffer-dev:s390x. 596s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 596s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 596s Selecting previously unselected package librust-const-oid-dev:s390x. 596s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 596s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 596s Selecting previously unselected package librust-rand-core-dev:s390x. 596s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 596s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 596s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 596s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 596s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 596s Selecting previously unselected package librust-crypto-common-dev:s390x. 596s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 596s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 596s Selecting previously unselected package librust-subtle-dev:s390x. 596s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 596s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 596s Selecting previously unselected package librust-digest-dev:s390x. 596s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 596s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 596s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 596s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 596s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 596s Selecting previously unselected package librust-rand-chacha-dev:s390x. 596s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 596s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 596s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 596s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 596s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 596s Selecting previously unselected package librust-rand-core+std-dev:s390x. 596s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 596s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 596s Selecting previously unselected package librust-rand-dev:s390x. 596s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 596s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 596s Selecting previously unselected package librust-static-assertions-dev:s390x. 596s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 596s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 596s Selecting previously unselected package librust-twox-hash-dev:s390x. 596s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 596s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 596s Selecting previously unselected package librust-ruzstd-dev:s390x. 596s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 596s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 596s Selecting previously unselected package librust-object-dev:s390x. 596s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 596s Unpacking librust-object-dev:s390x (0.36.5-2) ... 596s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 596s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 596s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 596s Selecting previously unselected package librust-typed-arena-dev:s390x. 596s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 596s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 596s Selecting previously unselected package librust-addr2line-dev:s390x. 596s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 596s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 596s Selecting previously unselected package librust-autocfg-dev:s390x. 596s Preparing to unpack .../137-librust-autocfg-dev_1.1.0-1_s390x.deb ... 596s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 596s Selecting previously unselected package librust-backtrace-dev:s390x. 596s Preparing to unpack .../138-librust-backtrace-dev_0.3.74-3_s390x.deb ... 596s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 596s Selecting previously unselected package librust-bumpalo-dev:s390x. 596s Preparing to unpack .../139-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 596s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 596s Selecting previously unselected package librust-bytes-dev:s390x. 596s Preparing to unpack .../140-librust-bytes-dev_1.9.0-1_s390x.deb ... 596s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 596s Selecting previously unselected package librust-encoding-rs-dev:s390x. 596s Preparing to unpack .../141-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 596s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 596s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 596s Preparing to unpack .../142-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 596s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 596s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 596s Preparing to unpack .../143-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 596s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 596s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 596s Preparing to unpack .../144-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 596s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 596s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 596s Preparing to unpack .../145-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 596s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 596s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 596s Preparing to unpack .../146-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 596s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 596s Selecting previously unselected package librust-js-sys-dev:s390x. 596s Preparing to unpack .../147-librust-js-sys-dev_0.3.64-1_s390x.deb ... 596s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 596s Selecting previously unselected package librust-owning-ref-dev:s390x. 596s Preparing to unpack .../148-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 596s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 596s Selecting previously unselected package librust-scopeguard-dev:s390x. 596s Preparing to unpack .../149-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 596s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 596s Selecting previously unselected package librust-lock-api-dev:s390x. 596s Preparing to unpack .../150-librust-lock-api-dev_0.4.12-1_s390x.deb ... 596s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 596s Selecting previously unselected package librust-mio-dev:s390x. 596s Preparing to unpack .../151-librust-mio-dev_1.0.2-3_s390x.deb ... 596s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 596s Selecting previously unselected package librust-oxilangtag-dev. 596s Preparing to unpack .../152-librust-oxilangtag-dev_0.1.5-4_all.deb ... 596s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 596s Selecting previously unselected package librust-oxiri-dev. 596s Preparing to unpack .../153-librust-oxiri-dev_0.2.11-2_all.deb ... 596s Unpacking librust-oxiri-dev (0.2.11-2) ... 596s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 596s Preparing to unpack .../154-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 596s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 596s Selecting previously unselected package librust-thiserror-1-dev:s390x. 596s Preparing to unpack .../155-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 596s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 596s Selecting previously unselected package librust-oxsdatatypes-dev. 596s Preparing to unpack .../156-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 596s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 596s Selecting previously unselected package librust-parking-lot-dev:s390x. 596s Preparing to unpack .../157-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 596s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 596s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 596s Preparing to unpack .../158-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 596s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 596s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 596s Preparing to unpack .../159-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 596s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 596s Selecting previously unselected package librust-socket2-dev:s390x. 596s Preparing to unpack .../160-librust-socket2-dev_0.5.8-1_s390x.deb ... 596s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 596s Selecting previously unselected package librust-tokio-macros-dev:s390x. 596s Preparing to unpack .../161-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 596s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 596s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 596s Preparing to unpack .../162-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 596s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 596s Selecting previously unselected package librust-syn-1-dev:s390x. 596s Preparing to unpack .../163-librust-syn-1-dev_1.0.109-3_s390x.deb ... 596s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 596s Selecting previously unselected package librust-valuable-derive-dev:s390x. 596s Preparing to unpack .../164-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 596s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 596s Selecting previously unselected package librust-valuable-dev:s390x. 596s Preparing to unpack .../165-librust-valuable-dev_0.1.0-4_s390x.deb ... 596s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 596s Selecting previously unselected package librust-tracing-core-dev:s390x. 596s Preparing to unpack .../166-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 596s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 596s Selecting previously unselected package librust-tracing-dev:s390x. 596s Preparing to unpack .../167-librust-tracing-dev_0.1.40-1_s390x.deb ... 596s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 596s Selecting previously unselected package librust-tokio-dev:s390x. 596s Preparing to unpack .../168-librust-tokio-dev_1.43.0-1_s390x.deb ... 596s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 596s Selecting previously unselected package librust-quick-xml-dev:s390x. 596s Preparing to unpack .../169-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 596s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 596s Selecting previously unselected package librust-oxrdf-dev. 596s Preparing to unpack .../170-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 596s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 597s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 597s Setting up librust-either-dev:s390x (1.13.0-1) ... 597s Setting up librust-adler-dev:s390x (1.0.2-2) ... 597s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 597s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 597s Setting up libarchive-zip-perl (1.68-1) ... 597s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 597s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 597s Setting up m4 (1.4.19-5) ... 597s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 597s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 597s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 597s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 597s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 597s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 597s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 597s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 597s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 597s Setting up autotools-dev (20220109.1) ... 597s Setting up libpkgconf3:s390x (1.8.1-4) ... 597s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 597s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 597s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 597s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 597s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 597s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 597s Setting up libmpc3:s390x (1.3.1-1build2) ... 597s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 597s Setting up autopoint (0.23.1-1) ... 597s Setting up pkgconf-bin (1.8.1-4) ... 597s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 597s Setting up autoconf (2.72-3) ... 597s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 597s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 597s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 597s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 597s Setting up dwz (0.15-1build6) ... 597s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 597s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 597s Setting up debugedit (1:5.1-2) ... 597s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 597s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 597s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 597s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 597s Setting up libisl23:s390x (0.27-1) ... 597s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 597s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 597s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 597s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 597s Setting up automake (1:1.17-3) ... 597s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 597s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 597s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 597s Setting up librust-libc-dev:s390x (0.2.169-1) ... 597s Setting up gettext (0.23.1-1) ... 597s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 597s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 597s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 597s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 597s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 597s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 597s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 597s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 597s Setting up pkgconf:s390x (1.8.1-4) ... 597s Setting up intltool-debian (0.35.0+20060710.6) ... 597s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 597s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 597s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 597s Setting up cpp-14 (14.2.0-17ubuntu1) ... 597s Setting up dh-strip-nondeterminism (1.14.1-2) ... 597s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 597s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 597s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 597s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 597s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 597s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 597s Setting up po-debconf (1.0.21+nmu1) ... 597s Setting up librust-quote-dev:s390x (1.0.37-1) ... 597s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 597s Setting up librust-syn-dev:s390x (2.0.96-2) ... 597s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 597s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 597s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 597s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 597s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 597s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 597s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 597s Setting up cpp (4:14.2.0-1ubuntu1) ... 597s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 597s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 597s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 597s Setting up librust-serde-dev:s390x (1.0.217-1) ... 597s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 597s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 597s Setting up librust-oxilangtag-dev (0.1.5-4) ... 597s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 597s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 597s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 597s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 597s Setting up librust-serde-fmt-dev (1.0.3-4) ... 597s Setting up librust-oxiri-dev (0.2.11-2) ... 597s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 597s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 597s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 597s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 597s Setting up librust-sval-dev:s390x (2.6.1-2) ... 597s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 597s Setting up gcc-14 (14.2.0-17ubuntu1) ... 597s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 597s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 597s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 597s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 597s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 597s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 597s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 597s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 597s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 597s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 597s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 597s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 597s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 597s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 597s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 597s Setting up libtool (2.5.4-3build1) ... 597s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 597s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 597s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 597s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 597s Setting up gcc (4:14.2.0-1ubuntu1) ... 597s Setting up dh-autoreconf (20) ... 597s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 597s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 597s Setting up rustc (1.83.0ubuntu1) ... 597s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 597s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 597s Setting up librust-digest-dev:s390x (0.10.7-2) ... 597s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 597s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 597s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 597s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 597s Setting up debhelper (13.24.1ubuntu2) ... 597s Setting up librust-ahash-dev (0.8.11-9) ... 597s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 597s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 597s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 597s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 597s Setting up cargo (1.83.0ubuntu1) ... 597s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 597s Setting up dh-rust (0.0.11) ... 597s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 597s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 597s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 597s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 597s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 597s Setting up librust-log-dev:s390x (0.4.22-1) ... 597s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 597s Setting up librust-rand-dev:s390x (0.8.5-1) ... 597s Setting up librust-mio-dev:s390x (1.0.2-3) ... 597s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 597s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 597s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 597s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 597s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 597s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 597s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 597s Setting up librust-object-dev:s390x (0.36.5-2) ... 597s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 597s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 597s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 597s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 597s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 597s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 597s Processing triggers for install-info (7.1.1-1) ... 597s Processing triggers for libc-bin (2.41-1ubuntu1) ... 597s Processing triggers for man-db (2.13.0-1) ... 598s autopkgtest: DBG: testbed command exited with code 0 598s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-packages.all"], kind short, sout raw, serr pipe, env [] 598s autopkgtest: DBG: testbed command exited with code 0 598s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfxml%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdfxml%3Adefault-packages.all 598s autopkgtest: DBG: got reply from testbed: ok 598s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 598s autopkgtest: DBG: testbed command exited with code 1 598s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 598s autopkgtest: DBG: testbed command exited with code 0 598s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 600s autopkgtest: DBG: got reply from testbed: ok 600s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 601s autopkgtest: DBG: testbed command exited with code 0 601s autopkgtest [01:36:54]: test rust-oxrdfxml:default: /usr/share/dh-rust/bin/cargo-auto-test oxrdfxml 0.1.5 --all-targets 601s autopkgtest [01:36:54]: test rust-oxrdfxml:default: [----------------------- 601s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test oxrdfxml 0.1.5 --all-targets'"], kind test, sout raw, serr raw, env [] 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-artifacts 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-stderr 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-stdout 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test oxrdfxml 0.1.5 --all-targets 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.NmXWZgxB6J/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-stdout 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.NmXWZgxB6J/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-stdout 601s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 2892 to /tmp/autopkgtest_script_pid 601s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 601s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 601s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.RudsfWvgph/registry/ 601s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 601s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 601s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 601s Compiling proc-macro2 v1.0.92 601s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.RudsfWvgph/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn` 601s Compiling unicode-ident v1.0.13 601s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.RudsfWvgph/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.RudsfWvgph/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn` 601s Compiling libc v0.2.169 601s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 601s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.RudsfWvgph/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.RudsfWvgph/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn` 601s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.RudsfWvgph/target/release/deps:/tmp/tmp.RudsfWvgph/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.RudsfWvgph/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.RudsfWvgph/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 601s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 601s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 601s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 601s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 601s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps OUT_DIR=/tmp/tmp.RudsfWvgph/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.RudsfWvgph/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.RudsfWvgph/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern unicode_ident=/tmp/tmp.RudsfWvgph/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 602s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 602s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.RudsfWvgph/target/release/deps:/tmp/tmp.RudsfWvgph/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.RudsfWvgph/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 602s [libc 0.2.169] cargo:rerun-if-changed=build.rs 602s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 602s [libc 0.2.169] cargo:rustc-cfg=freebsd11 602s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 602s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 602s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 602s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps OUT_DIR=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.RudsfWvgph/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 602s warning: unused import: `crate::ntptimeval` 602s --> /tmp/tmp.RudsfWvgph/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 602s | 602s 5 | use crate::ntptimeval; 602s | ^^^^^^^^^^^^^^^^^ 602s | 602s = note: `#[warn(unused_imports)]` on by default 602s 602s Compiling quote v1.0.37 602s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.RudsfWvgph/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.RudsfWvgph/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern proc_macro2=/tmp/tmp.RudsfWvgph/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 602s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 602s | 602s = note: this feature is not stably supported; its behavior can change in the future 602s 602s warning: `libc` (lib) generated 2 warnings 602s Compiling syn v2.0.96 602s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.RudsfWvgph/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=1e840a5d57ad3da8 -C extra-filename=-1e840a5d57ad3da8 --out-dir /tmp/tmp.RudsfWvgph/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern proc_macro2=/tmp/tmp.RudsfWvgph/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.RudsfWvgph/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.RudsfWvgph/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 602s Compiling byteorder v1.5.0 602s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.RudsfWvgph/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 602s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 602s Compiling cfg-if v1.0.0 602s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 602s parameters. Structured like an if-else chain, the first matching branch is the 602s item that gets emitted. 602s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.RudsfWvgph/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 602s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 602s Compiling getrandom v0.2.15 602s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.RudsfWvgph/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern cfg_if=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 602s warning: unexpected `cfg` condition value: `js` 602s --> /tmp/tmp.RudsfWvgph/registry/getrandom-0.2.15/src/lib.rs:334:25 602s | 602s 334 | } else if #[cfg(all(feature = "js", 602s | ^^^^^^^^^^^^^^ 602s | 602s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 602s = help: consider adding `js` as a feature in `Cargo.toml` 602s = note: see for more information about checking conditional configuration 602s = note: `#[warn(unexpected_cfgs)]` on by default 602s 603s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 603s Compiling rand_core v0.6.4 603s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 603s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern getrandom=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 603s warning: unexpected `cfg` condition name: `doc_cfg` 603s --> /tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/src/lib.rs:38:13 603s | 603s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 603s | ^^^^^^^ 603s | 603s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 603s = help: consider using a Cargo feature instead 603s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 603s [lints.rust] 603s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 603s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 603s = note: see for more information about checking conditional configuration 603s = note: `#[warn(unexpected_cfgs)]` on by default 603s 603s warning: unexpected `cfg` condition name: `doc_cfg` 603s --> /tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/src/error.rs:50:16 603s | 603s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 603s | ^^^^^^^ 603s | 603s = help: consider using a Cargo feature instead 603s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 603s [lints.rust] 603s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 603s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 603s = note: see for more information about checking conditional configuration 603s 603s warning: unexpected `cfg` condition name: `doc_cfg` 603s --> /tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/src/error.rs:64:16 603s | 603s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 603s | ^^^^^^^ 603s | 603s = help: consider using a Cargo feature instead 603s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 603s [lints.rust] 603s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 603s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 603s = note: see for more information about checking conditional configuration 603s 603s warning: unexpected `cfg` condition name: `doc_cfg` 603s --> /tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/src/error.rs:75:16 603s | 603s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 603s | ^^^^^^^ 603s | 603s = help: consider using a Cargo feature instead 603s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 603s [lints.rust] 603s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 603s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 603s = note: see for more information about checking conditional configuration 603s 603s warning: unexpected `cfg` condition name: `doc_cfg` 603s --> /tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/src/os.rs:46:12 603s | 603s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 603s | ^^^^^^^ 603s | 603s = help: consider using a Cargo feature instead 603s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 603s [lints.rust] 603s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 603s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 603s = note: see for more information about checking conditional configuration 603s 603s warning: unexpected `cfg` condition name: `doc_cfg` 603s --> /tmp/tmp.RudsfWvgph/registry/rand_core-0.6.4/src/lib.rs:411:16 603s | 603s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 603s | ^^^^^^^ 603s | 603s = help: consider using a Cargo feature instead 603s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 603s [lints.rust] 603s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 603s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 603s = note: see for more information about checking conditional configuration 603s 603s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 603s Compiling thiserror v1.0.69 603s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.RudsfWvgph/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn` 603s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.RudsfWvgph/target/release/deps:/tmp/tmp.RudsfWvgph/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.RudsfWvgph/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 603s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 603s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 603s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 603s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 603s Compiling oxiri v0.2.11 603s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 603s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.RudsfWvgph/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 603s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 603s Compiling memchr v2.7.4 603s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 603s 1, 2 or 3 byte search and single substring search. 603s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.RudsfWvgph/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 604s warning: `memchr` (lib) generated 1 warning (1 duplicate) 604s Compiling pin-project-lite v0.2.13 604s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 604s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.RudsfWvgph/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 604s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 604s Compiling oxilangtag v0.1.5 604s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 604s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.RudsfWvgph/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 605s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 605s Compiling quick-xml v0.36.1 605s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/quick-xml-0.36.1 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.RudsfWvgph/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=759ace41c505d51b -C extra-filename=-759ace41c505d51b --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern memchr=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --cap-lints warn -Ctarget-feature=+backchain` 605s warning: unexpected `cfg` condition value: `document-features` 605s --> /tmp/tmp.RudsfWvgph/registry/quick-xml-0.36.1/src/lib.rs:42:5 605s | 605s 42 | feature = "document-features", 605s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 605s | 605s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 605s = help: consider adding `document-features` as a feature in `Cargo.toml` 605s = note: see for more information about checking conditional configuration 605s = note: `#[warn(unexpected_cfgs)]` on by default 605s 605s warning: elided lifetime has a name 605s --> /tmp/tmp.RudsfWvgph/registry/quick-xml-0.36.1/src/writer.rs:146:73 605s | 605s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 605s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 605s | 605s = note: `#[warn(elided_named_lifetimes)]` on by default 605s 606s Compiling zerocopy-derive v0.7.34 606s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.RudsfWvgph/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=83ccd38c41f59dac -C extra-filename=-83ccd38c41f59dac --out-dir /tmp/tmp.RudsfWvgph/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern proc_macro2=/tmp/tmp.RudsfWvgph/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.RudsfWvgph/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.RudsfWvgph/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 607s Compiling zerocopy v0.7.34 607s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=0397100a42c241b0 -C extra-filename=-0397100a42c241b0 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern byteorder=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.RudsfWvgph/target/release/deps/libzerocopy_derive-83ccd38c41f59dac.so --cap-lints warn -Ctarget-feature=+backchain` 607s warning: `quick-xml` (lib) generated 3 warnings (1 duplicate) 607s Compiling thiserror-impl v1.0.69 607s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.RudsfWvgph/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=3b2db9dbc1460002 -C extra-filename=-3b2db9dbc1460002 --out-dir /tmp/tmp.RudsfWvgph/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern proc_macro2=/tmp/tmp.RudsfWvgph/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.RudsfWvgph/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.RudsfWvgph/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/util.rs:597:32 607s | 607s 597 | let remainder = t.addr() % mem::align_of::(); 607s | ^^^^^^^^^^^^^^^^^^ 607s | 607s note: the lint level is defined here 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:174:5 607s | 607s 174 | unused_qualifications, 607s | ^^^^^^^^^^^^^^^^^^^^^ 607s help: remove the unnecessary path segments 607s | 607s 597 - let remainder = t.addr() % mem::align_of::(); 607s 597 + let remainder = t.addr() % align_of::(); 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:333:35 607s | 607s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 607s | ^^^^^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 607s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:488:44 607s | 607s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 607s | ^^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 607s 488 + align: match NonZeroUsize::new(align_of::()) { 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:492:49 607s | 607s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 607s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:511:44 607s | 607s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 607s | ^^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 607s 511 + align: match NonZeroUsize::new(align_of::()) { 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:517:29 607s | 607s 517 | _elem_size: mem::size_of::(), 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 517 - _elem_size: mem::size_of::(), 607s 517 + _elem_size: size_of::(), 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:1418:19 607s | 607s 1418 | let len = mem::size_of_val(self); 607s | ^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 1418 - let len = mem::size_of_val(self); 607s 1418 + let len = size_of_val(self); 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:2714:19 607s | 607s 2714 | let len = mem::size_of_val(self); 607s | ^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 2714 - let len = mem::size_of_val(self); 607s 2714 + let len = size_of_val(self); 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:2789:19 607s | 607s 2789 | let len = mem::size_of_val(self); 607s | ^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 2789 - let len = mem::size_of_val(self); 607s 2789 + let len = size_of_val(self); 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:2863:27 607s | 607s 2863 | if bytes.len() != mem::size_of_val(self) { 607s | ^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 2863 - if bytes.len() != mem::size_of_val(self) { 607s 2863 + if bytes.len() != size_of_val(self) { 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:2920:20 607s | 607s 2920 | let size = mem::size_of_val(self); 607s | ^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 2920 - let size = mem::size_of_val(self); 607s 2920 + let size = size_of_val(self); 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:2981:45 607s | 607s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 607s | ^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 607s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4161:27 607s | 607s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 607s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4176:26 607s | 607s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 607s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4179:46 607s | 607s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 607s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4194:46 607s | 607s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 607s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4221:26 607s | 607s 4221 | .checked_rem(mem::size_of::()) 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4221 - .checked_rem(mem::size_of::()) 607s 4221 + .checked_rem(size_of::()) 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4243:34 607s | 607s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 607s 4243 + let expected_len = match size_of::().checked_mul(count) { 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4268:34 607s | 607s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 607s 4268 + let expected_len = match size_of::().checked_mul(count) { 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4795:25 607s | 607s 4795 | let elem_size = mem::size_of::(); 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4795 - let elem_size = mem::size_of::(); 607s 4795 + let elem_size = size_of::(); 607s | 607s 607s warning: unnecessary qualification 607s --> /tmp/tmp.RudsfWvgph/registry/zerocopy-0.7.34/src/lib.rs:4825:25 607s | 607s 4825 | let elem_size = mem::size_of::(); 607s | ^^^^^^^^^^^^^^^^^ 607s | 607s help: remove the unnecessary path segments 607s | 607s 4825 - let elem_size = mem::size_of::(); 607s 4825 + let elem_size = size_of::(); 607s | 607s 608s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 608s Compiling ppv-lite86 v0.2.20 608s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.RudsfWvgph/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=2fed0a76dbecf87b -C extra-filename=-2fed0a76dbecf87b --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern zerocopy=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-0397100a42c241b0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 608s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 608s Compiling rand_chacha v0.3.1 608s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 608s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.RudsfWvgph/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=9f13d5fc363da7ec -C extra-filename=-9f13d5fc363da7ec --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern ppv_lite86=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-2fed0a76dbecf87b.rmeta --extern rand_core=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 608s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps OUT_DIR=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.RudsfWvgph/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a2cbddc2149c38b8 -C extra-filename=-a2cbddc2149c38b8 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern thiserror_impl=/tmp/tmp.RudsfWvgph/target/release/deps/libthiserror_impl-3b2db9dbc1460002.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 608s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 608s Compiling rand v0.8.5 608s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 608s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=41ce1892aa719892 -C extra-filename=-41ce1892aa719892 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern libc=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-9f13d5fc363da7ec.rmeta --extern rand_core=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/lib.rs:52:13 609s | 609s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s = note: `#[warn(unexpected_cfgs)]` on by default 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/lib.rs:53:13 609s | 609s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 609s | ^^^^^^^ 609s | 609s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/lib.rs:181:12 609s | 609s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/mod.rs:116:12 609s | 609s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `features` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 609s | 609s 162 | #[cfg(features = "nightly")] 609s | ^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: see for more information about checking conditional configuration 609s help: there is a config with a similar name and value 609s | 609s 162 | #[cfg(feature = "nightly")] 609s | ~~~~~~~ 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:15:7 609s | 609s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:156:7 609s | 609s 156 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:158:7 609s | 609s 158 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:160:7 609s | 609s 160 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:162:7 609s | 609s 162 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:165:7 609s | 609s 165 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:167:7 609s | 609s 167 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/float.rs:169:7 609s | 609s 169 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:13:32 609s | 609s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:15:35 609s | 609s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:19:7 609s | 609s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:112:7 609s | 609s 112 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:142:7 609s | 609s 142 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:144:7 609s | 609s 144 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:146:7 609s | 609s 146 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:148:7 609s | 609s 148 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:150:7 609s | 609s 150 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:152:7 609s | 609s 152 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/integer.rs:155:5 609s | 609s 155 | feature = "simd_support", 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:11:7 609s | 609s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:144:7 609s | 609s 144 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `std` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:235:11 609s | 609s 235 | #[cfg(not(std))] 609s | ^^^ help: found config with similar value: `feature = "std"` 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:363:7 609s | 609s 363 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:423:7 609s | 609s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 609s | ^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:424:7 609s | 609s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 609s | ^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:425:7 609s | 609s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 609s | ^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:426:7 609s | 609s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 609s | ^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:427:7 609s | 609s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 609s | ^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:428:7 609s | 609s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 609s | ^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:429:7 609s | 609s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 609s | ^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `std` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:291:19 609s | 609s 291 | #[cfg(not(std))] 609s | ^^^ help: found config with similar value: `feature = "std"` 609s ... 609s 359 | scalar_float_impl!(f32, u32); 609s | ---------------------------- in this macro invocation 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 609s 609s warning: unexpected `cfg` condition name: `std` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:291:19 609s | 609s 291 | #[cfg(not(std))] 609s | ^^^ help: found config with similar value: `feature = "std"` 609s ... 609s 360 | scalar_float_impl!(f64, u64); 609s | ---------------------------- in this macro invocation 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 609s | 609s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 609s | 609s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 609s | 609s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 609s | 609s 572 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 609s | 609s 679 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 609s | 609s 687 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 609s | 609s 696 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 609s | 609s 706 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 609s | 609s 1001 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 609s | 609s 1003 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 609s | 609s 1005 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 609s | 609s 1007 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 609s | 609s 1010 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 609s | 609s 1012 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition value: `simd_support` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 609s | 609s 1014 | #[cfg(feature = "simd_support")] 609s | ^^^^^^^^^^^^^^^^^^^^^^^^ 609s | 609s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 609s = help: consider adding `simd_support` as a feature in `Cargo.toml` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/rng.rs:395:12 609s | 609s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/rngs/mod.rs:99:12 609s | 609s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/rngs/mod.rs:118:12 609s | 609s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/rngs/std.rs:32:12 609s | 609s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/rngs/thread.rs:60:12 609s | 609s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/rngs/thread.rs:87:12 609s | 609s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/mod.rs:29:12 609s | 609s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/mod.rs:623:12 609s | 609s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/index.rs:276:12 609s | 609s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/mod.rs:114:16 609s | 609s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/mod.rs:142:16 609s | 609s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/mod.rs:170:16 609s | 609s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/mod.rs:219:16 609s | 609s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: unexpected `cfg` condition name: `doc_cfg` 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/seq/mod.rs:465:16 609s | 609s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 609s | ^^^^^^^ 609s | 609s = help: consider using a Cargo feature instead 609s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 609s [lints.rust] 609s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 609s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 609s = note: see for more information about checking conditional configuration 609s 609s warning: trait `Float` is never used 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:238:18 609s | 609s 238 | pub(crate) trait Float: Sized { 609s | ^^^^^ 609s | 609s = note: `#[warn(dead_code)]` on by default 609s 609s warning: associated items `lanes`, `extract`, and `replace` are never used 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:247:8 609s | 609s 245 | pub(crate) trait FloatAsSIMD: Sized { 609s | ----------- associated items in this trait 609s 246 | #[inline(always)] 609s 247 | fn lanes() -> usize { 609s | ^^^^^ 609s ... 609s 255 | fn extract(self, index: usize) -> Self { 609s | ^^^^^^^ 609s ... 609s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 609s | ^^^^^^^ 609s 609s warning: method `all` is never used 609s --> /tmp/tmp.RudsfWvgph/registry/rand-0.8.5/src/distributions/utils.rs:268:8 609s | 609s 266 | pub(crate) trait BoolAsSIMD: Sized { 609s | ---------- method in this trait 609s 267 | fn any(self) -> bool; 609s 268 | fn all(self) -> bool; 609s | ^^^ 609s 610s warning: `rand` (lib) generated 70 warnings (1 duplicate) 610s Compiling tokio-macros v2.5.0 610s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio_macros CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/tokio-macros-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/tokio-macros-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Tokio'\''s proc macros. 610s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/tokio-macros-2.5.0 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name tokio_macros --edition=2021 /tmp/tmp.RudsfWvgph/registry/tokio-macros-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=cc1b943c02aa4c24 -C extra-filename=-cc1b943c02aa4c24 --out-dir /tmp/tmp.RudsfWvgph/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern proc_macro2=/tmp/tmp.RudsfWvgph/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.RudsfWvgph/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.RudsfWvgph/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 610s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 610s Compiling oxrdf v0.2.4 610s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 610s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.RudsfWvgph/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=8a09a8efe1aa7283 -C extra-filename=-8a09a8efe1aa7283 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern oxilangtag=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern rand=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/librand-41ce1892aa719892.rmeta --extern thiserror=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 610s Compiling tokio v1.43.0 610s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/tmp/tmp.RudsfWvgph/registry/tokio-1.43.0 CARGO_MANIFEST_PATH=/tmp/tmp.RudsfWvgph/registry/tokio-1.43.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O 610s backed applications. 610s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.43.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=43 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.RudsfWvgph/registry/tokio-1.43.0 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name tokio --edition=2021 /tmp/tmp.RudsfWvgph/registry/tokio-1.43.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="macros"' --cfg 'feature="rt"' --cfg 'feature="tokio-macros"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "mio", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "test-util", "time", "tokio-macros", "tracing"))' -C metadata=bba2fec50ae61c26 -C extra-filename=-bba2fec50ae61c26 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern pin_project_lite=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern tokio_macros=/tmp/tmp.RudsfWvgph/target/release/deps/libtokio_macros-cc1b943c02aa4c24.so --cap-lints warn -Ctarget-feature=+backchain` 613s warning: `tokio` (lib) generated 1 warning (1 duplicate) 616s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 616s Compiling oxrdfxml v0.1.5 (/usr/share/cargo/registry/oxrdfxml-0.1.5) 616s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdfxml CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrdfxml-0.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrdfxml-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for the RDF/XML format 616s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdfxml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxrdfxml-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.RudsfWvgph/target/release/deps rustc --crate-name oxrdfxml --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default"))' -C metadata=923d837cf40ec344 -C extra-filename=-923d837cf40ec344 --out-dir /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.RudsfWvgph/target/release/deps --extern oxilangtag=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rlib --extern oxiri=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rlib --extern oxrdf=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-8a09a8efe1aa7283.rlib --extern quick_xml=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libquick_xml-759ace41c505d51b.rlib --extern thiserror=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rlib --extern tokio=/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/libtokio-bba2fec50ae61c26.rlib -Ctarget-feature=+backchain` 618s warning: `oxrdfxml` (lib test) generated 1 warning (1 duplicate) 618s Finished `release` profile [optimized] target(s) in 17.02s 618s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrdfxml-0.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrdfxml-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for the RDF/XML format 618s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdfxml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.RudsfWvgph/target/s390x-unknown-linux-gnu/release/deps/oxrdfxml-923d837cf40ec344` 618s 618s running 3 tests 618s test serializer::tests::test_custom_rdf_ns ... ok 618s test serializer::tests::test_custom_empty_ns ... ok/tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 618s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 618s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 618s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 618s 618s test serializer::tests::test_split_iri ... ok 618s 618s test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 618s 618s autopkgtest: DBG: testbed command exited with code 0 619s autopkgtest [01:37:12]: test rust-oxrdfxml:default: -----------------------] 619s autopkgtest: DBG: testbed executing test finished with exit status 0 619s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfxml%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdfxml%3Adefault-stdout 619s autopkgtest: DBG: got reply from testbed: ok 619s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfxml%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-oxrdfxml%3Adefault-stderr 619s autopkgtest: DBG: got reply from testbed: ok 619s autopkgtest [01:37:12]: test rust-oxrdfxml:default: - - - - - - - - - - results - - - - - - - - - - 619s rust-oxrdfxml:default PASS 619s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrdfxml%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 619s autopkgtest: DBG: got reply from testbed: ok 619s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-oxrdfxml:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 619s autopkgtest: DBG: testbed command exited with code 0 619s autopkgtest [01:37:12]: test rust-oxsdatatypes:default: preparing testbed 619s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-oxrdfxml-0.1+default-dev', 'librust-tokio-1+macros-dev', 'librust-tokio-1+rt-dev'], deps_new=['dh-rust', 'librust-oxsdatatypes-0.2+default-dev'] 619s autopkgtest: DBG: testbed reset 619s autopkgtest: DBG: sending command to testbed: revert 751s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 751s autopkgtest: DBG: sending command to testbed: print-execute-command 751s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 751s autopkgtest: DBG: sending command to testbed: capabilities 751s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 751s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 751s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 751s autopkgtest: DBG: testbed command exited with code 0 751s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 752s autopkgtest: DBG: got reply from testbed: ok 752s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 752s autopkgtest: DBG: testbed command exited with code 0 752s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 752s autopkgtest: DBG: testbed command exited with code 0 752s autopkgtest [01:39:25]: testbed dpkg architecture: s390x 752s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 752s autopkgtest: DBG: testbed command exited with code 0 752s autopkgtest [01:39:25]: testbed apt version: 2.9.28 752s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 752s autopkgtest: DBG: testbed command exited with code 0 752s autopkgtest: DBG: testbed has eatmydata 752s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 753s autopkgtest: DBG: testbed command exited with code 0 753s autopkgtest [01:39:26]: @@@@@@@@@@@@@@@@@@@@ test bed setup 753s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 753s autopkgtest: DBG: testbed command exited with code 0 753s autopkgtest [01:39:26]: testbed release detected to be: plucky 753s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 753s autopkgtest: DBG: testbed command exited with code 0 753s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 753s autopkgtest: DBG: testbed command exited with code 0 753s autopkgtest: DBG: adding APT source: Types: deb deb-src 753s URIs: http://ftpmaster.internal/ubuntu/ 753s Suites: plucky-proposed 753s Components: main restricted universe multiverse 753s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 753s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 753s autopkgtest: DBG: testbed command exited with code 0 753s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 753s Package: * 753s Pin: release plucky-proposed 753s Pin-Priority: 500 753s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 753s autopkgtest: DBG: testbed command exited with code 0 753s autopkgtest [01:39:26]: updating testbed package index (apt update) 753s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 754s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 754s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 754s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 754s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 754s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 754s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 754s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 754s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 754s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 754s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 754s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 755s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 755s Fetched 2062 kB in 1s (1982 kB/s) 755s Reading package lists... 755s autopkgtest: DBG: testbed command exited with code 0 755s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 755s Package: * 755s Pin: release plucky-proposed 755s Pin-Priority: 100 755s 755s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 755s Pin: release plucky-proposed 755s Pin-Priority: 995 755s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 756s autopkgtest: DBG: testbed command exited with code 0 756s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 756s autopkgtest: DBG: testbed command exited with code 0 756s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 756s + lsb_release --codename --short 756s + RELEASE=plucky 756s + cat 756s + [ plucky != trusty ] 756s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 756s Reading package lists... 756s Building dependency tree... 756s Reading state information... 756s Calculating upgrade... 756s The following packages were automatically installed and are no longer required: 756s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 756s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 756s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 756s linux-tools-6.11.0-8-generic 756s Use 'sudo apt autoremove' to remove them. 756s The following packages will be upgraded: 756s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 756s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 756s Need to get 1155 kB of archives. 756s After this operation, 16.4 kB of additional disk space will be used. 756s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 757s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 757s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 757s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 757s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 757s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 757s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 757s Preconfiguring packages ... 757s Fetched 1155 kB in 1s (1923 kB/s) 757s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 757s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 757s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 757s Setting up dash (0.5.12-12ubuntu1) ... 757s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 757s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 757s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 757s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 757s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 757s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 757s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 757s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 758s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 758s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 758s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 758s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 758s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 758s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 758s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 758s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 758s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 758s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 758s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 758s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 758s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 758s Setting up libtasn1-6:s390x (4.20.0-2) ... 758s Processing triggers for libc-bin (2.40-4ubuntu1) ... 758s Processing triggers for man-db (2.13.0-1) ... 758s Processing triggers for debianutils (5.21) ... 758s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 758s + /usr/lib/apt/apt-helper analyze-pattern ?true 758s + uname -r 758s + sed s/\./\\./g 758s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 758s + apt list ?obsolete 758s + tail -n+2 758s + cut -d/ -f1 758s + grep -v ^linux-.*6\.12\.0-15-generic.* 759s + true 759s + obsolete_pkgs= 759s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 759s Reading package lists... 759s Building dependency tree... 759s Reading state information... 759s The following packages will be REMOVED: 759s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 759s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 759s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 759s linux-tools-6.11.0-8-generic* 759s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 759s After this operation, 167 MB disk space will be freed. 759s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 759s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 759s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 759s Removing libpython3.12t64:s390x (3.12.9-1) ... 759s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 759s Removing libnsl2:s390x (1.3.0-3build3) ... 759s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 759s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 759s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 760s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 760s Processing triggers for libc-bin (2.40-4ubuntu1) ... 760s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 760s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 760s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 761s + grep -q trusty /etc/lsb-release 761s + [ ! -d /usr/share/doc/unattended-upgrades ] 761s + [ ! -d /usr/share/doc/lxd ] 761s + [ ! -d /usr/share/doc/lxd-client ] 761s + [ ! -d /usr/share/doc/snapd ] 761s + type iptables 761s + cat 761s + chmod 755 /etc/rc.local 761s + . /etc/rc.local 761s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 761s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 761s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 761s + uname -m 761s + [ s390x = ppc64le ] 761s + [ -d /run/systemd/system ] 761s + systemd-detect-virt --quiet --vm 761s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 761s + cat 761s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 761s + echo COMPRESS=lz4 761s autopkgtest: DBG: testbed command exited with code 0 761s autopkgtest [01:39:34]: upgrading testbed (apt dist-upgrade and autopurge) 761s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 761s Reading package lists... 761s Building dependency tree... 761s Reading state information... 761s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 761s Starting 2 pkgProblemResolver with broken count: 0 761s Done 761s Entering ResolveByKeep 761s 762s The following packages will be upgraded: 762s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 762s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 762s Need to get 10.7 MB of archives. 762s After this operation, 305 kB of additional disk space will be used. 762s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 762s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 762s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 762s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 763s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 763s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 763s Preconfiguring packages ... 763s Fetched 10.7 MB in 1s (10.1 MB/s) 763s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 763s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 763s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 763s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 763s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 763s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 763s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 763s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 763s Checking for services that may need to be restarted... 763s Checking init scripts... 763s Checking for services that may need to be restarted... 763s Checking init scripts... 763s Stopping some services possibly affected by the upgrade (will be restarted later): 763s cron: stopping...done. 763s 763s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 764s Setting up libc6:s390x (2.41-1ubuntu1) ... 764s Checking for services that may need to be restarted... 764s Checking init scripts... 764s Restarting services possibly affected by the upgrade: 764s cron: restarting...done. 764s 764s Services restarted successfully. 764s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 764s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 764s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 764s Setting up libc-bin (2.41-1ubuntu1) ... 764s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 764s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 764s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 764s Setting up iproute2 (6.13.0-1ubuntu1) ... 764s Setting up locales (2.41-1ubuntu1) ... 764s Installing new version of config file /etc/locale.alias ... 764s Generating locales (this might take a while)... 765s en_US.UTF-8... done 765s Generation complete. 765s Setting up libc-dev-bin (2.41-1ubuntu1) ... 765s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 765s Processing triggers for man-db (2.13.0-1) ... 766s Processing triggers for systemd (257.2-3ubuntu1) ... 767s autopkgtest: DBG: testbed command exited with code 0 767s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 767s Reading package lists... 767s Building dependency tree... 767s Reading state information... 768s Starting pkgProblemResolver with broken count: 0 768s Starting 2 pkgProblemResolver with broken count: 0 768s Done 768s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 768s autopkgtest: DBG: testbed command exited with code 0 768s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 768s autopkgtest: DBG: testbed command exited with code 1 768s autopkgtest [01:39:41]: rebooting testbed after setup commands that affected boot 768s autopkgtest: DBG: sending command to testbed: reboot 785s autopkgtest: DBG: got reply from testbed: ok 785s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 785s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 785s autopkgtest: DBG: testbed command exited with code 0 785s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 785s autopkgtest: DBG: got reply from testbed: ok 785s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 786s autopkgtest: DBG: testbed command exited with code 0 786s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 786s autopkgtest: DBG: testbed command exited with code 0 786s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 786s autopkgtest: DBG: testbed command exited with code 0 786s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 786s autopkgtest: DBG: testbed command exited with code 0 786s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 786s autopkgtest: DBG: got reply from testbed: ok 786s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 786s autopkgtest: DBG: testbed command exited with code 0 786s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 787s autopkgtest: DBG: testbed command exited with code 0 787s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 787s autopkgtest: DBG: testbed command exited with code 0 787s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 787s autopkgtest: DBG: testbed command exited with code 0 787s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 787s autopkgtest: DBG: got reply from testbed: ok 787s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 787s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 787s autopkgtest: DBG: testbed command exited with code 0 787s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 788s autopkgtest: DBG: got reply from testbed: ok 788s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 788s autopkgtest: DBG: testbed command exited with code 0 788s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 788s autopkgtest: DBG: testbed command exited with code 0 788s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 788s autopkgtest: DBG: testbed command exited with code 0 788s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 788s autopkgtest: DBG: testbed command exited with code 0 788s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 788s autopkgtest: DBG: got reply from testbed: ok 788s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 789s autopkgtest: DBG: testbed command exited with code 0 789s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 789s autopkgtest: DBG: testbed command exited with code 0 789s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 789s autopkgtest: DBG: testbed command exited with code 0 789s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 789s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-oxsdatatypes-0.2+default-dev'] 789s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-oxsdatatypes-0.2+default-dev 789s autopkgtest: DBG: can use apt-get on testbed: True 789s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-oxsdatatypes-0.2+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 789s Reading package lists... 789s Building dependency tree... 789s Reading state information... 789s Starting pkgProblemResolver with broken count: 0 790s Starting 2 pkgProblemResolver with broken count: 0 790s Done 790s The following NEW packages will be installed: 790s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 790s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 790s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 790s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 790s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 790s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 librust-ahash-dev 790s librust-allocator-api2-dev librust-arbitrary-dev librust-bumpalo-dev 790s librust-byteorder-dev librust-cfg-if-dev librust-compiler-builtins-dev 790s librust-const-random-dev librust-const-random-macro-dev 790s librust-critical-section-dev librust-crossbeam-deque-dev 790s librust-crossbeam-epoch+std-dev librust-crossbeam-epoch-dev 790s librust-crossbeam-utils-dev librust-crunchy-dev librust-derive-arbitrary-dev 790s librust-either-dev librust-equivalent-dev librust-erased-serde-dev 790s librust-getrandom-dev librust-hashbrown-dev librust-indexmap-dev 790s librust-itoa-dev librust-js-sys-dev librust-libc-dev librust-log-dev 790s librust-memchr-dev librust-no-panic-dev librust-once-cell-dev 790s librust-oxsdatatypes-dev librust-parking-lot-core-dev 790s librust-portable-atomic-dev librust-proc-macro2-dev librust-quote-dev 790s librust-rayon-core-dev librust-rayon-dev 790s librust-rustc-std-workspace-core-dev librust-ryu-dev 790s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 790s librust-serde-json-dev librust-serde-test-dev librust-smallvec-dev 790s librust-sval-buffer-dev librust-sval-derive-dev librust-sval-dev 790s librust-sval-dynamic-dev librust-sval-fmt-dev librust-sval-ref-dev 790s librust-sval-serde-dev librust-syn-dev librust-thiserror-1-dev 790s librust-thiserror-impl-1-dev librust-tiny-keccak-dev 790s librust-unicode-ident-dev librust-value-bag-dev librust-value-bag-serde1-dev 790s librust-value-bag-sval2-dev librust-version-check-dev 790s librust-wasm-bindgen-backend-dev librust-wasm-bindgen-dev 790s librust-wasm-bindgen-macro-dev librust-wasm-bindgen-macro-support-dev 790s librust-wasm-bindgen-shared-dev librust-zerocopy-derive-dev 790s librust-zerocopy-dev libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 790s m4 po-debconf rustc rustc-1.83 790s 0 upgraded, 108 newly installed, 0 to remove and 0 not upgraded. 790s Need to get 132 MB of archives. 790s After this operation, 506 MB of additional disk space will be used. 790s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 790s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 790s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 790s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 791s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 791s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 791s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 793s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 794s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 794s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 794s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 795s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 795s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 795s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 795s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 795s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 795s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 795s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 795s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 795s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 795s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 795s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 795s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 795s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 795s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 795s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 795s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 795s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 795s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 795s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 795s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 795s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 795s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 796s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 796s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 796s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 796s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 796s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 796s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 796s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 796s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 796s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 796s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 796s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 796s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 796s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 796s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 796s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 796s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 796s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 796s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 796s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 796s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 796s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 796s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 796s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 796s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 796s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 796s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 796s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 796s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 796s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 796s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 796s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 796s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 796s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 796s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 796s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 796s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 796s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 796s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 796s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 796s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 796s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 796s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 796s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 796s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 796s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 796s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 796s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 796s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 796s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 796s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 796s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 796s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 796s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 796s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 796s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 796s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 796s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 796s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 796s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 796s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 796s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 796s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 796s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 796s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 796s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 796s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 796s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 796s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 796s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 797s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 797s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 797s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 797s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 797s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 797s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 797s Fetched 132 MB in 7s (19.0 MB/s) 797s Selecting previously unselected package m4. 797s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 797s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 797s Unpacking m4 (1.4.19-5) ... 797s Selecting previously unselected package autoconf. 797s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 797s Unpacking autoconf (2.72-3) ... 797s Selecting previously unselected package autotools-dev. 797s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 797s Unpacking autotools-dev (20220109.1) ... 797s Selecting previously unselected package automake. 797s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 797s Unpacking automake (1:1.17-3) ... 797s Selecting previously unselected package autopoint. 797s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 797s Unpacking autopoint (0.23.1-1) ... 797s Selecting previously unselected package libgit2-1.8:s390x. 797s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 797s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 797s Selecting previously unselected package libstd-rust-1.83:s390x. 797s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 797s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 798s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 798s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 798s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 799s Selecting previously unselected package libisl23:s390x. 799s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 799s Unpacking libisl23:s390x (0.27-1) ... 799s Selecting previously unselected package libmpc3:s390x. 799s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 799s Unpacking libmpc3:s390x (1.3.1-1build2) ... 799s Selecting previously unselected package cpp-14-s390x-linux-gnu. 799s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package cpp-14. 799s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package cpp-s390x-linux-gnu. 799s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 799s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 799s Selecting previously unselected package cpp. 799s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 799s Unpacking cpp (4:14.2.0-1ubuntu1) ... 799s Selecting previously unselected package libcc1-0:s390x. 799s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package libgomp1:s390x. 799s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package libitm1:s390x. 799s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package libasan8:s390x. 799s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package libubsan1:s390x. 799s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package libgcc-14-dev:s390x. 799s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package gcc-14-s390x-linux-gnu. 799s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package gcc-14. 799s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 799s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 799s Selecting previously unselected package gcc-s390x-linux-gnu. 799s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 799s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 799s Selecting previously unselected package gcc. 799s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 799s Unpacking gcc (4:14.2.0-1ubuntu1) ... 799s Selecting previously unselected package rustc-1.83. 799s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 799s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 800s Selecting previously unselected package cargo-1.83. 800s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 800s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 800s Selecting previously unselected package libdebhelper-perl. 800s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 800s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 800s Selecting previously unselected package libtool. 800s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 800s Unpacking libtool (2.5.4-3build1) ... 800s Selecting previously unselected package dh-autoreconf. 800s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 800s Unpacking dh-autoreconf (20) ... 800s Selecting previously unselected package libarchive-zip-perl. 800s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 800s Unpacking libarchive-zip-perl (1.68-1) ... 800s Selecting previously unselected package libfile-stripnondeterminism-perl. 800s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 800s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 800s Selecting previously unselected package dh-strip-nondeterminism. 800s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 800s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 800s Selecting previously unselected package debugedit. 800s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 800s Unpacking debugedit (1:5.1-2) ... 800s Selecting previously unselected package dwz. 800s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 800s Unpacking dwz (0.15-1build6) ... 800s Selecting previously unselected package gettext. 800s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 800s Unpacking gettext (0.23.1-1) ... 800s Selecting previously unselected package intltool-debian. 800s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 800s Unpacking intltool-debian (0.35.0+20060710.6) ... 800s Selecting previously unselected package po-debconf. 800s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 800s Unpacking po-debconf (1.0.21+nmu1) ... 800s Selecting previously unselected package debhelper. 800s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 800s Unpacking debhelper (13.24.1ubuntu2) ... 800s Selecting previously unselected package rustc. 800s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 800s Unpacking rustc (1.83.0ubuntu1) ... 800s Selecting previously unselected package cargo. 800s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 800s Unpacking cargo (1.83.0ubuntu1) ... 800s Selecting previously unselected package dh-rust. 800s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 800s Unpacking dh-rust (0.0.11) ... 800s Selecting previously unselected package librust-critical-section-dev:s390x. 800s Preparing to unpack .../041-librust-critical-section-dev_1.2.0-1_s390x.deb ... 800s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 800s Selecting previously unselected package librust-unicode-ident-dev:s390x. 800s Preparing to unpack .../042-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 800s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 800s Selecting previously unselected package librust-proc-macro2-dev:s390x. 800s Preparing to unpack .../043-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 800s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 800s Selecting previously unselected package librust-quote-dev:s390x. 800s Preparing to unpack .../044-librust-quote-dev_1.0.37-1_s390x.deb ... 800s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 800s Selecting previously unselected package librust-syn-dev:s390x. 800s Preparing to unpack .../045-librust-syn-dev_2.0.96-2_s390x.deb ... 800s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 800s Selecting previously unselected package librust-serde-derive-dev:s390x. 800s Preparing to unpack .../046-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 800s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 800s Selecting previously unselected package librust-serde-dev:s390x. 800s Preparing to unpack .../047-librust-serde-dev_1.0.217-1_s390x.deb ... 800s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 800s Selecting previously unselected package librust-portable-atomic-dev:s390x. 800s Preparing to unpack .../048-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 800s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 800s Selecting previously unselected package librust-cfg-if-dev:s390x. 800s Preparing to unpack .../049-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 800s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 800s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 800s Preparing to unpack .../050-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 800s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 800s Selecting previously unselected package librust-libc-dev:s390x. 800s Preparing to unpack .../051-librust-libc-dev_0.2.169-1_s390x.deb ... 800s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 800s Selecting previously unselected package librust-getrandom-dev:s390x. 800s Preparing to unpack .../052-librust-getrandom-dev_0.2.15-1_s390x.deb ... 800s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 800s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 800s Preparing to unpack .../053-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 800s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 800s Selecting previously unselected package librust-arbitrary-dev:s390x. 800s Preparing to unpack .../054-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 800s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 800s Selecting previously unselected package librust-smallvec-dev:s390x. 800s Preparing to unpack .../055-librust-smallvec-dev_1.13.2-1_s390x.deb ... 800s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 800s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 800s Preparing to unpack .../056-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 800s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 800s Selecting previously unselected package librust-once-cell-dev:s390x. 800s Preparing to unpack .../057-librust-once-cell-dev_1.20.2-1_s390x.deb ... 800s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 800s Selecting previously unselected package librust-crunchy-dev:s390x. 800s Preparing to unpack .../058-librust-crunchy-dev_0.2.2-1_s390x.deb ... 800s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 800s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 800s Preparing to unpack .../059-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 800s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 800s Selecting previously unselected package librust-const-random-macro-dev:s390x. 800s Preparing to unpack .../060-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 800s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 800s Selecting previously unselected package librust-const-random-dev:s390x. 800s Preparing to unpack .../061-librust-const-random-dev_0.1.17-2_s390x.deb ... 800s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 800s Selecting previously unselected package librust-version-check-dev:s390x. 800s Preparing to unpack .../062-librust-version-check-dev_0.9.5-1_s390x.deb ... 800s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 800s Selecting previously unselected package librust-byteorder-dev:s390x. 800s Preparing to unpack .../063-librust-byteorder-dev_1.5.0-1_s390x.deb ... 800s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 800s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 800s Preparing to unpack .../064-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 800s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 800s Selecting previously unselected package librust-zerocopy-dev:s390x. 800s Preparing to unpack .../065-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 800s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 800s Selecting previously unselected package librust-ahash-dev. 800s Preparing to unpack .../066-librust-ahash-dev_0.8.11-9_all.deb ... 800s Unpacking librust-ahash-dev (0.8.11-9) ... 800s Selecting previously unselected package librust-allocator-api2-dev:s390x. 800s Preparing to unpack .../067-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 800s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 800s Selecting previously unselected package librust-bumpalo-dev:s390x. 800s Preparing to unpack .../068-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 800s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 800s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 800s Preparing to unpack .../069-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 800s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 800s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 800s Preparing to unpack .../070-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 800s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 800s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 800s Preparing to unpack .../071-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 800s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 800s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 800s Preparing to unpack .../072-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 800s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 800s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 800s Preparing to unpack .../073-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 800s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 800s Selecting previously unselected package librust-either-dev:s390x. 800s Preparing to unpack .../074-librust-either-dev_1.13.0-1_s390x.deb ... 800s Unpacking librust-either-dev:s390x (1.13.0-1) ... 800s Selecting previously unselected package librust-equivalent-dev:s390x. 800s Preparing to unpack .../075-librust-equivalent-dev_1.0.1-1_s390x.deb ... 800s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 800s Selecting previously unselected package librust-erased-serde-dev:s390x. 800s Preparing to unpack .../076-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 800s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 800s Selecting previously unselected package librust-rayon-core-dev:s390x. 800s Preparing to unpack .../077-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 800s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 800s Selecting previously unselected package librust-rayon-dev:s390x. 800s Preparing to unpack .../078-librust-rayon-dev_1.10.0-1_s390x.deb ... 800s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 800s Selecting previously unselected package librust-hashbrown-dev:s390x. 800s Preparing to unpack .../079-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 800s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 801s Selecting previously unselected package librust-indexmap-dev:s390x. 801s Preparing to unpack .../080-librust-indexmap-dev_2.7.0-1_s390x.deb ... 801s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 801s Selecting previously unselected package librust-no-panic-dev:s390x. 801s Preparing to unpack .../081-librust-no-panic-dev_0.1.32-1_s390x.deb ... 801s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 801s Selecting previously unselected package librust-itoa-dev:s390x. 801s Preparing to unpack .../082-librust-itoa-dev_1.0.14-1_s390x.deb ... 801s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 801s Selecting previously unselected package librust-sval-derive-dev:s390x. 801s Preparing to unpack .../083-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 801s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 801s Selecting previously unselected package librust-sval-dev:s390x. 801s Preparing to unpack .../084-librust-sval-dev_2.6.1-2_s390x.deb ... 801s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 801s Selecting previously unselected package librust-sval-ref-dev:s390x. 801s Preparing to unpack .../085-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 801s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 801s Selecting previously unselected package librust-serde-fmt-dev. 801s Preparing to unpack .../086-librust-serde-fmt-dev_1.0.3-4_all.deb ... 801s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 801s Selecting previously unselected package librust-serde-test-dev:s390x. 801s Preparing to unpack .../087-librust-serde-test-dev_1.0.171-1_s390x.deb ... 801s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 801s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 801s Preparing to unpack .../088-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 801s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 801s Selecting previously unselected package librust-sval-buffer-dev:s390x. 801s Preparing to unpack .../089-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 801s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 801s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 801s Preparing to unpack .../090-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 801s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 801s Selecting previously unselected package librust-ryu-dev:s390x. 801s Preparing to unpack .../091-librust-ryu-dev_1.0.19-1_s390x.deb ... 801s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 801s Selecting previously unselected package librust-sval-fmt-dev:s390x. 801s Preparing to unpack .../092-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 801s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 801s Selecting previously unselected package librust-sval-serde-dev:s390x. 801s Preparing to unpack .../093-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 801s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 801s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 801s Preparing to unpack .../094-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 801s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 801s Selecting previously unselected package librust-value-bag-dev:s390x. 801s Preparing to unpack .../095-librust-value-bag-dev_1.9.0-1_s390x.deb ... 801s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 801s Selecting previously unselected package librust-log-dev:s390x. 801s Preparing to unpack .../096-librust-log-dev_0.4.22-1_s390x.deb ... 801s Unpacking librust-log-dev:s390x (0.4.22-1) ... 801s Selecting previously unselected package librust-memchr-dev:s390x. 801s Preparing to unpack .../097-librust-memchr-dev_2.7.4-1_s390x.deb ... 801s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 801s Selecting previously unselected package librust-serde-json-dev:s390x. 801s Preparing to unpack .../098-librust-serde-json-dev_1.0.133-1_s390x.deb ... 801s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 801s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 801s Preparing to unpack .../099-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 801s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 801s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 801s Preparing to unpack .../100-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 801s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 801s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 801s Preparing to unpack .../101-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 801s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 801s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 801s Preparing to unpack .../102-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 801s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 801s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 801s Preparing to unpack .../103-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 801s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 801s Selecting previously unselected package librust-js-sys-dev:s390x. 801s Preparing to unpack .../104-librust-js-sys-dev_0.3.64-1_s390x.deb ... 801s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 801s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 801s Preparing to unpack .../105-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 801s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 801s Selecting previously unselected package librust-thiserror-1-dev:s390x. 801s Preparing to unpack .../106-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 801s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 801s Selecting previously unselected package librust-oxsdatatypes-dev. 801s Preparing to unpack .../107-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 801s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 801s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 801s Setting up librust-either-dev:s390x (1.13.0-1) ... 801s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 801s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 801s Setting up libarchive-zip-perl (1.68-1) ... 801s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 801s Setting up m4 (1.4.19-5) ... 801s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 801s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 801s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 801s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 801s Setting up autotools-dev (20220109.1) ... 801s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 801s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 801s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 801s Setting up libmpc3:s390x (1.3.1-1build2) ... 801s Setting up autopoint (0.23.1-1) ... 801s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 801s Setting up autoconf (2.72-3) ... 801s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 801s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 801s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 801s Setting up dwz (0.15-1build6) ... 801s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 801s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 801s Setting up debugedit (1:5.1-2) ... 801s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 801s Setting up libisl23:s390x (0.27-1) ... 801s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 801s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 801s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 801s Setting up automake (1:1.17-3) ... 801s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 801s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 801s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 801s Setting up librust-libc-dev:s390x (0.2.169-1) ... 801s Setting up gettext (0.23.1-1) ... 801s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 801s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 801s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 801s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 801s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 801s Setting up intltool-debian (0.35.0+20060710.6) ... 801s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 801s Setting up cpp-14 (14.2.0-17ubuntu1) ... 801s Setting up dh-strip-nondeterminism (1.14.1-2) ... 801s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 801s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 801s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 801s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 801s Setting up po-debconf (1.0.21+nmu1) ... 801s Setting up librust-quote-dev:s390x (1.0.37-1) ... 801s Setting up librust-syn-dev:s390x (2.0.96-2) ... 801s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 801s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 801s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 801s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 801s Setting up cpp (4:14.2.0-1ubuntu1) ... 801s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 801s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 801s Setting up librust-serde-dev:s390x (1.0.217-1) ... 801s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 801s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 801s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 801s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 801s Setting up librust-serde-fmt-dev (1.0.3-4) ... 801s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 801s Setting up librust-sval-dev:s390x (2.6.1-2) ... 801s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 801s Setting up gcc-14 (14.2.0-17ubuntu1) ... 801s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 801s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 801s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 801s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 801s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 801s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 801s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 801s Setting up libtool (2.5.4-3build1) ... 801s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 801s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 801s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 801s Setting up gcc (4:14.2.0-1ubuntu1) ... 801s Setting up dh-autoreconf (20) ... 801s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 801s Setting up rustc (1.83.0ubuntu1) ... 801s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 801s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 801s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 801s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 801s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 801s Setting up debhelper (13.24.1ubuntu2) ... 801s Setting up librust-ahash-dev (0.8.11-9) ... 801s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 801s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 801s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 801s Setting up cargo (1.83.0ubuntu1) ... 801s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 801s Setting up dh-rust (0.0.11) ... 801s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 801s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 801s Setting up librust-log-dev:s390x (0.4.22-1) ... 801s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 801s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 801s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 801s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 801s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 801s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 801s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 801s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 801s Processing triggers for libc-bin (2.41-1ubuntu1) ... 801s Processing triggers for man-db (2.13.0-1) ... 802s Processing triggers for install-info (7.1.1-1) ... 802s autopkgtest: DBG: testbed command exited with code 0 802s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-packages.all"], kind short, sout raw, serr pipe, env [] 802s autopkgtest: DBG: testbed command exited with code 0 802s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-oxsdatatypes%3Adefault-packages.all 802s autopkgtest: DBG: got reply from testbed: ok 802s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 803s autopkgtest: DBG: testbed command exited with code 1 803s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 803s autopkgtest: DBG: testbed command exited with code 0 803s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 804s autopkgtest: DBG: got reply from testbed: ok 804s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 804s autopkgtest: DBG: testbed command exited with code 0 804s autopkgtest [01:40:17]: test rust-oxsdatatypes:default: /usr/share/dh-rust/bin/cargo-auto-test oxsdatatypes 0.2.2 --all-targets 804s autopkgtest [01:40:17]: test rust-oxsdatatypes:default: [----------------------- 804s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test oxsdatatypes 0.2.2 --all-targets'"], kind test, sout raw, serr raw, env [] 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-artifacts 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-stderr 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-stdout 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test oxsdatatypes 0.2.2 --all-targets 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.slM4V52Qc9/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-stdout 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.slM4V52Qc9/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-stdout 804s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 2307 to /tmp/autopkgtest_script_pid 804s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 804s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 804s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.gh3j1IvE8d/registry/ 804s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 804s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 804s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 805s Compiling proc-macro2 v1.0.92 805s Compiling unicode-ident v1.0.13 805s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.gh3j1IvE8d/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --cap-lints warn` 805s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.gh3j1IvE8d/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.gh3j1IvE8d/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --cap-lints warn` 805s Compiling thiserror v1.0.69 805s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.gh3j1IvE8d/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --cap-lints warn` 805s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.gh3j1IvE8d/target/release/deps:/tmp/tmp.gh3j1IvE8d/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.gh3j1IvE8d/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.gh3j1IvE8d/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 805s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 805s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 805s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 805s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 805s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps OUT_DIR=/tmp/tmp.gh3j1IvE8d/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.gh3j1IvE8d/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.gh3j1IvE8d/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --extern unicode_ident=/tmp/tmp.gh3j1IvE8d/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 805s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.gh3j1IvE8d/target/release/deps:/tmp/tmp.gh3j1IvE8d/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.gh3j1IvE8d/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 805s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 805s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 805s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 805s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 805s Compiling quote v1.0.37 805s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.gh3j1IvE8d/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.gh3j1IvE8d/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --extern proc_macro2=/tmp/tmp.gh3j1IvE8d/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 806s Compiling syn v2.0.96 806s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.gh3j1IvE8d/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=25776e54546dab2e -C extra-filename=-25776e54546dab2e --out-dir /tmp/tmp.gh3j1IvE8d/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --extern proc_macro2=/tmp/tmp.gh3j1IvE8d/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.gh3j1IvE8d/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.gh3j1IvE8d/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 808s Compiling thiserror-impl v1.0.69 808s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.gh3j1IvE8d/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=282169f5dfa653c6 -C extra-filename=-282169f5dfa653c6 --out-dir /tmp/tmp.gh3j1IvE8d/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --extern proc_macro2=/tmp/tmp.gh3j1IvE8d/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.gh3j1IvE8d/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.gh3j1IvE8d/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 809s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps OUT_DIR=/tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.gh3j1IvE8d/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=27dfaf5cbfbe8b32 -C extra-filename=-27dfaf5cbfbe8b32 --out-dir /tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --extern thiserror_impl=/tmp/tmp.gh3j1IvE8d/target/release/deps/libthiserror_impl-282169f5dfa653c6.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 809s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 809s | 809s = note: this feature is not stably supported; its behavior can change in the future 809s 809s warning: `thiserror` (lib) generated 1 warning 809s Compiling oxsdatatypes v0.2.2 (/usr/share/cargo/registry/oxsdatatypes-0.2.2) 809s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxsdatatypes CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxsdatatypes-0.2.2 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxsdatatypes-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='An implementation of some XSD datatypes for SPARQL implementations 809s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxsdatatypes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxsdatatypes' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxsdatatypes-0.2.2 LD_LIBRARY_PATH=/tmp/tmp.gh3j1IvE8d/target/release/deps rustc --crate-name oxsdatatypes --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("custom-now", "js-sys"))' -C metadata=4083416b50375b8f -C extra-filename=-4083416b50375b8f --out-dir /tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.gh3j1IvE8d/target/release/deps --extern thiserror=/tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rlib -Ctarget-feature=+backchain` 809s warning: unexpected `cfg` condition value: `js` 809s --> src/date_time.rs:1879:5 809s | 809s 1879 | feature = "js", 809s | ^^^^^^^^^^^^^^ 809s | 809s = note: expected values for `feature` are: `custom-now` and `js-sys` 809s = help: consider adding `js` as a feature in `Cargo.toml` 809s = note: see for more information about checking conditional configuration 809s = note: `#[warn(unexpected_cfgs)]` on by default 809s 809s warning: unexpected `cfg` condition value: `js` 809s --> src/date_time.rs:1895:9 809s | 809s 1895 | all(feature = "js", target_family = "wasm", target_os = "unknown") 809s | ^^^^^^^^^^^^^^ 809s | 809s = note: expected values for `feature` are: `custom-now` and `js-sys` 809s = help: consider adding `js` as a feature in `Cargo.toml` 809s = note: see for more information about checking conditional configuration 809s 813s warning: `oxsdatatypes` (lib test) generated 3 warnings (1 duplicate) 813s Finished `release` profile [optimized] target(s) in 8.71s 813s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxsdatatypes-0.2.2 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxsdatatypes-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='An implementation of some XSD datatypes for SPARQL implementations 813s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxsdatatypes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxsdatatypes' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.gh3j1IvE8d/target/s390x-unknown-linux-gnu/release/deps/oxsdatatypes-4083416b50375b8f` 813s 813s running 76 tests 813s test boolean::tests::from_decimal ... ok 813s test boolean::tests::from_double ... ok 813s test boolean::tests::from_float ... ok 813s test boolean::tests::from_integer ... ok 813s test boolean::tests::from_str ... ok 813s test date_time::tests::add_duration ... ok 813s test date_time::tests::adjust ... ok 813s test date_time::tests::cmp ... ok 813s test date_time::tests::date_from_datetime ... ok 813s test date_time::tests::day ... ok 813s test date_time::tests::equals ... ok 813s test date_time::tests::from_str ... ok 813s test date_time::tests::g_year_from_g_year_month ... ok 813s test date_time::tests::g_year_month_from_date ... ok 813s test date_time::tests::hour ... ok 813s test date_time::tests::minimally_conformant ... ok 813s test date_time::tests::minute ... ok 813s test date_time::tests::month ... ok 813s test date_time::tests::now ... ok 813s test date_time::tests::second ... ok 813s test date_time::tests::sub ... ok 813s test date_time::tests::sub_duration ... ok 813s test date_time::tests::time_from_datetime ... ok 813s test date_time::tests::timezone ... ok 813s test date_time::tests::to_be_bytes ... ok 813s test date_time::tests::year ... ok 813s test decimal::tests::add ... ok 813s test decimal::tests::ceil ... ok 813s test decimal::tests::div ... ok 813s test decimal::tests::floor ... ok 813s test decimal::tests::format ... ok 813s test decimal::tests::from_double ... ok 813s test decimal::tests::from_bool ... ok 813s test decimal::tests::from_float ... ok 813s test decimal::tests::from_str ... ok 813s test decimal::tests::minimally_conformant ... ok 813s test decimal::tests::mul ... ok 813s test decimal::tests::new ... ok 813s test decimal::tests::rem ... ok 813s test decimal::tests::round ... ok 813s test decimal::tests::sub ... ok 813s test decimal::tests::to_be_bytes ... ok 813s test decimal::tests::to_double ... ok 813s test decimal::tests::to_float ... ok 813s test double::tests::cmp ... ok 813s test double::tests::eq ... ok 813s test double::tests::from_str ... ok 813s test double::tests::is_identical_with ... ok 813s test duration::tests::add ... ok 813s test duration::tests::days ... ok 813s test duration::tests::cmp ... ok 813s test duration::tests::equals ... ok 813s test duration::tests::from_std ... ok 813s test duration::tests::hours ... ok 813s test duration::tests::from_str ... ok 813s test duration::tests::minimally_conformant ... ok 813s test duration::tests::minutes ... ok 813s test duration::tests::months ... ok 813s test duration::tests::seconds ... ok 813s test duration::tests::to_be_bytes ... ok 813s test duration::tests::sub ... ok 813s test duration::tests::to_std ... ok 813s test float::tests::cmp ... ok 813s test duration::tests::years ... ok 813s test float::tests::eq ... ok 813s test float::tests::from_str ... ok 813s test float::tests::is_identical_with ... ok 813s test integer::tests::add ... ok 813s test integer::tests::from_decimal ... ok 813s test integer::tests::div ... ok 813s test integer::tests::from_float ... ok 813s test integer::tests::from_double ... ok 813s test integer::tests::from_str ... ok 813s test integer::tests::mul ... ok 813s test integer::tests::sub ... ok 813s test integer::tests::rem ... ok 813s 813s test result: ok. 76 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 813s 813s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 813s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 813s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 813s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 813s autopkgtest: DBG: testbed command exited with code 0 814s autopkgtest [01:40:27]: test rust-oxsdatatypes:default: -----------------------] 814s autopkgtest: DBG: testbed executing test finished with exit status 0 814s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-oxsdatatypes%3Adefault-stdout 814s autopkgtest: DBG: got reply from testbed: ok 814s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-oxsdatatypes%3Adefault-stderr 814s autopkgtest: DBG: got reply from testbed: ok 814s rust-oxsdatatypes:default PASS 814s autopkgtest [01:40:27]: test rust-oxsdatatypes:default: - - - - - - - - - - results - - - - - - - - - - 814s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxsdatatypes%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 814s autopkgtest: DBG: got reply from testbed: ok 814s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-oxsdatatypes:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 814s autopkgtest: DBG: testbed command exited with code 0 814s autopkgtest [01:40:27]: test rust-oxttl:default: preparing testbed 814s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-oxsdatatypes-0.2+default-dev'], deps_new=['dh-rust', 'librust-oxttl-0.1+default-dev'] 814s autopkgtest: DBG: testbed reset 814s autopkgtest: DBG: sending command to testbed: revert 931s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 931s autopkgtest: DBG: sending command to testbed: print-execute-command 931s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 931s autopkgtest: DBG: sending command to testbed: capabilities 931s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 931s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 931s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 931s autopkgtest: DBG: testbed command exited with code 0 931s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 931s autopkgtest: DBG: got reply from testbed: ok 931s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest [01:42:25]: testbed dpkg architecture: s390x 932s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest [01:42:25]: testbed apt version: 2.9.28 932s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: testbed has eatmydata 932s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest [01:42:25]: @@@@@@@@@@@@@@@@@@@@ test bed setup 932s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest [01:42:25]: testbed release detected to be: plucky 932s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 933s autopkgtest: DBG: testbed command exited with code 0 933s autopkgtest: DBG: adding APT source: Types: deb deb-src 933s URIs: http://ftpmaster.internal/ubuntu/ 933s Suites: plucky-proposed 933s Components: main restricted universe multiverse 933s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 933s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 933s autopkgtest: DBG: testbed command exited with code 0 933s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 933s Package: * 933s Pin: release plucky-proposed 933s Pin-Priority: 500 933s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 933s autopkgtest: DBG: testbed command exited with code 0 933s autopkgtest [01:42:26]: updating testbed package index (apt update) 933s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 933s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 934s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 934s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 934s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 934s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 934s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 934s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 934s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 934s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 934s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 934s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 934s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 934s Fetched 2062 kB in 1s (2004 kB/s) 935s Reading package lists... 935s autopkgtest: DBG: testbed command exited with code 0 935s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 935s Package: * 935s Pin: release plucky-proposed 935s Pin-Priority: 100 935s 935s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 935s Pin: release plucky-proposed 935s Pin-Priority: 995 935s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 935s autopkgtest: DBG: testbed command exited with code 0 935s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 935s autopkgtest: DBG: testbed command exited with code 0 935s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 935s + lsb_release --codename --short 935s + RELEASE=plucky 935s + cat 935s + [ plucky != trusty ] 935s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 935s Reading package lists... 936s Building dependency tree... 936s Reading state information... 936s Calculating upgrade... 936s The following packages were automatically installed and are no longer required: 936s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 936s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 936s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 936s linux-tools-6.11.0-8-generic 936s Use 'sudo apt autoremove' to remove them. 936s The following packages will be upgraded: 936s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 936s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 936s Need to get 1155 kB of archives. 936s After this operation, 16.4 kB of additional disk space will be used. 936s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 936s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 936s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 936s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 937s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 937s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 937s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 937s Preconfiguring packages ... 937s Fetched 1155 kB in 1s (1880 kB/s) 937s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 937s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 937s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 937s Setting up dash (0.5.12-12ubuntu1) ... 937s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 937s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 937s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 937s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 937s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 937s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 937s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 937s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 937s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 937s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 937s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 937s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 937s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 937s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 937s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 937s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 937s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 937s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 937s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 937s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 937s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 937s Setting up libtasn1-6:s390x (4.20.0-2) ... 937s Processing triggers for libc-bin (2.40-4ubuntu1) ... 937s Processing triggers for man-db (2.13.0-1) ... 938s Processing triggers for debianutils (5.21) ... 938s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 938s + /usr/lib/apt/apt-helper analyze-pattern ?true 938s + uname -r 938s + sed s/\./\\./g 938s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 938s + apt list ?obsolete 938s + tail -n+2 938s + grep -v ^linux-.*6\.12\.0-15-generic.* 938s + cut -d/ -f1 938s + true 938s + obsolete_pkgs= 938s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 938s Reading package lists... 938s Building dependency tree... 938s Reading state information... 939s The following packages will be REMOVED: 939s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 939s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 939s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 939s linux-tools-6.11.0-8-generic* 939s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 939s After this operation, 167 MB disk space will be freed. 939s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 939s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 939s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 939s Removing libpython3.12t64:s390x (3.12.9-1) ... 939s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 939s Removing libnsl2:s390x (1.3.0-3build3) ... 939s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 939s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 939s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 940s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 940s Processing triggers for libc-bin (2.40-4ubuntu1) ... 940s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 940s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 940s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 940s + grep -q trusty /etc/lsb-release 940s + [ ! -d /usr/share/doc/unattended-upgrades ] 940s + [ ! -d /usr/share/doc/lxd ] 940s + [ ! -d /usr/share/doc/lxd-client ] 940s + [ ! -d /usr/share/doc/snapd ] 940s + type iptables 940s + cat 940s + chmod 755 /etc/rc.local 940s + . /etc/rc.local 940s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 940s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 940s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 940s + uname -m 940s + [ s390x = ppc64le ] 940s + [ -d /run/systemd/system ] 940s + systemd-detect-virt --quiet --vm 940s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 940s + cat 940s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 940s + echo COMPRESS=lz4 940s autopkgtest: DBG: testbed command exited with code 0 940s autopkgtest [01:42:33]: upgrading testbed (apt dist-upgrade and autopurge) 940s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 941s Reading package lists... 941s Building dependency tree... 941s Reading state information... 941s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 941s Starting 2 pkgProblemResolver with broken count: 0 941s Done 941s Entering ResolveByKeep 941s 941s The following packages will be upgraded: 941s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 942s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 942s Need to get 10.7 MB of archives. 942s After this operation, 305 kB of additional disk space will be used. 942s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 942s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 943s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 943s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 943s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 943s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 944s Preconfiguring packages ... 944s Fetched 10.7 MB in 2s (4288 kB/s) 944s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 944s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 944s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 944s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 944s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 944s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 944s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 945s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 945s Checking for services that may need to be restarted... 945s Checking init scripts... 945s Checking for services that may need to be restarted... 945s Checking init scripts... 945s Stopping some services possibly affected by the upgrade (will be restarted later): 945s cron: stopping...done. 945s 945s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 945s Setting up libc6:s390x (2.41-1ubuntu1) ... 945s Checking for services that may need to be restarted... 945s Checking init scripts... 945s Restarting services possibly affected by the upgrade: 945s cron: restarting...done. 945s 945s Services restarted successfully. 945s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 945s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 945s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 945s Setting up libc-bin (2.41-1ubuntu1) ... 945s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 945s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 945s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 945s Setting up iproute2 (6.13.0-1ubuntu1) ... 945s Setting up locales (2.41-1ubuntu1) ... 945s Installing new version of config file /etc/locale.alias ... 946s Generating locales (this might take a while)... 947s en_US.UTF-8... done 947s Generation complete. 947s Setting up libc-dev-bin (2.41-1ubuntu1) ... 947s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 947s Processing triggers for man-db (2.13.0-1) ... 948s Processing triggers for systemd (257.2-3ubuntu1) ... 949s autopkgtest: DBG: testbed command exited with code 0 949s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 949s Reading package lists... 949s Building dependency tree... 949s Reading state information... 949s Starting pkgProblemResolver with broken count: 0 949s Starting 2 pkgProblemResolver with broken count: 0 949s Done 949s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 949s autopkgtest: DBG: testbed command exited with code 0 949s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 950s autopkgtest: DBG: testbed command exited with code 1 950s autopkgtest [01:42:43]: rebooting testbed after setup commands that affected boot 950s autopkgtest: DBG: sending command to testbed: reboot 958s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 967s autopkgtest: DBG: got reply from testbed: ok 967s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 967s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 967s autopkgtest: DBG: testbed command exited with code 0 967s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 968s autopkgtest: DBG: got reply from testbed: ok 968s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 968s autopkgtest: DBG: testbed command exited with code 0 968s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 968s autopkgtest: DBG: testbed command exited with code 0 968s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 968s autopkgtest: DBG: testbed command exited with code 0 968s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 968s autopkgtest: DBG: testbed command exited with code 0 968s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 968s autopkgtest: DBG: got reply from testbed: ok 968s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 969s autopkgtest: DBG: testbed command exited with code 0 969s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 969s autopkgtest: DBG: testbed command exited with code 0 969s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 969s autopkgtest: DBG: testbed command exited with code 0 969s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 969s autopkgtest: DBG: testbed command exited with code 0 969s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 969s autopkgtest: DBG: got reply from testbed: ok 969s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 969s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 970s autopkgtest: DBG: testbed command exited with code 0 970s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 970s autopkgtest: DBG: got reply from testbed: ok 970s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 970s autopkgtest: DBG: testbed command exited with code 0 970s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 970s autopkgtest: DBG: testbed command exited with code 0 970s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 970s autopkgtest: DBG: testbed command exited with code 0 970s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 970s autopkgtest: DBG: testbed command exited with code 0 970s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 971s autopkgtest: DBG: got reply from testbed: ok 971s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 971s autopkgtest: DBG: testbed command exited with code 0 971s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 971s autopkgtest: DBG: testbed command exited with code 0 971s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 971s autopkgtest: DBG: testbed command exited with code 0 971s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 971s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-oxttl-0.1+default-dev'] 971s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-oxttl-0.1+default-dev 971s autopkgtest: DBG: can use apt-get on testbed: True 971s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-oxttl-0.1+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 971s Reading package lists... 972s Building dependency tree... 972s Reading state information... 972s Starting pkgProblemResolver with broken count: 0 972s Starting 2 pkgProblemResolver with broken count: 0 972s Done 972s The following NEW packages will be installed: 972s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 972s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 972s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 972s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 972s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 972s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 972s librust-addr2line-dev librust-adler-dev librust-ahash-dev 972s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 972s librust-backtrace-dev librust-blobby-dev librust-block-buffer-dev 972s librust-bumpalo-dev librust-byteorder-dev librust-bytes-dev 972s librust-cfg-if-dev librust-compiler-builtins-dev librust-const-oid-dev 972s librust-const-random-dev librust-const-random-macro-dev 972s librust-cpp-demangle-dev librust-crc32fast-dev librust-critical-section-dev 972s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 972s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 972s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 972s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 972s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 972s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 972s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev 972s librust-js-sys-dev librust-libc-dev librust-libz-sys-dev 972s librust-lock-api-dev librust-log-dev librust-memchr-dev librust-memmap2-dev 972s librust-miniz-oxide-dev librust-mio-dev librust-no-panic-dev 972s librust-object-dev librust-once-cell-dev librust-owning-ref-dev 972s librust-oxilangtag-dev librust-oxiri-dev librust-oxrdf-dev 972s librust-oxsdatatypes-dev librust-parking-lot-core-dev 972s librust-parking-lot-dev librust-pin-project-lite-dev librust-pkg-config-dev 972s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 972s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 972s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 972s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 972s librust-rayon-core-dev librust-rayon-dev librust-rustc-demangle-dev 972s librust-rustc-std-workspace-core-dev librust-ruzstd-dev librust-ryu-dev 972s librust-scopeguard-dev librust-serde-derive-dev librust-serde-dev 972s librust-serde-fmt-dev librust-serde-json-dev librust-serde-test-dev 972s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 972s librust-stable-deref-trait-dev librust-static-assertions-dev 972s librust-subtle-dev librust-sval-buffer-dev librust-sval-derive-dev 972s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 972s librust-sval-ref-dev librust-sval-serde-dev librust-syn-1-dev 972s librust-syn-dev librust-thiserror-1-dev librust-thiserror-impl-1-dev 972s librust-tiny-keccak-dev librust-tokio-dev librust-tokio-macros-dev 972s librust-tracing-attributes-dev librust-tracing-core-dev librust-tracing-dev 972s librust-twox-hash-dev librust-typed-arena-dev librust-typenum-dev 972s librust-unicode-ident-dev librust-valuable-derive-dev librust-valuable-dev 972s librust-value-bag-dev librust-value-bag-serde1-dev 972s librust-value-bag-sval2-dev librust-version-check-dev 972s librust-wasm-bindgen-backend-dev librust-wasm-bindgen-dev 972s librust-wasm-bindgen-macro-dev librust-wasm-bindgen-macro-support-dev 972s librust-wasm-bindgen-shared-dev librust-zerocopy-derive-dev 972s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 972s libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 m4 pkgconf 972s pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 972s 0 upgraded, 171 newly installed, 0 to remove and 0 not upgraded. 972s Need to get 137 MB of archives. 972s After this operation, 534 MB of additional disk space will be used. 972s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 973s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 973s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 973s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 973s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 973s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 973s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 974s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 975s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 975s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 975s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 975s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 975s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 975s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 975s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 975s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 975s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 975s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 975s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 975s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 975s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 976s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 976s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 976s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 976s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 976s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 976s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 976s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 976s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 976s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 976s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 976s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 976s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 976s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 976s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 976s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 976s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 976s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 976s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 976s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 976s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 976s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 976s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 976s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 976s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 976s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 976s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 976s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 976s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 976s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 976s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 976s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 976s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 976s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 976s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 976s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 976s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 976s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 976s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 976s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 976s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 976s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 977s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 977s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 977s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 977s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 977s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 977s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 977s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 977s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 977s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 977s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 977s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 977s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 977s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 977s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 977s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 977s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 977s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 977s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 977s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 977s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 977s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 977s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 977s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 977s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 977s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 977s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 977s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 977s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 977s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 977s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 977s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 977s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 977s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 977s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 977s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 977s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 977s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 977s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 977s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 977s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 977s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 977s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 977s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 977s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 977s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 977s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 977s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 977s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 977s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 977s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 977s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 978s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 978s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 978s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 978s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 978s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 978s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 978s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 978s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 978s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 978s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 978s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 978s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 978s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 978s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 978s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 978s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 978s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 978s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 978s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 978s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 978s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 978s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 978s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 978s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 978s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 978s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 978s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 978s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 978s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 978s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 978s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 978s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 978s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 978s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 978s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 978s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 978s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 978s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 978s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 978s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 978s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 978s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 978s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 978s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 978s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 978s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 978s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 978s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 978s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 978s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 978s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 978s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 978s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 978s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 978s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 978s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 978s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 978s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 979s Fetched 137 MB in 6s (21.9 MB/s) 979s Selecting previously unselected package m4. 979s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 979s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 979s Unpacking m4 (1.4.19-5) ... 979s Selecting previously unselected package autoconf. 979s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 979s Unpacking autoconf (2.72-3) ... 979s Selecting previously unselected package autotools-dev. 979s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 979s Unpacking autotools-dev (20220109.1) ... 979s Selecting previously unselected package automake. 979s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 979s Unpacking automake (1:1.17-3) ... 979s Selecting previously unselected package autopoint. 979s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 979s Unpacking autopoint (0.23.1-1) ... 979s Selecting previously unselected package libgit2-1.8:s390x. 979s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 979s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 979s Selecting previously unselected package libstd-rust-1.83:s390x. 979s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 979s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 980s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 980s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 980s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 980s Selecting previously unselected package libisl23:s390x. 980s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 980s Unpacking libisl23:s390x (0.27-1) ... 980s Selecting previously unselected package libmpc3:s390x. 981s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 981s Unpacking libmpc3:s390x (1.3.1-1build2) ... 981s Selecting previously unselected package cpp-14-s390x-linux-gnu. 981s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package cpp-14. 981s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package cpp-s390x-linux-gnu. 981s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 981s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 981s Selecting previously unselected package cpp. 981s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 981s Unpacking cpp (4:14.2.0-1ubuntu1) ... 981s Selecting previously unselected package libcc1-0:s390x. 981s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package libgomp1:s390x. 981s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package libitm1:s390x. 981s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package libasan8:s390x. 981s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package libubsan1:s390x. 981s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package libgcc-14-dev:s390x. 981s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package gcc-14-s390x-linux-gnu. 981s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package gcc-14. 981s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 981s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 981s Selecting previously unselected package gcc-s390x-linux-gnu. 981s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 981s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 981s Selecting previously unselected package gcc. 981s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 981s Unpacking gcc (4:14.2.0-1ubuntu1) ... 981s Selecting previously unselected package rustc-1.83. 981s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 981s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 981s Selecting previously unselected package cargo-1.83. 981s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 981s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 981s Selecting previously unselected package libdebhelper-perl. 981s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 981s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 981s Selecting previously unselected package libtool. 981s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 981s Unpacking libtool (2.5.4-3build1) ... 982s Selecting previously unselected package dh-autoreconf. 982s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 982s Unpacking dh-autoreconf (20) ... 982s Selecting previously unselected package libarchive-zip-perl. 982s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 982s Unpacking libarchive-zip-perl (1.68-1) ... 982s Selecting previously unselected package libfile-stripnondeterminism-perl. 982s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 982s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 982s Selecting previously unselected package dh-strip-nondeterminism. 982s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 982s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 982s Selecting previously unselected package debugedit. 982s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 982s Unpacking debugedit (1:5.1-2) ... 982s Selecting previously unselected package dwz. 982s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 982s Unpacking dwz (0.15-1build6) ... 982s Selecting previously unselected package gettext. 982s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 982s Unpacking gettext (0.23.1-1) ... 982s Selecting previously unselected package intltool-debian. 982s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 982s Unpacking intltool-debian (0.35.0+20060710.6) ... 982s Selecting previously unselected package po-debconf. 982s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 982s Unpacking po-debconf (1.0.21+nmu1) ... 982s Selecting previously unselected package debhelper. 982s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 982s Unpacking debhelper (13.24.1ubuntu2) ... 982s Selecting previously unselected package rustc. 982s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 982s Unpacking rustc (1.83.0ubuntu1) ... 982s Selecting previously unselected package cargo. 982s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 982s Unpacking cargo (1.83.0ubuntu1) ... 982s Selecting previously unselected package dh-rust. 982s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 982s Unpacking dh-rust (0.0.11) ... 982s Selecting previously unselected package libpkgconf3:s390x. 982s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 982s Unpacking libpkgconf3:s390x (1.8.1-4) ... 982s Selecting previously unselected package librust-cfg-if-dev:s390x. 982s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 982s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 982s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 982s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 982s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 982s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 982s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 982s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 982s Selecting previously unselected package librust-unicode-ident-dev:s390x. 982s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 982s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 982s Selecting previously unselected package librust-proc-macro2-dev:s390x. 982s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 982s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 982s Selecting previously unselected package librust-quote-dev:s390x. 982s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 982s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 982s Selecting previously unselected package librust-syn-dev:s390x. 982s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 982s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 982s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 982s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 982s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 982s Selecting previously unselected package librust-arbitrary-dev:s390x. 982s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 982s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 982s Selecting previously unselected package librust-equivalent-dev:s390x. 982s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 982s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 982s Selecting previously unselected package librust-critical-section-dev:s390x. 982s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 982s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 982s Selecting previously unselected package librust-serde-derive-dev:s390x. 982s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 982s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 982s Selecting previously unselected package librust-serde-dev:s390x. 982s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 982s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 982s Selecting previously unselected package librust-portable-atomic-dev:s390x. 982s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 982s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 982s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 982s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 982s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 982s Selecting previously unselected package librust-libc-dev:s390x. 982s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 982s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 982s Selecting previously unselected package librust-getrandom-dev:s390x. 982s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 982s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 982s Selecting previously unselected package librust-smallvec-dev:s390x. 982s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 982s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 982s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 982s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 982s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 982s Selecting previously unselected package librust-once-cell-dev:s390x. 982s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 982s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 982s Selecting previously unselected package librust-crunchy-dev:s390x. 982s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 982s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 982s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 982s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 982s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 982s Selecting previously unselected package librust-const-random-macro-dev:s390x. 982s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 982s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 982s Selecting previously unselected package librust-const-random-dev:s390x. 982s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 982s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 982s Selecting previously unselected package librust-version-check-dev:s390x. 982s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 982s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 982s Selecting previously unselected package librust-byteorder-dev:s390x. 982s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 982s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 982s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 982s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 982s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 982s Selecting previously unselected package librust-zerocopy-dev:s390x. 982s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 982s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 982s Selecting previously unselected package librust-ahash-dev. 982s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 982s Unpacking librust-ahash-dev (0.8.11-9) ... 982s Selecting previously unselected package librust-allocator-api2-dev:s390x. 982s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 982s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 982s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 982s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 982s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 982s Selecting previously unselected package librust-either-dev:s390x. 982s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 982s Unpacking librust-either-dev:s390x (1.13.0-1) ... 982s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 982s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 982s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 982s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 982s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 982s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 982s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 982s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 982s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 982s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 982s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 982s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 982s Selecting previously unselected package librust-rayon-core-dev:s390x. 982s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 982s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 982s Selecting previously unselected package librust-rayon-dev:s390x. 982s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 982s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 982s Selecting previously unselected package librust-hashbrown-dev:s390x. 982s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 982s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 982s Selecting previously unselected package librust-indexmap-dev:s390x. 982s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 982s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 982s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 982s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 982s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 982s Selecting previously unselected package librust-gimli-dev:s390x. 982s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 982s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 982s Selecting previously unselected package librust-memmap2-dev:s390x. 982s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 982s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 982s Selecting previously unselected package librust-crc32fast-dev:s390x. 982s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 982s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 982s Selecting previously unselected package pkgconf-bin. 982s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 982s Unpacking pkgconf-bin (1.8.1-4) ... 982s Selecting previously unselected package pkgconf:s390x. 982s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 982s Unpacking pkgconf:s390x (1.8.1-4) ... 982s Selecting previously unselected package librust-pkg-config-dev:s390x. 982s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 982s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 982s Selecting previously unselected package zlib1g-dev:s390x. 982s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 982s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 982s Selecting previously unselected package librust-libz-sys-dev:s390x. 982s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 982s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 982s Selecting previously unselected package librust-adler-dev:s390x. 982s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 982s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 982s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 982s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 982s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 982s Selecting previously unselected package librust-flate2-dev:s390x. 982s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 982s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 983s Selecting previously unselected package librust-sval-derive-dev:s390x. 983s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 983s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 983s Selecting previously unselected package librust-sval-dev:s390x. 983s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 983s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 983s Selecting previously unselected package librust-sval-ref-dev:s390x. 983s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 983s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 983s Selecting previously unselected package librust-erased-serde-dev:s390x. 983s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 983s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 983s Selecting previously unselected package librust-serde-fmt-dev. 983s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 983s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 983s Selecting previously unselected package librust-no-panic-dev:s390x. 983s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 983s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 983s Selecting previously unselected package librust-itoa-dev:s390x. 983s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 983s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 983s Selecting previously unselected package librust-ryu-dev:s390x. 983s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 983s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 983s Selecting previously unselected package librust-serde-json-dev:s390x. 983s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 983s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 983s Selecting previously unselected package librust-serde-test-dev:s390x. 983s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 983s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 983s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 983s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 983s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 983s Selecting previously unselected package librust-sval-buffer-dev:s390x. 983s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 983s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 983s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 983s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 983s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 983s Selecting previously unselected package librust-sval-fmt-dev:s390x. 983s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 983s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 983s Selecting previously unselected package librust-sval-serde-dev:s390x. 983s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 983s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 983s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 983s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 983s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 983s Selecting previously unselected package librust-value-bag-dev:s390x. 983s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 983s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 983s Selecting previously unselected package librust-log-dev:s390x. 983s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 983s Unpacking librust-log-dev:s390x (0.4.22-1) ... 983s Selecting previously unselected package librust-memchr-dev:s390x. 983s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 983s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 983s Selecting previously unselected package librust-blobby-dev:s390x. 983s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 983s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 983s Selecting previously unselected package librust-typenum-dev:s390x. 983s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 983s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 983s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 983s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 983s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 983s Selecting previously unselected package librust-zeroize-dev:s390x. 983s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 983s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 983s Selecting previously unselected package librust-generic-array-dev:s390x. 983s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 983s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 983s Selecting previously unselected package librust-block-buffer-dev:s390x. 983s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 983s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 983s Selecting previously unselected package librust-const-oid-dev:s390x. 983s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 983s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 983s Selecting previously unselected package librust-rand-core-dev:s390x. 983s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 983s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 983s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 983s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 983s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 983s Selecting previously unselected package librust-crypto-common-dev:s390x. 983s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 983s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 983s Selecting previously unselected package librust-subtle-dev:s390x. 983s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 983s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 983s Selecting previously unselected package librust-digest-dev:s390x. 983s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 983s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 983s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 983s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 983s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 983s Selecting previously unselected package librust-rand-chacha-dev:s390x. 983s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 983s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 983s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 983s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 983s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 983s Selecting previously unselected package librust-rand-core+std-dev:s390x. 983s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 983s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 983s Selecting previously unselected package librust-rand-dev:s390x. 983s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 983s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 983s Selecting previously unselected package librust-static-assertions-dev:s390x. 983s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 983s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 983s Selecting previously unselected package librust-twox-hash-dev:s390x. 983s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 983s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 983s Selecting previously unselected package librust-ruzstd-dev:s390x. 983s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 983s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 983s Selecting previously unselected package librust-object-dev:s390x. 983s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 983s Unpacking librust-object-dev:s390x (0.36.5-2) ... 983s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 983s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 983s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 983s Selecting previously unselected package librust-typed-arena-dev:s390x. 983s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 983s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 983s Selecting previously unselected package librust-addr2line-dev:s390x. 983s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 983s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 983s Selecting previously unselected package librust-autocfg-dev:s390x. 983s Preparing to unpack .../137-librust-autocfg-dev_1.1.0-1_s390x.deb ... 983s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 983s Selecting previously unselected package librust-backtrace-dev:s390x. 983s Preparing to unpack .../138-librust-backtrace-dev_0.3.74-3_s390x.deb ... 983s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 983s Selecting previously unselected package librust-bumpalo-dev:s390x. 983s Preparing to unpack .../139-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 983s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 983s Selecting previously unselected package librust-bytes-dev:s390x. 983s Preparing to unpack .../140-librust-bytes-dev_1.9.0-1_s390x.deb ... 983s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 983s Selecting previously unselected package librust-encoding-rs-dev:s390x. 983s Preparing to unpack .../141-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 983s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 983s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 983s Preparing to unpack .../142-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 983s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 983s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 983s Preparing to unpack .../143-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 983s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 983s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 983s Preparing to unpack .../144-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 983s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 983s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 983s Preparing to unpack .../145-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 983s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 983s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 983s Preparing to unpack .../146-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 983s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 983s Selecting previously unselected package librust-js-sys-dev:s390x. 983s Preparing to unpack .../147-librust-js-sys-dev_0.3.64-1_s390x.deb ... 983s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 983s Selecting previously unselected package librust-owning-ref-dev:s390x. 983s Preparing to unpack .../148-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 983s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 983s Selecting previously unselected package librust-scopeguard-dev:s390x. 983s Preparing to unpack .../149-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 983s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 983s Selecting previously unselected package librust-lock-api-dev:s390x. 983s Preparing to unpack .../150-librust-lock-api-dev_0.4.12-1_s390x.deb ... 983s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 983s Selecting previously unselected package librust-mio-dev:s390x. 983s Preparing to unpack .../151-librust-mio-dev_1.0.2-3_s390x.deb ... 983s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 983s Selecting previously unselected package librust-oxilangtag-dev. 983s Preparing to unpack .../152-librust-oxilangtag-dev_0.1.5-4_all.deb ... 983s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 983s Selecting previously unselected package librust-oxiri-dev. 983s Preparing to unpack .../153-librust-oxiri-dev_0.2.11-2_all.deb ... 983s Unpacking librust-oxiri-dev (0.2.11-2) ... 983s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 983s Preparing to unpack .../154-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 983s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 983s Selecting previously unselected package librust-thiserror-1-dev:s390x. 983s Preparing to unpack .../155-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 983s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 983s Selecting previously unselected package librust-oxsdatatypes-dev. 983s Preparing to unpack .../156-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 983s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 983s Selecting previously unselected package librust-parking-lot-dev:s390x. 983s Preparing to unpack .../157-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 983s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 983s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 983s Preparing to unpack .../158-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 983s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 983s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 983s Preparing to unpack .../159-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 983s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 983s Selecting previously unselected package librust-socket2-dev:s390x. 983s Preparing to unpack .../160-librust-socket2-dev_0.5.8-1_s390x.deb ... 983s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 983s Selecting previously unselected package librust-tokio-macros-dev:s390x. 983s Preparing to unpack .../161-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 983s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 983s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 983s Preparing to unpack .../162-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 983s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 983s Selecting previously unselected package librust-syn-1-dev:s390x. 983s Preparing to unpack .../163-librust-syn-1-dev_1.0.109-3_s390x.deb ... 983s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 983s Selecting previously unselected package librust-valuable-derive-dev:s390x. 983s Preparing to unpack .../164-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 983s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 983s Selecting previously unselected package librust-valuable-dev:s390x. 983s Preparing to unpack .../165-librust-valuable-dev_0.1.0-4_s390x.deb ... 983s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 983s Selecting previously unselected package librust-tracing-core-dev:s390x. 983s Preparing to unpack .../166-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 983s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 983s Selecting previously unselected package librust-tracing-dev:s390x. 983s Preparing to unpack .../167-librust-tracing-dev_0.1.40-1_s390x.deb ... 983s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 984s Selecting previously unselected package librust-tokio-dev:s390x. 984s Preparing to unpack .../168-librust-tokio-dev_1.43.0-1_s390x.deb ... 984s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 984s Selecting previously unselected package librust-quick-xml-dev:s390x. 984s Preparing to unpack .../169-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 984s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 984s Selecting previously unselected package librust-oxrdf-dev. 984s Preparing to unpack .../170-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 984s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 984s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 984s Setting up librust-either-dev:s390x (1.13.0-1) ... 984s Setting up librust-adler-dev:s390x (1.0.2-2) ... 984s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 984s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 984s Setting up libarchive-zip-perl (1.68-1) ... 984s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 984s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 984s Setting up m4 (1.4.19-5) ... 984s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 984s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 984s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 984s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 984s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 984s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 984s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 984s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 984s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 984s Setting up autotools-dev (20220109.1) ... 984s Setting up libpkgconf3:s390x (1.8.1-4) ... 984s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 984s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 984s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 984s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 984s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 984s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 984s Setting up libmpc3:s390x (1.3.1-1build2) ... 984s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 984s Setting up autopoint (0.23.1-1) ... 984s Setting up pkgconf-bin (1.8.1-4) ... 984s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 984s Setting up autoconf (2.72-3) ... 984s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 984s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 984s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 984s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 984s Setting up dwz (0.15-1build6) ... 984s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 984s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 984s Setting up debugedit (1:5.1-2) ... 984s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 984s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 984s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 984s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 984s Setting up libisl23:s390x (0.27-1) ... 984s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 984s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 984s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 984s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 984s Setting up automake (1:1.17-3) ... 984s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 984s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 984s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 984s Setting up librust-libc-dev:s390x (0.2.169-1) ... 984s Setting up gettext (0.23.1-1) ... 984s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 984s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 984s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 984s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 984s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 984s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 984s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 984s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 984s Setting up pkgconf:s390x (1.8.1-4) ... 984s Setting up intltool-debian (0.35.0+20060710.6) ... 984s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 984s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 984s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 984s Setting up cpp-14 (14.2.0-17ubuntu1) ... 984s Setting up dh-strip-nondeterminism (1.14.1-2) ... 984s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 984s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 984s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 984s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 984s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 984s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 984s Setting up po-debconf (1.0.21+nmu1) ... 984s Setting up librust-quote-dev:s390x (1.0.37-1) ... 984s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 984s Setting up librust-syn-dev:s390x (2.0.96-2) ... 984s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 984s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 984s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 984s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 984s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 984s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 984s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 984s Setting up cpp (4:14.2.0-1ubuntu1) ... 984s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 984s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 984s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 984s Setting up librust-serde-dev:s390x (1.0.217-1) ... 984s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 984s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 984s Setting up librust-oxilangtag-dev (0.1.5-4) ... 984s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 984s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 984s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 984s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 984s Setting up librust-serde-fmt-dev (1.0.3-4) ... 984s Setting up librust-oxiri-dev (0.2.11-2) ... 984s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 984s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 984s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 984s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 984s Setting up librust-sval-dev:s390x (2.6.1-2) ... 984s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 984s Setting up gcc-14 (14.2.0-17ubuntu1) ... 984s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 984s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 984s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 984s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 984s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 984s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 984s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 984s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 984s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 984s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 984s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 984s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 984s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 984s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 984s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 984s Setting up libtool (2.5.4-3build1) ... 984s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 984s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 984s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 984s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 984s Setting up gcc (4:14.2.0-1ubuntu1) ... 984s Setting up dh-autoreconf (20) ... 984s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 984s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 984s Setting up rustc (1.83.0ubuntu1) ... 984s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 984s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 984s Setting up librust-digest-dev:s390x (0.10.7-2) ... 984s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 984s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 984s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 984s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 984s Setting up debhelper (13.24.1ubuntu2) ... 984s Setting up librust-ahash-dev (0.8.11-9) ... 984s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 984s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 984s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 984s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 984s Setting up cargo (1.83.0ubuntu1) ... 984s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 984s Setting up dh-rust (0.0.11) ... 984s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 984s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 984s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 984s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 984s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 984s Setting up librust-log-dev:s390x (0.4.22-1) ... 984s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 984s Setting up librust-rand-dev:s390x (0.8.5-1) ... 984s Setting up librust-mio-dev:s390x (1.0.2-3) ... 984s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 984s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 984s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 984s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 984s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 984s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 984s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 984s Setting up librust-object-dev:s390x (0.36.5-2) ... 984s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 984s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 984s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 984s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 984s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 984s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 984s Processing triggers for install-info (7.1.1-1) ... 984s Processing triggers for libc-bin (2.41-1ubuntu1) ... 984s Processing triggers for man-db (2.13.0-1) ... 985s autopkgtest: DBG: testbed command exited with code 0 985s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-oxttl:default-packages.all"], kind short, sout raw, serr pipe, env [] 985s autopkgtest: DBG: testbed command exited with code 0 985s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxttl%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-oxttl%3Adefault-packages.all 985s autopkgtest: DBG: got reply from testbed: ok 985s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 986s autopkgtest: DBG: testbed command exited with code 1 986s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 986s autopkgtest: DBG: testbed command exited with code 0 986s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 987s autopkgtest: DBG: got reply from testbed: ok 987s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 988s autopkgtest: DBG: testbed command exited with code 0 988s autopkgtest [01:43:21]: test rust-oxttl:default: /usr/share/dh-rust/bin/cargo-auto-test oxttl 0.1.5 --all-targets 988s autopkgtest [01:43:21]: test rust-oxttl:default: [----------------------- 988s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-oxttl:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-oxttl:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-oxttl:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test oxttl 0.1.5 --all-targets'"], kind test, sout raw, serr raw, env [] 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-oxttl:default-artifacts 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-oxttl:default-stderr 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-oxttl:default-stdout 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test oxttl 0.1.5 --all-targets 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.ovS8kAOMJr/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-oxttl:default-stdout 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.ovS8kAOMJr/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-oxttl:default-stdout 988s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 2888 to /tmp/autopkgtest_script_pid 988s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 988s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 988s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.Y7eqMuR1Lu/registry/ 988s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 988s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 988s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 988s Compiling proc-macro2 v1.0.92 988s Compiling unicode-ident v1.0.13 988s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn` 988s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn` 988s Compiling libc v0.2.169 988s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 988s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn` 989s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Y7eqMuR1Lu/target/release/deps:/tmp/tmp.Y7eqMuR1Lu/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Y7eqMuR1Lu/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 989s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 989s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 989s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 989s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 989s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern unicode_ident=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 989s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 989s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Y7eqMuR1Lu/target/release/deps:/tmp/tmp.Y7eqMuR1Lu/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Y7eqMuR1Lu/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 989s [libc 0.2.169] cargo:rerun-if-changed=build.rs 989s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 989s [libc 0.2.169] cargo:rustc-cfg=freebsd11 989s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 989s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 989s Compiling crossbeam-utils v0.8.19 989s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=1f3354439ba4c53e -C extra-filename=-1f3354439ba4c53e --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/build/crossbeam-utils-1f3354439ba4c53e -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn` 989s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Y7eqMuR1Lu/target/release/deps:/tmp/tmp.Y7eqMuR1Lu/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-df64111c15a3dde2/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Y7eqMuR1Lu/target/release/build/crossbeam-utils-1f3354439ba4c53e/build-script-build` 989s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 989s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 989s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 989s warning: unused import: `crate::ntptimeval` 989s --> /tmp/tmp.Y7eqMuR1Lu/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 989s | 989s 5 | use crate::ntptimeval; 989s | ^^^^^^^^^^^^^^^^^ 989s | 989s = note: `#[warn(unused_imports)]` on by default 989s 989s Compiling quote v1.0.37 989s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern proc_macro2=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 990s Compiling syn v2.0.96 990s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=1e840a5d57ad3da8 -C extra-filename=-1e840a5d57ad3da8 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern proc_macro2=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 990s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 990s | 990s = note: this feature is not stably supported; its behavior can change in the future 990s 990s warning: `libc` (lib) generated 2 warnings 990s Compiling cfg-if v1.0.0 990s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 990s parameters. Structured like an if-else chain, the first matching branch is the 990s item that gets emitted. 990s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 990s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 990s Compiling byteorder v1.5.0 990s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 990s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 990s Compiling getrandom v0.2.15 990s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern cfg_if=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 990s warning: unexpected `cfg` condition value: `js` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/getrandom-0.2.15/src/lib.rs:334:25 990s | 990s 334 | } else if #[cfg(all(feature = "js", 990s | ^^^^^^^^^^^^^^ 990s | 990s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 990s = help: consider adding `js` as a feature in `Cargo.toml` 990s = note: see for more information about checking conditional configuration 990s = note: `#[warn(unexpected_cfgs)]` on by default 990s 990s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 990s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-df64111c15a3dde2/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=9f1f74ec648708fe -C extra-filename=-9f1f74ec648708fe --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 990s | 990s 42 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: `#[warn(unexpected_cfgs)]` on by default 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 990s | 990s 65 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/lib.rs:106:11 990s | 990s 106 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 990s | 990s 74 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 990s | 990s 78 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 990s | 990s 81 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 990s | 990s 7 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 990s | 990s 25 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 990s | 990s 28 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 990s | 990s 1 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 990s | 990s 27 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 990s | 990s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 990s | 990s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 990s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 990s | 990s 50 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 990s | 990s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 990s | 990s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 990s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 990s | 990s 101 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 990s | 990s 107 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 79 | impl_atomic!(AtomicBool, bool); 990s | ------------------------------ in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 79 | impl_atomic!(AtomicBool, bool); 990s | ------------------------------ in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 80 | impl_atomic!(AtomicUsize, usize); 990s | -------------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 80 | impl_atomic!(AtomicUsize, usize); 990s | -------------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 81 | impl_atomic!(AtomicIsize, isize); 990s | -------------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 81 | impl_atomic!(AtomicIsize, isize); 990s | -------------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 82 | impl_atomic!(AtomicU8, u8); 990s | -------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 82 | impl_atomic!(AtomicU8, u8); 990s | -------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 83 | impl_atomic!(AtomicI8, i8); 990s | -------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 83 | impl_atomic!(AtomicI8, i8); 990s | -------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 84 | impl_atomic!(AtomicU16, u16); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 84 | impl_atomic!(AtomicU16, u16); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 85 | impl_atomic!(AtomicI16, i16); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 85 | impl_atomic!(AtomicI16, i16); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 87 | impl_atomic!(AtomicU32, u32); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 87 | impl_atomic!(AtomicU32, u32); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 89 | impl_atomic!(AtomicI32, i32); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 89 | impl_atomic!(AtomicI32, i32); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 94 | impl_atomic!(AtomicU64, u64); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 94 | impl_atomic!(AtomicU64, u64); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 990s | 990s 66 | #[cfg(not(crossbeam_no_atomic))] 990s | ^^^^^^^^^^^^^^^^^^^ 990s ... 990s 99 | impl_atomic!(AtomicI64, i64); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 990s | 990s 71 | #[cfg(crossbeam_loom)] 990s | ^^^^^^^^^^^^^^ 990s ... 990s 99 | impl_atomic!(AtomicI64, i64); 990s | ---------------------------- in this macro invocation 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:7:11 990s | 990s 7 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:10:11 990s | 990s 10 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 990s warning: unexpected `cfg` condition name: `crossbeam_loom` 990s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:15:11 990s | 990s 15 | #[cfg(not(crossbeam_loom))] 990s | ^^^^^^^^^^^^^^ 990s | 990s = help: consider using a Cargo feature instead 990s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 990s [lints.rust] 990s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 990s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 990s = note: see for more information about checking conditional configuration 990s 991s warning: `crossbeam-utils` (lib) generated 44 warnings (1 duplicate) 991s Compiling crossbeam-epoch v0.9.18 991s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_epoch CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Epoch-based garbage collection' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-epoch CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.9.18 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=18 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name crossbeam_epoch --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=7e415e01df4708a9 -C extra-filename=-7e415e01df4708a9 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern crossbeam_utils=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-9f1f74ec648708fe.rmeta --cap-lints warn -Ctarget-feature=+backchain` 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/lib.rs:66:7 991s | 991s 66 | #[cfg(crossbeam_loom)] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s = note: `#[warn(unexpected_cfgs)]` on by default 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/lib.rs:69:7 991s | 991s 69 | #[cfg(crossbeam_loom)] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/lib.rs:91:11 991s | 991s 91 | #[cfg(not(crossbeam_loom))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/atomic.rs:1675:21 991s | 991s 1675 | #[cfg(all(test, not(crossbeam_loom)))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/atomic.rs:350:15 991s | 991s 350 | #[cfg(not(crossbeam_loom))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/atomic.rs:358:11 991s | 991s 358 | #[cfg(crossbeam_loom)] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/collector.rs:112:21 991s | 991s 112 | #[cfg(all(test, not(crossbeam_loom)))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/deferred.rs:90:21 991s | 991s 90 | #[cfg(all(test, not(crossbeam_loom)))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/internal.rs:56:15 991s | 991s 56 | #[cfg(not(any(crossbeam_sanitize, miri)))] 991s | ^^^^^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/internal.rs:59:11 991s | 991s 59 | #[cfg(any(crossbeam_sanitize, miri))] 991s | ^^^^^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/internal.rs:300:15 991s | 991s 300 | #[cfg(not(any(crossbeam_sanitize, miri)))] // `crossbeam_sanitize` and `miri` reduce the size of `Local` 991s | ^^^^^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/internal.rs:557:21 991s | 991s 557 | #[cfg(all(test, not(crossbeam_loom)))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/internal.rs:202:29 991s | 991s 202 | let steps = if cfg!(crossbeam_sanitize) { 991s | ^^^^^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/sync/mod.rs:5:11 991s | 991s 5 | #[cfg(not(crossbeam_loom))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/sync/list.rs:298:21 991s | 991s 298 | #[cfg(all(test, not(crossbeam_loom)))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/sync/queue.rs:217:21 991s | 991s 217 | #[cfg(all(test, not(crossbeam_loom)))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/default.rs:10:11 991s | 991s 10 | #[cfg(not(crossbeam_loom))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/default.rs:64:21 991s | 991s 64 | #[cfg(all(test, not(crossbeam_loom)))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/default.rs:14:15 991s | 991s 14 | #[cfg(not(crossbeam_loom))] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 991s warning: unexpected `cfg` condition name: `crossbeam_loom` 991s --> /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-epoch-0.9.18/src/default.rs:22:11 991s | 991s 22 | #[cfg(crossbeam_loom)] 991s | ^^^^^^^^^^^^^^ 991s | 991s = help: consider using a Cargo feature instead 991s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 991s [lints.rust] 991s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 991s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 991s = note: see for more information about checking conditional configuration 991s 992s warning: `crossbeam-epoch` (lib) generated 21 warnings (1 duplicate) 992s Compiling rand_core v0.6.4 992s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 992s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern getrandom=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 992s warning: unexpected `cfg` condition name: `doc_cfg` 992s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/src/lib.rs:38:13 992s | 992s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 992s | ^^^^^^^ 992s | 992s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 992s = help: consider using a Cargo feature instead 992s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 992s [lints.rust] 992s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 992s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 992s = note: see for more information about checking conditional configuration 992s = note: `#[warn(unexpected_cfgs)]` on by default 992s 992s warning: unexpected `cfg` condition name: `doc_cfg` 992s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/src/error.rs:50:16 992s | 992s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 992s | ^^^^^^^ 992s | 992s = help: consider using a Cargo feature instead 992s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 992s [lints.rust] 992s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 992s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 992s = note: see for more information about checking conditional configuration 992s 992s warning: unexpected `cfg` condition name: `doc_cfg` 992s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/src/error.rs:64:16 992s | 992s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 992s | ^^^^^^^ 992s | 992s = help: consider using a Cargo feature instead 992s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 992s [lints.rust] 992s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 992s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 992s = note: see for more information about checking conditional configuration 992s 992s warning: unexpected `cfg` condition name: `doc_cfg` 992s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/src/error.rs:75:16 992s | 992s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 992s | ^^^^^^^ 992s | 992s = help: consider using a Cargo feature instead 992s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 992s [lints.rust] 992s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 992s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 992s = note: see for more information about checking conditional configuration 992s 992s warning: unexpected `cfg` condition name: `doc_cfg` 992s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/src/os.rs:46:12 992s | 992s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 992s | ^^^^^^^ 992s | 992s = help: consider using a Cargo feature instead 992s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 992s [lints.rust] 992s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 992s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 992s = note: see for more information about checking conditional configuration 992s 992s warning: unexpected `cfg` condition name: `doc_cfg` 992s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand_core-0.6.4/src/lib.rs:411:16 992s | 992s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 992s | ^^^^^^^ 992s | 992s = help: consider using a Cargo feature instead 992s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 992s [lints.rust] 992s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 992s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 992s = note: see for more information about checking conditional configuration 992s 993s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 993s Compiling thiserror v1.0.69 993s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn` 993s Compiling rayon-core v1.12.1 993s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis :Josh Stone ' CARGO_PKG_DESCRIPTION='Core APIs for Rayon' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rayon-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rayon-rs/rayon' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.12.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29c94e4edf922cbf -C extra-filename=-29c94e4edf922cbf --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/build/rayon-core-29c94e4edf922cbf -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn` 993s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1 CARGO_MANIFEST_LINKS=rayon-core CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis :Josh Stone ' CARGO_PKG_DESCRIPTION='Core APIs for Rayon' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rayon-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rayon-rs/rayon' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.12.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Y7eqMuR1Lu/target/release/deps:/tmp/tmp.Y7eqMuR1Lu/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/rayon-core-0048f0e0e55ec485/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Y7eqMuR1Lu/target/release/build/rayon-core-29c94e4edf922cbf/build-script-build` 993s [rayon-core 1.12.1] cargo:rerun-if-changed=build.rs 993s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Y7eqMuR1Lu/target/release/deps:/tmp/tmp.Y7eqMuR1Lu/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Y7eqMuR1Lu/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 993s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 993s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 993s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 993s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 993s Compiling crossbeam-deque v0.8.5 993s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_deque CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-deque-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-deque-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Concurrent work-stealing deque' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-deque CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-deque-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name crossbeam_deque --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/crossbeam-deque-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4316beda25cbf789 -C extra-filename=-4316beda25cbf789 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern crossbeam_epoch=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_epoch-7e415e01df4708a9.rmeta --extern crossbeam_utils=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-9f1f74ec648708fe.rmeta --cap-lints warn -Ctarget-feature=+backchain` 993s warning: `crossbeam-deque` (lib) generated 1 warning (1 duplicate) 993s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rayon_core CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis :Josh Stone ' CARGO_PKG_DESCRIPTION='Core APIs for Rayon' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rayon-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rayon-rs/rayon' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.12.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/rayon-core-0048f0e0e55ec485/out rustc --crate-name rayon_core --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6901405607e5585f -C extra-filename=-6901405607e5585f --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern crossbeam_deque=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_deque-4316beda25cbf789.rmeta --extern crossbeam_utils=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-9f1f74ec648708fe.rmeta --cap-lints warn -Ctarget-feature=+backchain` 993s warning: unexpected `cfg` condition value: `web_spin_lock` 993s --> /tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/src/lib.rs:106:11 993s | 993s 106 | #[cfg(not(feature = "web_spin_lock"))] 993s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 993s | 993s = note: no expected values for `feature` 993s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 993s = note: see for more information about checking conditional configuration 993s = note: `#[warn(unexpected_cfgs)]` on by default 993s 993s warning: unexpected `cfg` condition value: `web_spin_lock` 993s --> /tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/src/lib.rs:109:7 993s | 993s 109 | #[cfg(feature = "web_spin_lock")] 993s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 993s | 993s = note: no expected values for `feature` 993s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 993s = note: see for more information about checking conditional configuration 993s 993s warning: creating a shared reference to mutable static is discouraged 993s --> /tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/src/registry.rs:167:33 993s | 993s 167 | .or_else(|err| unsafe { THE_REGISTRY.as_ref().ok_or(err) }) 993s | ^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static 993s | 993s = note: for more information, see 993s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 993s = note: `#[warn(static_mut_refs)]` on by default 993s 993s warning: creating a mutable reference to mutable static is discouraged 993s --> /tmp/tmp.Y7eqMuR1Lu/registry/rayon-core-1.12.1/src/registry.rs:194:55 993s | 993s 194 | .map(|registry: Arc| unsafe { &*THE_REGISTRY.get_or_insert(registry) }) 993s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static 993s | 993s = note: for more information, see 993s = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives 993s 995s Compiling zerocopy-derive v0.7.34 995s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=83ccd38c41f59dac -C extra-filename=-83ccd38c41f59dac --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern proc_macro2=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 995s warning: `rayon-core` (lib) generated 5 warnings (1 duplicate) 995s Compiling thiserror-impl v1.0.69 995s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=3b2db9dbc1460002 -C extra-filename=-3b2db9dbc1460002 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern proc_macro2=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 996s Compiling zerocopy v0.7.34 996s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=0397100a42c241b0 -C extra-filename=-0397100a42c241b0 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern byteorder=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libzerocopy_derive-83ccd38c41f59dac.so --cap-lints warn -Ctarget-feature=+backchain` 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/util.rs:597:32 996s | 996s 597 | let remainder = t.addr() % mem::align_of::(); 996s | ^^^^^^^^^^^^^^^^^^ 996s | 996s note: the lint level is defined here 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:174:5 996s | 996s 174 | unused_qualifications, 996s | ^^^^^^^^^^^^^^^^^^^^^ 996s help: remove the unnecessary path segments 996s | 996s 597 - let remainder = t.addr() % mem::align_of::(); 996s 597 + let remainder = t.addr() % align_of::(); 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:333:35 996s | 996s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 996s | ^^^^^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 996s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:488:44 996s | 996s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 996s | ^^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 996s 488 + align: match NonZeroUsize::new(align_of::()) { 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:492:49 996s | 996s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 996s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:511:44 996s | 996s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 996s | ^^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 996s 511 + align: match NonZeroUsize::new(align_of::()) { 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:517:29 996s | 996s 517 | _elem_size: mem::size_of::(), 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 517 - _elem_size: mem::size_of::(), 996s 517 + _elem_size: size_of::(), 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:1418:19 996s | 996s 1418 | let len = mem::size_of_val(self); 996s | ^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 1418 - let len = mem::size_of_val(self); 996s 1418 + let len = size_of_val(self); 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:2714:19 996s | 996s 2714 | let len = mem::size_of_val(self); 996s | ^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 2714 - let len = mem::size_of_val(self); 996s 2714 + let len = size_of_val(self); 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:2789:19 996s | 996s 2789 | let len = mem::size_of_val(self); 996s | ^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 2789 - let len = mem::size_of_val(self); 996s 2789 + let len = size_of_val(self); 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:2863:27 996s | 996s 2863 | if bytes.len() != mem::size_of_val(self) { 996s | ^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 2863 - if bytes.len() != mem::size_of_val(self) { 996s 2863 + if bytes.len() != size_of_val(self) { 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:2920:20 996s | 996s 2920 | let size = mem::size_of_val(self); 996s | ^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 2920 - let size = mem::size_of_val(self); 996s 2920 + let size = size_of_val(self); 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:2981:45 996s | 996s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 996s | ^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 996s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4161:27 996s | 996s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 996s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4176:26 996s | 996s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 996s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4179:46 996s | 996s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 996s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4194:46 996s | 996s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 996s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4221:26 996s | 996s 4221 | .checked_rem(mem::size_of::()) 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4221 - .checked_rem(mem::size_of::()) 996s 4221 + .checked_rem(size_of::()) 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4243:34 996s | 996s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 996s 4243 + let expected_len = match size_of::().checked_mul(count) { 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4268:34 996s | 996s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 996s 4268 + let expected_len = match size_of::().checked_mul(count) { 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4795:25 996s | 996s 4795 | let elem_size = mem::size_of::(); 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4795 - let elem_size = mem::size_of::(); 996s 4795 + let elem_size = size_of::(); 996s | 996s 996s warning: unnecessary qualification 996s --> /tmp/tmp.Y7eqMuR1Lu/registry/zerocopy-0.7.34/src/lib.rs:4825:25 996s | 996s 4825 | let elem_size = mem::size_of::(); 996s | ^^^^^^^^^^^^^^^^^ 996s | 996s help: remove the unnecessary path segments 996s | 996s 4825 - let elem_size = mem::size_of::(); 996s 4825 + let elem_size = size_of::(); 996s | 996s 997s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps OUT_DIR=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a2cbddc2149c38b8 -C extra-filename=-a2cbddc2149c38b8 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern thiserror_impl=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libthiserror_impl-3b2db9dbc1460002.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 997s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 997s Compiling tokio-macros v2.5.0 997s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio_macros CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/tokio-macros-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/tokio-macros-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Tokio'\''s proc macros. 997s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/tokio-macros-2.5.0 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name tokio_macros --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/tokio-macros-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=cc1b943c02aa4c24 -C extra-filename=-cc1b943c02aa4c24 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern proc_macro2=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 997s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 997s Compiling ppv-lite86 v0.2.20 997s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=2fed0a76dbecf87b -C extra-filename=-2fed0a76dbecf87b --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern zerocopy=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-0397100a42c241b0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 997s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 997s Compiling rand_chacha v0.3.1 997s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 997s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=9f13d5fc363da7ec -C extra-filename=-9f13d5fc363da7ec --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern ppv_lite86=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-2fed0a76dbecf87b.rmeta --extern rand_core=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 997s Compiling either v1.13.0 997s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=either CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/either-1.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/either-1.13.0/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases. 997s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=either CARGO_PKG_README=README-crates.io.md CARGO_PKG_REPOSITORY='https://github.com/rayon-rs/either' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=1.13.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/either-1.13.0 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name either --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/either-1.13.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "use_std"))' -C metadata=08db45a2c2a49fa8 -C extra-filename=-08db45a2c2a49fa8 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 998s warning: `either` (lib) generated 1 warning (1 duplicate) 998s Compiling rand v0.8.5 998s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 998s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=41ce1892aa719892 -C extra-filename=-41ce1892aa719892 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern libc=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-9f13d5fc363da7ec.rmeta --extern rand_core=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/lib.rs:52:13 998s | 998s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s = note: `#[warn(unexpected_cfgs)]` on by default 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/lib.rs:53:13 998s | 998s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 998s | ^^^^^^^ 998s | 998s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/lib.rs:181:12 998s | 998s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/mod.rs:116:12 998s | 998s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `features` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 998s | 998s 162 | #[cfg(features = "nightly")] 998s | ^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: see for more information about checking conditional configuration 998s help: there is a config with a similar name and value 998s | 998s 162 | #[cfg(feature = "nightly")] 998s | ~~~~~~~ 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:15:7 998s | 998s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:156:7 998s | 998s 156 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:158:7 998s | 998s 158 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:160:7 998s | 998s 160 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:162:7 998s | 998s 162 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:165:7 998s | 998s 165 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:167:7 998s | 998s 167 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/float.rs:169:7 998s | 998s 169 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:13:32 998s | 998s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:15:35 998s | 998s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:19:7 998s | 998s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:112:7 998s | 998s 112 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:142:7 998s | 998s 142 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:144:7 998s | 998s 144 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:146:7 998s | 998s 146 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:148:7 998s | 998s 148 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:150:7 998s | 998s 150 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:152:7 998s | 998s 152 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/integer.rs:155:5 998s | 998s 155 | feature = "simd_support", 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:11:7 998s | 998s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:144:7 998s | 998s 144 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `std` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:235:11 998s | 998s 235 | #[cfg(not(std))] 998s | ^^^ help: found config with similar value: `feature = "std"` 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:363:7 998s | 998s 363 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:423:7 998s | 998s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 998s | ^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:424:7 998s | 998s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 998s | ^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:425:7 998s | 998s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 998s | ^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:426:7 998s | 998s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 998s | ^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:427:7 998s | 998s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 998s | ^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:428:7 998s | 998s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 998s | ^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:429:7 998s | 998s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 998s | ^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `std` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:291:19 998s | 998s 291 | #[cfg(not(std))] 998s | ^^^ help: found config with similar value: `feature = "std"` 998s ... 998s 359 | scalar_float_impl!(f32, u32); 998s | ---------------------------- in this macro invocation 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 998s 998s warning: unexpected `cfg` condition name: `std` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:291:19 998s | 998s 291 | #[cfg(not(std))] 998s | ^^^ help: found config with similar value: `feature = "std"` 998s ... 998s 360 | scalar_float_impl!(f64, u64); 998s | ---------------------------- in this macro invocation 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 998s | 998s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 998s | 998s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 998s | 998s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 998s | 998s 572 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 998s | 998s 679 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 998s | 998s 687 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 998s | 998s 696 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 998s | 998s 706 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 998s | 998s 1001 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 998s | 998s 1003 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 998s | 998s 1005 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 998s | 998s 1007 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 998s | 998s 1010 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 998s | 998s 1012 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition value: `simd_support` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 998s | 998s 1014 | #[cfg(feature = "simd_support")] 998s | ^^^^^^^^^^^^^^^^^^^^^^^^ 998s | 998s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 998s = help: consider adding `simd_support` as a feature in `Cargo.toml` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/rng.rs:395:12 998s | 998s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/rngs/mod.rs:99:12 998s | 998s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/rngs/mod.rs:118:12 998s | 998s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/rngs/std.rs:32:12 998s | 998s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/rngs/thread.rs:60:12 998s | 998s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/rngs/thread.rs:87:12 998s | 998s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/mod.rs:29:12 998s | 998s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/mod.rs:623:12 998s | 998s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/index.rs:276:12 998s | 998s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/mod.rs:114:16 998s | 998s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/mod.rs:142:16 998s | 998s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/mod.rs:170:16 998s | 998s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/mod.rs:219:16 998s | 998s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: unexpected `cfg` condition name: `doc_cfg` 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/seq/mod.rs:465:16 998s | 998s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 998s | ^^^^^^^ 998s | 998s = help: consider using a Cargo feature instead 998s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 998s [lints.rust] 998s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 998s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 998s = note: see for more information about checking conditional configuration 998s 998s warning: trait `Float` is never used 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:238:18 998s | 998s 238 | pub(crate) trait Float: Sized { 998s | ^^^^^ 998s | 998s = note: `#[warn(dead_code)]` on by default 998s 998s warning: associated items `lanes`, `extract`, and `replace` are never used 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:247:8 998s | 998s 245 | pub(crate) trait FloatAsSIMD: Sized { 998s | ----------- associated items in this trait 998s 246 | #[inline(always)] 998s 247 | fn lanes() -> usize { 998s | ^^^^^ 998s ... 998s 255 | fn extract(self, index: usize) -> Self { 998s | ^^^^^^^ 998s ... 998s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 998s | ^^^^^^^ 998s 998s warning: method `all` is never used 998s --> /tmp/tmp.Y7eqMuR1Lu/registry/rand-0.8.5/src/distributions/utils.rs:268:8 998s | 998s 266 | pub(crate) trait BoolAsSIMD: Sized { 998s | ---------- method in this trait 998s 267 | fn any(self) -> bool; 998s 268 | fn all(self) -> bool; 998s | ^^^ 998s 999s warning: `rand` (lib) generated 70 warnings (1 duplicate) 999s Compiling oxiri v0.2.11 999s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 999s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 999s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 999s Compiling pin-project-lite v0.2.13 999s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 999s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.Y7eqMuR1Lu/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 999s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 999s Compiling oxilangtag v0.1.5 999s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 999s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1000s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 1000s Compiling oxrdf v0.2.4 1000s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 1000s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=8a09a8efe1aa7283 -C extra-filename=-8a09a8efe1aa7283 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern oxilangtag=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern rand=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/librand-41ce1892aa719892.rmeta --extern thiserror=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1000s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 1000s Compiling tokio v1.43.0 1000s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/tokio-1.43.0 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/tokio-1.43.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O 1000s backed applications. 1000s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.43.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=43 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/tokio-1.43.0 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name tokio --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/tokio-1.43.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="macros"' --cfg 'feature="rt"' --cfg 'feature="tokio-macros"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "mio", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "test-util", "time", "tokio-macros", "tracing"))' -C metadata=bba2fec50ae61c26 -C extra-filename=-bba2fec50ae61c26 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern pin_project_lite=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern tokio_macros=/tmp/tmp.Y7eqMuR1Lu/target/release/deps/libtokio_macros-cc1b943c02aa4c24.so --cap-lints warn -Ctarget-feature=+backchain` 1004s warning: `tokio` (lib) generated 1 warning (1 duplicate) 1004s Compiling rayon v1.10.0 1004s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rayon CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-1.10.0 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-1.10.0/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis :Josh Stone ' CARGO_PKG_DESCRIPTION='Simple work-stealing parallelism for Rust' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rayon CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rayon-rs/rayon' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.10.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/rayon-1.10.0 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name rayon --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/rayon-1.10.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=d28744898d82d100 -C extra-filename=-d28744898d82d100 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern either=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libeither-08db45a2c2a49fa8.rmeta --extern rayon_core=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/librayon_core-6901405607e5585f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1005s warning: unexpected `cfg` condition value: `web_spin_lock` 1005s --> /tmp/tmp.Y7eqMuR1Lu/registry/rayon-1.10.0/src/iter/par_bridge.rs:1:11 1005s | 1005s 1 | #[cfg(not(feature = "web_spin_lock"))] 1005s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 1005s | 1005s = note: no expected values for `feature` 1005s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 1005s = note: see for more information about checking conditional configuration 1005s = note: `#[warn(unexpected_cfgs)]` on by default 1005s 1005s warning: unexpected `cfg` condition value: `web_spin_lock` 1005s --> /tmp/tmp.Y7eqMuR1Lu/registry/rayon-1.10.0/src/iter/par_bridge.rs:4:7 1005s | 1005s 4 | #[cfg(feature = "web_spin_lock")] 1005s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 1005s | 1005s = note: no expected values for `feature` 1005s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 1005s = note: see for more information about checking conditional configuration 1005s 1007s warning: `rayon` (lib) generated 3 warnings (1 duplicate) 1007s Compiling memchr v2.7.4 1007s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.Y7eqMuR1Lu/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1007s 1, 2 or 3 byte search and single substring search. 1007s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.Y7eqMuR1Lu/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.Y7eqMuR1Lu/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1008s warning: `memchr` (lib) generated 1 warning (1 duplicate) 1009s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 1009s Compiling oxttl v0.1.5 (/usr/share/cargo/registry/oxttl-0.1.5) 1009s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxttl CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxttl-0.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxttl-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for languages related to RDF Turtle (N-Triples, N-Quads, Turtle, TriG and N3) 1009s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxttl CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxttl' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxttl-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.Y7eqMuR1Lu/target/release/deps rustc --crate-name oxttl --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=dfa30d679d0b7098 -C extra-filename=-dfa30d679d0b7098 --out-dir /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.Y7eqMuR1Lu/target/release/deps --extern memchr=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rlib --extern oxilangtag=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rlib --extern oxiri=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rlib --extern oxrdf=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-8a09a8efe1aa7283.rlib --extern rayon=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/librayon-d28744898d82d100.rlib --extern thiserror=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rlib --extern tokio=/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/libtokio-bba2fec50ae61c26.rlib -Ctarget-feature=+backchain` 1013s warning: `oxttl` (lib test) generated 1 warning (1 duplicate) 1013s Finished `release` profile [optimized] target(s) in 24.72s 1013s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxttl-0.1.5 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxttl-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for languages related to RDF Turtle (N-Triples, N-Quads, Turtle, TriG and N3) 1013s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxttl CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxttl' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.Y7eqMuR1Lu/target/s390x-unknown-linux-gnu/release/deps/oxttl-dfa30d679d0b7098` 1013s 1013s running 3 tests 1013s test ntriples::tests::unchecked_parsing ... ok 1013s test trig::tests::test_write ... ok 1013s test turtle::tests::test_write ... ok 1013s 1013s test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 1013s 1013s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 1013s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 1013s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 1013s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 1013s autopkgtest: DBG: testbed command exited with code 0 1013s autopkgtest [01:43:46]: test rust-oxttl:default: -----------------------] 1013s autopkgtest: DBG: testbed executing test finished with exit status 0 1013s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxttl%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-oxttl%3Adefault-stdout 1014s autopkgtest: DBG: got reply from testbed: ok 1014s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxttl%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-oxttl%3Adefault-stderr 1014s autopkgtest: DBG: got reply from testbed: ok 1014s autopkgtest [01:43:47]: test rust-oxttl:default: - - - - - - - - - - results - - - - - - - - - - 1014s rust-oxttl:default PASS 1014s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxttl%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 1014s autopkgtest: DBG: got reply from testbed: ok 1014s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-oxttl:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1014s autopkgtest: DBG: testbed command exited with code 0 1014s autopkgtest [01:43:47]: test rust-sparesults:default: preparing testbed 1014s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-oxttl-0.1+default-dev'], deps_new=['dh-rust', 'librust-sparesults-0.2+default-dev'] 1014s autopkgtest: DBG: testbed reset 1014s autopkgtest: DBG: sending command to testbed: revert 1137s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 1137s autopkgtest: DBG: sending command to testbed: print-execute-command 1137s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 1137s autopkgtest: DBG: sending command to testbed: capabilities 1137s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 1137s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 1137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1137s autopkgtest: DBG: testbed command exited with code 0 1137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 1137s autopkgtest: DBG: got reply from testbed: ok 1137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1137s autopkgtest: DBG: testbed command exited with code 0 1137s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1137s autopkgtest: DBG: testbed command exited with code 0 1137s autopkgtest [01:45:50]: testbed dpkg architecture: s390x 1137s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1138s autopkgtest: DBG: testbed command exited with code 0 1138s autopkgtest [01:45:51]: testbed apt version: 2.9.28 1138s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1138s autopkgtest: DBG: testbed command exited with code 0 1138s autopkgtest: DBG: testbed has eatmydata 1138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1138s autopkgtest: DBG: testbed command exited with code 0 1138s autopkgtest [01:45:51]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1138s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1138s autopkgtest: DBG: testbed command exited with code 0 1138s autopkgtest [01:45:51]: testbed release detected to be: plucky 1138s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 1138s autopkgtest: DBG: testbed command exited with code 0 1138s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 1138s autopkgtest: DBG: testbed command exited with code 0 1138s autopkgtest: DBG: adding APT source: Types: deb deb-src 1138s URIs: http://ftpmaster.internal/ubuntu/ 1138s Suites: plucky-proposed 1138s Components: main restricted universe multiverse 1138s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1138s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 1139s autopkgtest: DBG: testbed command exited with code 0 1139s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1139s Package: * 1139s Pin: release plucky-proposed 1139s Pin-Priority: 500 1139s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 1139s autopkgtest: DBG: testbed command exited with code 0 1139s autopkgtest [01:45:52]: updating testbed package index (apt update) 1139s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1139s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1139s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1139s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1140s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1140s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 1140s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 1140s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 1140s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1140s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 1140s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1140s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 1140s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 1140s Fetched 2083 kB in 1s (1977 kB/s) 1141s Reading package lists... 1141s autopkgtest: DBG: testbed command exited with code 0 1141s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1141s Package: * 1141s Pin: release plucky-proposed 1141s Pin-Priority: 100 1141s 1141s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 1141s Pin: release plucky-proposed 1141s Pin-Priority: 995 1141s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1141s autopkgtest: DBG: testbed command exited with code 0 1141s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1141s autopkgtest: DBG: testbed command exited with code 0 1141s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1141s + lsb_release --codename --short 1141s + RELEASE=plucky 1141s + cat 1141s + [ plucky != trusty ] 1141s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1141s Reading package lists... 1141s Building dependency tree... 1141s Reading state information... 1142s Calculating upgrade... 1142s The following packages were automatically installed and are no longer required: 1142s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1142s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1142s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1142s linux-tools-6.11.0-8-generic 1142s Use 'sudo apt autoremove' to remove them. 1142s The following packages will be upgraded: 1142s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 1142s libxdmcp6 1142s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1142s Need to get 1471 kB of archives. 1142s After this operation, 24.6 kB of additional disk space will be used. 1142s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 1142s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 1142s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 1142s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 1142s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 1142s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 1142s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 1142s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 1143s Preconfiguring packages ... 1143s Fetched 1471 kB in 1s (2184 kB/s) 1143s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1143s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 1143s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 1143s Setting up dash (0.5.12-12ubuntu1) ... 1143s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1143s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 1143s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1143s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 1143s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1143s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 1143s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1143s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 1143s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1143s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 1143s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1143s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 1143s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1143s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 1143s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1143s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 1143s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 1143s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 1143s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 1143s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 1143s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 1143s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 1143s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 1143s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 1143s Setting up libtasn1-6:s390x (4.20.0-2) ... 1143s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1143s Processing triggers for man-db (2.13.0-1) ... 1144s Processing triggers for debianutils (5.21) ... 1144s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1144s + /usr/lib/apt/apt-helper analyze-pattern ?true 1144s + + uname -rsed 1144s s/\./\\./g 1144s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1144s + apt list ?obsolete 1144s + tail -n+2 1144s + cut -d/ -f1 1144s + grep -v ^linux-.*6\.12\.0-15-generic.* 1144s + true 1144s + obsolete_pkgs= 1144s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1144s Reading package lists... 1144s Building dependency tree... 1144s Reading state information... 1144s The following packages will be REMOVED: 1144s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1144s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1144s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1144s linux-tools-6.11.0-8-generic* 1144s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 1144s After this operation, 167 MB disk space will be freed. 1144s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1144s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1144s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1144s Removing libpython3.12t64:s390x (3.12.9-1) ... 1144s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1144s Removing libnsl2:s390x (1.3.0-3build3) ... 1144s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1145s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1145s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1146s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1146s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1146s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1146s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1146s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1146s + grep -q trusty /etc/lsb-release 1146s + [ ! -d /usr/share/doc/unattended-upgrades ] 1146s + [ ! -d /usr/share/doc/lxd ] 1146s + [ ! -d /usr/share/doc/lxd-client ] 1146s + [ ! -d /usr/share/doc/snapd ] 1146s + type iptables 1146s + cat 1146s + chmod 755 /etc/rc.local 1146s + . /etc/rc.local 1146s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1146s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1146s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1146s + uname -m 1146s + [ s390x = ppc64le ] 1146s + [ -d /run/systemd/system ] 1146s + systemd-detect-virt --quiet --vm 1146s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1146s + cat 1146s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1146s + echo COMPRESS=lz4 1146s autopkgtest: DBG: testbed command exited with code 0 1146s autopkgtest [01:45:59]: upgrading testbed (apt dist-upgrade and autopurge) 1146s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1146s Reading package lists... 1146s Building dependency tree... 1146s Reading state information... 1146s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1146s Starting 2 pkgProblemResolver with broken count: 0 1146s Done 1147s Entering ResolveByKeep 1147s 1147s The following packages will be upgraded: 1147s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 1147s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1147s Need to get 10.7 MB of archives. 1147s After this operation, 305 kB of additional disk space will be used. 1147s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 1147s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 1147s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 1148s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 1148s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 1148s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1148s Preconfiguring packages ... 1148s Fetched 10.7 MB in 1s (11.6 MB/s) 1148s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 1148s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 1148s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1148s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 1148s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1148s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 1148s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1148s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 1148s Checking for services that may need to be restarted... 1148s Checking init scripts... 1148s Checking for services that may need to be restarted... 1148s Checking init scripts... 1148s Stopping some services possibly affected by the upgrade (will be restarted later): 1148s cron: stopping...done. 1148s 1149s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1149s Setting up libc6:s390x (2.41-1ubuntu1) ... 1149s Checking for services that may need to be restarted... 1149s Checking init scripts... 1149s Restarting services possibly affected by the upgrade: 1149s cron: restarting...done. 1149s 1149s Services restarted successfully. 1149s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1149s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 1149s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1149s Setting up libc-bin (2.41-1ubuntu1) ... 1149s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1149s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1149s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1149s Setting up iproute2 (6.13.0-1ubuntu1) ... 1149s Setting up locales (2.41-1ubuntu1) ... 1149s Installing new version of config file /etc/locale.alias ... 1150s Generating locales (this might take a while)... 1151s en_US.UTF-8... done 1151s Generation complete. 1151s Setting up libc-dev-bin (2.41-1ubuntu1) ... 1151s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 1151s Processing triggers for man-db (2.13.0-1) ... 1152s Processing triggers for systemd (257.2-3ubuntu1) ... 1152s autopkgtest: DBG: testbed command exited with code 0 1152s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1153s Reading package lists... 1153s Building dependency tree... 1153s Reading state information... 1153s Starting pkgProblemResolver with broken count: 0 1153s Starting 2 pkgProblemResolver with broken count: 0 1153s Done 1153s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1153s autopkgtest: DBG: testbed command exited with code 0 1153s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1153s autopkgtest: DBG: testbed command exited with code 1 1153s autopkgtest [01:46:06]: rebooting testbed after setup commands that affected boot 1153s autopkgtest: DBG: sending command to testbed: reboot 1162s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 1170s autopkgtest: DBG: got reply from testbed: ok 1170s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1170s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1170s autopkgtest: DBG: testbed command exited with code 0 1170s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1170s autopkgtest: DBG: got reply from testbed: ok 1170s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1170s autopkgtest: DBG: testbed command exited with code 0 1170s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1170s autopkgtest: DBG: testbed command exited with code 0 1170s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1171s autopkgtest: DBG: got reply from testbed: ok 1171s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 1172s autopkgtest: DBG: testbed command exited with code 0 1172s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 1173s autopkgtest: DBG: got reply from testbed: ok 1173s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1173s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1173s autopkgtest: DBG: testbed command exited with code 0 1173s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1174s autopkgtest: DBG: got reply from testbed: ok 1174s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1175s autopkgtest: DBG: got reply from testbed: ok 1175s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1175s autopkgtest: DBG: testbed command exited with code 0 1175s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1175s autopkgtest: DBG: testbed command exited with code 0 1175s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1175s autopkgtest: DBG: testbed command exited with code 0 1175s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1175s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-sparesults-0.2+default-dev'] 1175s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-sparesults-0.2+default-dev 1175s autopkgtest: DBG: can use apt-get on testbed: True 1175s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-sparesults-0.2+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1175s Reading package lists... 1175s Building dependency tree... 1175s Reading state information... 1176s Starting pkgProblemResolver with broken count: 0 1176s Starting 2 pkgProblemResolver with broken count: 0 1176s Done 1176s The following NEW packages will be installed: 1176s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 1176s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 1176s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 1176s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 1176s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 1176s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 1176s librust-addr2line-dev librust-adler-dev librust-ahash-dev 1176s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 1176s librust-backtrace-dev librust-blobby-dev librust-block-buffer-dev 1176s librust-bumpalo-dev librust-byteorder-dev librust-bytes-dev 1176s librust-cfg-if-dev librust-compiler-builtins-dev librust-const-oid-dev 1176s librust-const-random-dev librust-const-random-macro-dev 1176s librust-cpp-demangle-dev librust-crc32fast-dev librust-critical-section-dev 1176s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 1176s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 1176s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 1176s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 1176s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 1176s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 1176s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev 1176s librust-js-sys-dev librust-json-event-parser-dev librust-libc-dev 1176s librust-libz-sys-dev librust-lock-api-dev librust-log-dev librust-memchr-dev 1176s librust-memmap2-dev librust-miniz-oxide-dev librust-mio-dev 1176s librust-no-panic-dev librust-object-dev librust-once-cell-dev 1176s librust-owning-ref-dev librust-oxilangtag-dev librust-oxiri-dev 1176s librust-oxrdf-dev librust-oxsdatatypes-dev librust-parking-lot-core-dev 1176s librust-parking-lot-dev librust-pin-project-lite-dev librust-pkg-config-dev 1176s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 1176s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 1176s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 1176s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 1176s librust-rayon-core-dev librust-rayon-dev librust-rustc-demangle-dev 1176s librust-rustc-std-workspace-core-dev librust-ruzstd-dev librust-ryu-dev 1176s librust-scopeguard-dev librust-serde-derive-dev librust-serde-dev 1176s librust-serde-fmt-dev librust-serde-json-dev librust-serde-test-dev 1176s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 1176s librust-sparesults-dev librust-stable-deref-trait-dev 1176s librust-static-assertions-dev librust-subtle-dev librust-sval-buffer-dev 1176s librust-sval-derive-dev librust-sval-dev librust-sval-dynamic-dev 1176s librust-sval-fmt-dev librust-sval-ref-dev librust-sval-serde-dev 1176s librust-syn-1-dev librust-syn-dev librust-thiserror-1-dev 1176s librust-thiserror-impl-1-dev librust-tiny-keccak-dev librust-tokio-dev 1176s librust-tokio-macros-dev librust-tracing-attributes-dev 1176s librust-tracing-core-dev librust-tracing-dev librust-twox-hash-dev 1176s librust-typed-arena-dev librust-typenum-dev librust-unicode-ident-dev 1176s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 1176s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 1176s librust-version-check-dev librust-wasm-bindgen-backend-dev 1176s librust-wasm-bindgen-dev librust-wasm-bindgen-macro-dev 1176s librust-wasm-bindgen-macro-support-dev librust-wasm-bindgen-shared-dev 1176s librust-zerocopy-derive-dev librust-zerocopy-dev librust-zeroize-derive-dev 1176s librust-zeroize-dev libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 1176s m4 pkgconf pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 1176s 0 upgraded, 173 newly installed, 0 to remove and 0 not upgraded. 1176s Need to get 137 MB of archives. 1176s After this operation, 534 MB of additional disk space will be used. 1176s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 1176s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 1177s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 1177s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 1177s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 1177s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 1177s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 1177s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 1179s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 1179s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 1179s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 1180s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 1180s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 1180s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 1180s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 1180s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 1180s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 1180s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 1180s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 1180s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 1180s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 1181s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 1181s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 1181s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 1181s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 1181s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 1181s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 1181s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 1181s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 1181s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 1181s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 1181s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 1182s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 1182s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 1182s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 1182s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 1182s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 1182s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 1182s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 1182s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 1182s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 1182s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 1182s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 1182s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 1182s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 1182s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 1182s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 1182s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 1182s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 1182s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 1182s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 1182s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 1182s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 1182s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 1182s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 1182s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 1182s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 1182s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 1182s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 1182s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 1182s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 1182s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 1182s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 1182s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 1182s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 1182s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 1182s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 1182s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 1182s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 1182s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 1182s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 1182s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 1182s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 1182s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 1182s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 1182s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 1182s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 1182s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 1182s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 1182s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 1182s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 1182s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 1182s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 1182s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 1182s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 1182s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 1182s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 1182s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 1182s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 1182s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 1182s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 1182s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 1182s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 1182s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 1182s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 1182s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 1182s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 1182s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 1182s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 1182s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 1182s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 1183s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 1183s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 1183s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 1183s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 1183s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 1183s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 1183s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 1183s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 1183s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 1183s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 1183s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 1183s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 1183s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 1183s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 1183s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 1183s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 1183s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 1183s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 1183s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 1183s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 1183s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 1183s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 1183s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 1183s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 1183s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 1183s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 1183s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 1183s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 1183s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 1183s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 1183s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 1183s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 1183s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 1183s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 1183s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 1183s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 1183s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 1183s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 1183s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 1183s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 1183s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 1183s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 1183s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 1183s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 1183s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 1183s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 1183s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 1183s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 1183s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 1183s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 1183s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 1183s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 1183s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 1183s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 1183s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 1183s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 1183s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 1183s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 1183s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 1183s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 1183s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 1183s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 1183s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 1183s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-json-event-parser-dev all 0.2.0-6 [16.6 kB] 1183s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 1184s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 1184s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 1184s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 1184s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 1184s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 1184s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 1184s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sparesults-dev all 0.4.0~really0.2.4+0.4.7-4build1 [27.4 kB] 1184s Fetched 137 MB in 8s (17.9 MB/s) 1184s Selecting previously unselected package m4. 1184s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1184s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 1184s Unpacking m4 (1.4.19-5) ... 1184s Selecting previously unselected package autoconf. 1184s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 1184s Unpacking autoconf (2.72-3) ... 1184s Selecting previously unselected package autotools-dev. 1184s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 1184s Unpacking autotools-dev (20220109.1) ... 1184s Selecting previously unselected package automake. 1184s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 1184s Unpacking automake (1:1.17-3) ... 1184s Selecting previously unselected package autopoint. 1184s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 1184s Unpacking autopoint (0.23.1-1) ... 1184s Selecting previously unselected package libgit2-1.8:s390x. 1184s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 1184s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1184s Selecting previously unselected package libstd-rust-1.83:s390x. 1184s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1184s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1185s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 1185s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1185s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1186s Selecting previously unselected package libisl23:s390x. 1186s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 1186s Unpacking libisl23:s390x (0.27-1) ... 1186s Selecting previously unselected package libmpc3:s390x. 1186s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 1186s Unpacking libmpc3:s390x (1.3.1-1build2) ... 1186s Selecting previously unselected package cpp-14-s390x-linux-gnu. 1186s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package cpp-14. 1186s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package cpp-s390x-linux-gnu. 1186s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1186s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1186s Selecting previously unselected package cpp. 1186s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 1186s Unpacking cpp (4:14.2.0-1ubuntu1) ... 1186s Selecting previously unselected package libcc1-0:s390x. 1186s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package libgomp1:s390x. 1186s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package libitm1:s390x. 1186s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package libasan8:s390x. 1186s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package libubsan1:s390x. 1186s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package libgcc-14-dev:s390x. 1186s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package gcc-14-s390x-linux-gnu. 1186s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package gcc-14. 1186s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 1186s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 1186s Selecting previously unselected package gcc-s390x-linux-gnu. 1186s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1186s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1186s Selecting previously unselected package gcc. 1186s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 1186s Unpacking gcc (4:14.2.0-1ubuntu1) ... 1186s Selecting previously unselected package rustc-1.83. 1186s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1186s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1187s Selecting previously unselected package cargo-1.83. 1187s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1187s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1187s Selecting previously unselected package libdebhelper-perl. 1187s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 1187s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 1187s Selecting previously unselected package libtool. 1187s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 1187s Unpacking libtool (2.5.4-3build1) ... 1187s Selecting previously unselected package dh-autoreconf. 1187s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 1187s Unpacking dh-autoreconf (20) ... 1187s Selecting previously unselected package libarchive-zip-perl. 1187s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 1187s Unpacking libarchive-zip-perl (1.68-1) ... 1187s Selecting previously unselected package libfile-stripnondeterminism-perl. 1187s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 1187s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 1187s Selecting previously unselected package dh-strip-nondeterminism. 1187s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 1187s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 1187s Selecting previously unselected package debugedit. 1187s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 1187s Unpacking debugedit (1:5.1-2) ... 1187s Selecting previously unselected package dwz. 1187s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 1187s Unpacking dwz (0.15-1build6) ... 1187s Selecting previously unselected package gettext. 1187s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 1187s Unpacking gettext (0.23.1-1) ... 1187s Selecting previously unselected package intltool-debian. 1187s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 1187s Unpacking intltool-debian (0.35.0+20060710.6) ... 1187s Selecting previously unselected package po-debconf. 1187s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 1187s Unpacking po-debconf (1.0.21+nmu1) ... 1187s Selecting previously unselected package debhelper. 1187s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 1187s Unpacking debhelper (13.24.1ubuntu2) ... 1187s Selecting previously unselected package rustc. 1187s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 1187s Unpacking rustc (1.83.0ubuntu1) ... 1187s Selecting previously unselected package cargo. 1187s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 1187s Unpacking cargo (1.83.0ubuntu1) ... 1187s Selecting previously unselected package dh-rust. 1187s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 1187s Unpacking dh-rust (0.0.11) ... 1187s Selecting previously unselected package libpkgconf3:s390x. 1187s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 1187s Unpacking libpkgconf3:s390x (1.8.1-4) ... 1187s Selecting previously unselected package librust-cfg-if-dev:s390x. 1187s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 1187s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 1187s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 1187s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 1187s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1187s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 1187s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 1187s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1187s Selecting previously unselected package librust-unicode-ident-dev:s390x. 1187s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 1187s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 1187s Selecting previously unselected package librust-proc-macro2-dev:s390x. 1187s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 1187s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 1187s Selecting previously unselected package librust-quote-dev:s390x. 1187s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 1187s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 1187s Selecting previously unselected package librust-syn-dev:s390x. 1187s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 1187s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 1187s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 1187s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 1187s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1187s Selecting previously unselected package librust-arbitrary-dev:s390x. 1187s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 1187s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 1187s Selecting previously unselected package librust-equivalent-dev:s390x. 1187s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 1187s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 1187s Selecting previously unselected package librust-critical-section-dev:s390x. 1187s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 1187s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 1187s Selecting previously unselected package librust-serde-derive-dev:s390x. 1187s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 1187s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 1187s Selecting previously unselected package librust-serde-dev:s390x. 1187s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 1187s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 1187s Selecting previously unselected package librust-portable-atomic-dev:s390x. 1187s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 1187s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 1187s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 1187s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 1187s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1187s Selecting previously unselected package librust-libc-dev:s390x. 1187s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 1187s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 1187s Selecting previously unselected package librust-getrandom-dev:s390x. 1187s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 1187s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 1187s Selecting previously unselected package librust-smallvec-dev:s390x. 1187s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 1187s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 1187s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 1187s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 1187s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1187s Selecting previously unselected package librust-once-cell-dev:s390x. 1187s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 1187s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 1187s Selecting previously unselected package librust-crunchy-dev:s390x. 1187s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 1187s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 1187s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 1187s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 1187s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1187s Selecting previously unselected package librust-const-random-macro-dev:s390x. 1187s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 1187s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 1187s Selecting previously unselected package librust-const-random-dev:s390x. 1187s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 1187s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 1187s Selecting previously unselected package librust-version-check-dev:s390x. 1187s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 1187s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 1187s Selecting previously unselected package librust-byteorder-dev:s390x. 1187s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 1187s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 1187s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 1187s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 1187s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1187s Selecting previously unselected package librust-zerocopy-dev:s390x. 1187s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 1187s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 1187s Selecting previously unselected package librust-ahash-dev. 1187s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 1187s Unpacking librust-ahash-dev (0.8.11-9) ... 1187s Selecting previously unselected package librust-allocator-api2-dev:s390x. 1187s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 1187s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 1187s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 1187s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 1187s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1187s Selecting previously unselected package librust-either-dev:s390x. 1187s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 1187s Unpacking librust-either-dev:s390x (1.13.0-1) ... 1187s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 1187s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 1187s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1187s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 1187s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 1187s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1187s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 1187s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 1187s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1187s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 1187s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 1187s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1187s Selecting previously unselected package librust-rayon-core-dev:s390x. 1187s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 1187s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 1187s Selecting previously unselected package librust-rayon-dev:s390x. 1187s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 1187s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 1187s Selecting previously unselected package librust-hashbrown-dev:s390x. 1187s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 1187s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 1187s Selecting previously unselected package librust-indexmap-dev:s390x. 1187s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 1187s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 1187s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 1187s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 1187s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1187s Selecting previously unselected package librust-gimli-dev:s390x. 1187s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 1187s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 1187s Selecting previously unselected package librust-memmap2-dev:s390x. 1187s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 1187s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 1188s Selecting previously unselected package librust-crc32fast-dev:s390x. 1188s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 1188s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 1188s Selecting previously unselected package pkgconf-bin. 1188s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 1188s Unpacking pkgconf-bin (1.8.1-4) ... 1188s Selecting previously unselected package pkgconf:s390x. 1188s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 1188s Unpacking pkgconf:s390x (1.8.1-4) ... 1188s Selecting previously unselected package librust-pkg-config-dev:s390x. 1188s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 1188s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 1188s Selecting previously unselected package zlib1g-dev:s390x. 1188s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 1188s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1188s Selecting previously unselected package librust-libz-sys-dev:s390x. 1188s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 1188s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 1188s Selecting previously unselected package librust-adler-dev:s390x. 1188s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 1188s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 1188s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 1188s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 1188s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1188s Selecting previously unselected package librust-flate2-dev:s390x. 1188s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 1188s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 1188s Selecting previously unselected package librust-sval-derive-dev:s390x. 1188s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 1188s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 1188s Selecting previously unselected package librust-sval-dev:s390x. 1188s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 1188s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 1188s Selecting previously unselected package librust-sval-ref-dev:s390x. 1188s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 1188s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 1188s Selecting previously unselected package librust-erased-serde-dev:s390x. 1188s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 1188s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 1188s Selecting previously unselected package librust-serde-fmt-dev. 1188s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 1188s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 1188s Selecting previously unselected package librust-no-panic-dev:s390x. 1188s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 1188s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 1188s Selecting previously unselected package librust-itoa-dev:s390x. 1188s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 1188s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 1188s Selecting previously unselected package librust-ryu-dev:s390x. 1188s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 1188s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 1188s Selecting previously unselected package librust-serde-json-dev:s390x. 1188s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 1188s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 1188s Selecting previously unselected package librust-serde-test-dev:s390x. 1188s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 1188s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 1188s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 1188s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 1188s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1188s Selecting previously unselected package librust-sval-buffer-dev:s390x. 1188s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 1188s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 1188s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 1188s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 1188s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1188s Selecting previously unselected package librust-sval-fmt-dev:s390x. 1188s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 1188s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 1188s Selecting previously unselected package librust-sval-serde-dev:s390x. 1188s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 1188s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 1188s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 1188s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 1188s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1188s Selecting previously unselected package librust-value-bag-dev:s390x. 1188s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 1188s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 1188s Selecting previously unselected package librust-log-dev:s390x. 1188s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 1188s Unpacking librust-log-dev:s390x (0.4.22-1) ... 1188s Selecting previously unselected package librust-memchr-dev:s390x. 1188s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 1188s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 1188s Selecting previously unselected package librust-blobby-dev:s390x. 1188s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 1188s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 1188s Selecting previously unselected package librust-typenum-dev:s390x. 1188s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 1188s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 1188s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 1188s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 1188s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1188s Selecting previously unselected package librust-zeroize-dev:s390x. 1188s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 1188s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 1188s Selecting previously unselected package librust-generic-array-dev:s390x. 1188s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 1188s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 1188s Selecting previously unselected package librust-block-buffer-dev:s390x. 1188s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 1188s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 1188s Selecting previously unselected package librust-const-oid-dev:s390x. 1188s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 1188s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 1188s Selecting previously unselected package librust-rand-core-dev:s390x. 1188s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 1188s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 1188s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 1188s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 1188s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1188s Selecting previously unselected package librust-crypto-common-dev:s390x. 1188s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 1188s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 1188s Selecting previously unselected package librust-subtle-dev:s390x. 1188s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 1188s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 1188s Selecting previously unselected package librust-digest-dev:s390x. 1188s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 1188s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 1188s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 1188s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 1188s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1188s Selecting previously unselected package librust-rand-chacha-dev:s390x. 1188s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 1188s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 1188s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 1188s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 1188s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1188s Selecting previously unselected package librust-rand-core+std-dev:s390x. 1188s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 1188s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 1188s Selecting previously unselected package librust-rand-dev:s390x. 1188s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 1188s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 1188s Selecting previously unselected package librust-static-assertions-dev:s390x. 1188s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 1188s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 1188s Selecting previously unselected package librust-twox-hash-dev:s390x. 1188s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 1188s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 1188s Selecting previously unselected package librust-ruzstd-dev:s390x. 1188s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 1188s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 1188s Selecting previously unselected package librust-object-dev:s390x. 1188s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 1188s Unpacking librust-object-dev:s390x (0.36.5-2) ... 1188s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 1188s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 1188s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1188s Selecting previously unselected package librust-typed-arena-dev:s390x. 1188s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 1188s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 1188s Selecting previously unselected package librust-addr2line-dev:s390x. 1188s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 1188s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 1188s Selecting previously unselected package librust-autocfg-dev:s390x. 1188s Preparing to unpack .../137-librust-autocfg-dev_1.1.0-1_s390x.deb ... 1188s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 1188s Selecting previously unselected package librust-backtrace-dev:s390x. 1188s Preparing to unpack .../138-librust-backtrace-dev_0.3.74-3_s390x.deb ... 1188s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 1188s Selecting previously unselected package librust-bumpalo-dev:s390x. 1188s Preparing to unpack .../139-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 1188s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 1188s Selecting previously unselected package librust-bytes-dev:s390x. 1188s Preparing to unpack .../140-librust-bytes-dev_1.9.0-1_s390x.deb ... 1188s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 1188s Selecting previously unselected package librust-encoding-rs-dev:s390x. 1188s Preparing to unpack .../141-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 1188s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 1188s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 1188s Preparing to unpack .../142-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 1188s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1188s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 1188s Preparing to unpack .../143-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 1188s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1188s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 1188s Preparing to unpack .../144-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 1188s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1188s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 1188s Preparing to unpack .../145-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 1188s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1188s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 1188s Preparing to unpack .../146-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 1188s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1188s Selecting previously unselected package librust-js-sys-dev:s390x. 1188s Preparing to unpack .../147-librust-js-sys-dev_0.3.64-1_s390x.deb ... 1188s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 1188s Selecting previously unselected package librust-mio-dev:s390x. 1188s Preparing to unpack .../148-librust-mio-dev_1.0.2-3_s390x.deb ... 1188s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 1188s Selecting previously unselected package librust-owning-ref-dev:s390x. 1188s Preparing to unpack .../149-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 1188s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 1188s Selecting previously unselected package librust-scopeguard-dev:s390x. 1188s Preparing to unpack .../150-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 1188s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 1188s Selecting previously unselected package librust-lock-api-dev:s390x. 1188s Preparing to unpack .../151-librust-lock-api-dev_0.4.12-1_s390x.deb ... 1188s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 1188s Selecting previously unselected package librust-parking-lot-dev:s390x. 1188s Preparing to unpack .../152-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 1188s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 1188s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 1188s Preparing to unpack .../153-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 1188s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1188s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 1188s Preparing to unpack .../154-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 1188s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1188s Selecting previously unselected package librust-socket2-dev:s390x. 1188s Preparing to unpack .../155-librust-socket2-dev_0.5.8-1_s390x.deb ... 1188s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 1188s Selecting previously unselected package librust-tokio-macros-dev:s390x. 1188s Preparing to unpack .../156-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 1188s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 1188s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 1188s Preparing to unpack .../157-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 1188s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1188s Selecting previously unselected package librust-syn-1-dev:s390x. 1188s Preparing to unpack .../158-librust-syn-1-dev_1.0.109-3_s390x.deb ... 1188s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 1188s Selecting previously unselected package librust-valuable-derive-dev:s390x. 1188s Preparing to unpack .../159-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 1188s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 1188s Selecting previously unselected package librust-valuable-dev:s390x. 1188s Preparing to unpack .../160-librust-valuable-dev_0.1.0-4_s390x.deb ... 1188s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 1188s Selecting previously unselected package librust-tracing-core-dev:s390x. 1188s Preparing to unpack .../161-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 1188s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 1189s Selecting previously unselected package librust-tracing-dev:s390x. 1189s Preparing to unpack .../162-librust-tracing-dev_0.1.40-1_s390x.deb ... 1189s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 1189s Selecting previously unselected package librust-tokio-dev:s390x. 1189s Preparing to unpack .../163-librust-tokio-dev_1.43.0-1_s390x.deb ... 1189s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 1189s Selecting previously unselected package librust-json-event-parser-dev. 1189s Preparing to unpack .../164-librust-json-event-parser-dev_0.2.0-6_all.deb ... 1189s Unpacking librust-json-event-parser-dev (0.2.0-6) ... 1189s Selecting previously unselected package librust-oxilangtag-dev. 1189s Preparing to unpack .../165-librust-oxilangtag-dev_0.1.5-4_all.deb ... 1189s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 1189s Selecting previously unselected package librust-oxiri-dev. 1189s Preparing to unpack .../166-librust-oxiri-dev_0.2.11-2_all.deb ... 1189s Unpacking librust-oxiri-dev (0.2.11-2) ... 1189s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 1189s Preparing to unpack .../167-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 1189s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1189s Selecting previously unselected package librust-thiserror-1-dev:s390x. 1189s Preparing to unpack .../168-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 1189s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 1189s Selecting previously unselected package librust-oxsdatatypes-dev. 1189s Preparing to unpack .../169-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 1189s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1189s Selecting previously unselected package librust-quick-xml-dev:s390x. 1189s Preparing to unpack .../170-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 1189s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 1189s Selecting previously unselected package librust-oxrdf-dev. 1189s Preparing to unpack .../171-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1189s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1189s Selecting previously unselected package librust-sparesults-dev. 1189s Preparing to unpack .../172-librust-sparesults-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1189s Unpacking librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1189s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1189s Setting up librust-either-dev:s390x (1.13.0-1) ... 1189s Setting up librust-adler-dev:s390x (1.0.2-2) ... 1189s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 1189s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1189s Setting up libarchive-zip-perl (1.68-1) ... 1189s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 1189s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 1189s Setting up m4 (1.4.19-5) ... 1189s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1189s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1189s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 1189s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 1189s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 1189s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1189s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1189s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1189s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1189s Setting up autotools-dev (20220109.1) ... 1189s Setting up libpkgconf3:s390x (1.8.1-4) ... 1189s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1189s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 1189s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1189s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 1189s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 1189s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1189s Setting up libmpc3:s390x (1.3.1-1build2) ... 1189s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 1189s Setting up autopoint (0.23.1-1) ... 1189s Setting up pkgconf-bin (1.8.1-4) ... 1189s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 1189s Setting up autoconf (2.72-3) ... 1189s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 1189s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1189s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 1189s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 1189s Setting up dwz (0.15-1build6) ... 1189s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 1189s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 1189s Setting up debugedit (1:5.1-2) ... 1189s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 1189s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 1189s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 1189s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 1189s Setting up libisl23:s390x (0.27-1) ... 1189s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1189s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1189s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 1189s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 1189s Setting up automake (1:1.17-3) ... 1189s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 1189s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 1189s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1189s Setting up librust-libc-dev:s390x (0.2.169-1) ... 1189s Setting up gettext (0.23.1-1) ... 1189s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1189s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1189s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 1189s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 1189s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 1189s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 1189s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 1189s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 1189s Setting up pkgconf:s390x (1.8.1-4) ... 1189s Setting up intltool-debian (0.35.0+20060710.6) ... 1189s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1189s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1189s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1189s Setting up cpp-14 (14.2.0-17ubuntu1) ... 1189s Setting up dh-strip-nondeterminism (1.14.1-2) ... 1189s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 1189s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1189s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1189s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 1189s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 1189s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1189s Setting up po-debconf (1.0.21+nmu1) ... 1189s Setting up librust-quote-dev:s390x (1.0.37-1) ... 1189s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 1189s Setting up librust-syn-dev:s390x (2.0.96-2) ... 1189s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 1189s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1189s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1189s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 1189s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1189s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 1189s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 1189s Setting up cpp (4:14.2.0-1ubuntu1) ... 1189s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 1189s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1189s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 1189s Setting up librust-serde-dev:s390x (1.0.217-1) ... 1189s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1189s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1189s Setting up librust-oxilangtag-dev (0.1.5-4) ... 1189s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 1189s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 1189s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1189s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 1189s Setting up librust-serde-fmt-dev (1.0.3-4) ... 1189s Setting up librust-oxiri-dev (0.2.11-2) ... 1189s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 1189s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 1189s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 1189s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 1189s Setting up librust-sval-dev:s390x (2.6.1-2) ... 1189s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 1189s Setting up gcc-14 (14.2.0-17ubuntu1) ... 1189s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 1189s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 1189s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1189s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 1189s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 1189s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 1189s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 1189s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 1189s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 1189s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 1189s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 1189s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1189s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 1189s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1189s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 1189s Setting up libtool (2.5.4-3build1) ... 1189s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 1189s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 1189s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 1189s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 1189s Setting up gcc (4:14.2.0-1ubuntu1) ... 1189s Setting up dh-autoreconf (20) ... 1189s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 1189s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1189s Setting up rustc (1.83.0ubuntu1) ... 1189s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1189s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 1189s Setting up librust-digest-dev:s390x (0.10.7-2) ... 1189s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 1189s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 1189s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 1189s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 1189s Setting up debhelper (13.24.1ubuntu2) ... 1189s Setting up librust-ahash-dev (0.8.11-9) ... 1189s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 1189s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1189s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1189s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 1189s Setting up cargo (1.83.0ubuntu1) ... 1189s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 1189s Setting up dh-rust (0.0.11) ... 1189s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 1189s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 1189s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 1189s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1189s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 1189s Setting up librust-log-dev:s390x (0.4.22-1) ... 1189s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 1189s Setting up librust-rand-dev:s390x (0.8.5-1) ... 1189s Setting up librust-mio-dev:s390x (1.0.2-3) ... 1189s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1189s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 1189s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1189s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1189s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 1189s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1189s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 1189s Setting up librust-object-dev:s390x (0.36.5-2) ... 1189s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 1189s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1189s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 1189s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 1189s Setting up librust-json-event-parser-dev (0.2.0-6) ... 1189s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 1189s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1189s Setting up librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1189s Processing triggers for libc-bin (2.41-1ubuntu1) ... 1189s Processing triggers for man-db (2.13.0-1) ... 1190s Processing triggers for install-info (7.1.1-1) ... 1190s autopkgtest: DBG: testbed command exited with code 0 1190s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-sparesults:default-packages.all"], kind short, sout raw, serr pipe, env [] 1191s autopkgtest: DBG: testbed command exited with code 0 1191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparesults%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-sparesults%3Adefault-packages.all 1191s autopkgtest: DBG: got reply from testbed: ok 1191s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 1191s autopkgtest: DBG: testbed command exited with code 1 1191s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 1191s autopkgtest: DBG: testbed command exited with code 0 1191s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 1192s autopkgtest: DBG: got reply from testbed: ok 1192s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 1192s autopkgtest: DBG: testbed command exited with code 0 1192s autopkgtest [01:46:45]: test rust-sparesults:default: /usr/share/dh-rust/bin/cargo-auto-test sparesults 0.2.4 --all-targets 1192s autopkgtest [01:46:45]: test rust-sparesults:default: [----------------------- 1192s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-sparesults:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-sparesults:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-sparesults:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test sparesults 0.2.4 --all-targets'"], kind test, sout raw, serr raw, env [] 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-sparesults:default-artifacts 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-sparesults:default-stderr 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-sparesults:default-stdout 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test sparesults 0.2.4 --all-targets 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.DeNdVHcofY/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-sparesults:default-stdout 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.DeNdVHcofY/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-sparesults:default-stdout 1193s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 2906 to /tmp/autopkgtest_script_pid 1193s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1193s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1193s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.B0Z7khCz5O/registry/ 1193s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1193s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1193s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 1193s Compiling proc-macro2 v1.0.92 1193s Compiling unicode-ident v1.0.13 1193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.B0Z7khCz5O/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn` 1193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.B0Z7khCz5O/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn` 1193s Compiling libc v0.2.169 1193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1193s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.B0Z7khCz5O/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn` 1193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B0Z7khCz5O/target/release/deps:/tmp/tmp.B0Z7khCz5O/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B0Z7khCz5O/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B0Z7khCz5O/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 1193s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 1193s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 1193s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 1193s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps OUT_DIR=/tmp/tmp.B0Z7khCz5O/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.B0Z7khCz5O/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern unicode_ident=/tmp/tmp.B0Z7khCz5O/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 1193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1193s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B0Z7khCz5O/target/release/deps:/tmp/tmp.B0Z7khCz5O/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B0Z7khCz5O/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 1193s [libc 0.2.169] cargo:rerun-if-changed=build.rs 1193s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 1193s [libc 0.2.169] cargo:rustc-cfg=freebsd11 1193s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 1193s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 1193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1193s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps OUT_DIR=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 1193s warning: unused import: `crate::ntptimeval` 1193s --> /tmp/tmp.B0Z7khCz5O/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 1193s | 1193s 5 | use crate::ntptimeval; 1193s | ^^^^^^^^^^^^^^^^^ 1193s | 1193s = note: `#[warn(unused_imports)]` on by default 1193s 1194s Compiling quote v1.0.37 1194s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.B0Z7khCz5O/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern proc_macro2=/tmp/tmp.B0Z7khCz5O/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 1194s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 1194s | 1194s = note: this feature is not stably supported; its behavior can change in the future 1194s 1194s warning: `libc` (lib) generated 2 warnings 1194s Compiling cfg-if v1.0.0 1194s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 1194s parameters. Structured like an if-else chain, the first matching branch is the 1194s item that gets emitted. 1194s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1194s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 1194s Compiling byteorder v1.5.0 1194s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1194s Compiling syn v2.0.96 1194s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=1e840a5d57ad3da8 -C extra-filename=-1e840a5d57ad3da8 --out-dir /tmp/tmp.B0Z7khCz5O/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern proc_macro2=/tmp/tmp.B0Z7khCz5O/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.B0Z7khCz5O/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.B0Z7khCz5O/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 1194s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 1194s Compiling getrandom v0.2.15 1194s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern cfg_if=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1194s warning: unexpected `cfg` condition value: `js` 1194s --> /tmp/tmp.B0Z7khCz5O/registry/getrandom-0.2.15/src/lib.rs:334:25 1194s | 1194s 334 | } else if #[cfg(all(feature = "js", 1194s | ^^^^^^^^^^^^^^ 1194s | 1194s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 1194s = help: consider adding `js` as a feature in `Cargo.toml` 1194s = note: see for more information about checking conditional configuration 1194s = note: `#[warn(unexpected_cfgs)]` on by default 1194s 1194s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 1194s Compiling rand_core v0.6.4 1194s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 1194s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern getrandom=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1194s warning: unexpected `cfg` condition name: `doc_cfg` 1194s --> /tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/src/lib.rs:38:13 1194s | 1194s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1194s | ^^^^^^^ 1194s | 1194s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1194s = help: consider using a Cargo feature instead 1194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1194s [lints.rust] 1194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1194s = note: see for more information about checking conditional configuration 1194s = note: `#[warn(unexpected_cfgs)]` on by default 1194s 1194s warning: unexpected `cfg` condition name: `doc_cfg` 1194s --> /tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/src/error.rs:50:16 1194s | 1194s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1194s | ^^^^^^^ 1194s | 1194s = help: consider using a Cargo feature instead 1194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1194s [lints.rust] 1194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1194s = note: see for more information about checking conditional configuration 1194s 1194s warning: unexpected `cfg` condition name: `doc_cfg` 1194s --> /tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/src/error.rs:64:16 1194s | 1194s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1194s | ^^^^^^^ 1194s | 1194s = help: consider using a Cargo feature instead 1194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1194s [lints.rust] 1194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1194s = note: see for more information about checking conditional configuration 1194s 1194s warning: unexpected `cfg` condition name: `doc_cfg` 1194s --> /tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/src/error.rs:75:16 1194s | 1194s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1194s | ^^^^^^^ 1194s | 1194s = help: consider using a Cargo feature instead 1194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1194s [lints.rust] 1194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1194s = note: see for more information about checking conditional configuration 1194s 1194s warning: unexpected `cfg` condition name: `doc_cfg` 1194s --> /tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/src/os.rs:46:12 1194s | 1194s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1194s | ^^^^^^^ 1194s | 1194s = help: consider using a Cargo feature instead 1194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1194s [lints.rust] 1194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1194s = note: see for more information about checking conditional configuration 1194s 1194s warning: unexpected `cfg` condition name: `doc_cfg` 1194s --> /tmp/tmp.B0Z7khCz5O/registry/rand_core-0.6.4/src/lib.rs:411:16 1194s | 1194s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1194s | ^^^^^^^ 1194s | 1194s = help: consider using a Cargo feature instead 1194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1194s [lints.rust] 1194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1194s = note: see for more information about checking conditional configuration 1194s 1194s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 1194s Compiling thiserror v1.0.69 1194s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.B0Z7khCz5O/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn` 1195s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B0Z7khCz5O/target/release/deps:/tmp/tmp.B0Z7khCz5O/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B0Z7khCz5O/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 1195s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 1195s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 1195s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 1195s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1195s Compiling pin-project-lite v0.2.13 1195s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 1195s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1195s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 1195s Compiling memchr v2.7.4 1195s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1195s 1, 2 or 3 byte search and single substring search. 1195s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1196s warning: `memchr` (lib) generated 1 warning (1 duplicate) 1196s Compiling oxiri v0.2.11 1196s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 1196s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1196s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 1196s Compiling oxilangtag v0.1.5 1196s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 1196s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1196s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 1196s Compiling quick-xml v0.36.1 1196s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/quick-xml-0.36.1 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=759ace41c505d51b -C extra-filename=-759ace41c505d51b --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern memchr=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1197s warning: unexpected `cfg` condition value: `document-features` 1197s --> /tmp/tmp.B0Z7khCz5O/registry/quick-xml-0.36.1/src/lib.rs:42:5 1197s | 1197s 42 | feature = "document-features", 1197s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1197s | 1197s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 1197s = help: consider adding `document-features` as a feature in `Cargo.toml` 1197s = note: see for more information about checking conditional configuration 1197s = note: `#[warn(unexpected_cfgs)]` on by default 1197s 1197s warning: elided lifetime has a name 1197s --> /tmp/tmp.B0Z7khCz5O/registry/quick-xml-0.36.1/src/writer.rs:146:73 1197s | 1197s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 1197s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 1197s | 1197s = note: `#[warn(elided_named_lifetimes)]` on by default 1197s 1198s Compiling zerocopy-derive v0.7.34 1198s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=83ccd38c41f59dac -C extra-filename=-83ccd38c41f59dac --out-dir /tmp/tmp.B0Z7khCz5O/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern proc_macro2=/tmp/tmp.B0Z7khCz5O/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.B0Z7khCz5O/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.B0Z7khCz5O/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 1199s warning: `quick-xml` (lib) generated 3 warnings (1 duplicate) 1199s Compiling thiserror-impl v1.0.69 1199s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=3b2db9dbc1460002 -C extra-filename=-3b2db9dbc1460002 --out-dir /tmp/tmp.B0Z7khCz5O/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern proc_macro2=/tmp/tmp.B0Z7khCz5O/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.B0Z7khCz5O/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.B0Z7khCz5O/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 1199s Compiling zerocopy v0.7.34 1199s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=0397100a42c241b0 -C extra-filename=-0397100a42c241b0 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern byteorder=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.B0Z7khCz5O/target/release/deps/libzerocopy_derive-83ccd38c41f59dac.so --cap-lints warn -Ctarget-feature=+backchain` 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/util.rs:597:32 1199s | 1199s 597 | let remainder = t.addr() % mem::align_of::(); 1199s | ^^^^^^^^^^^^^^^^^^ 1199s | 1199s note: the lint level is defined here 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:174:5 1199s | 1199s 174 | unused_qualifications, 1199s | ^^^^^^^^^^^^^^^^^^^^^ 1199s help: remove the unnecessary path segments 1199s | 1199s 597 - let remainder = t.addr() % mem::align_of::(); 1199s 597 + let remainder = t.addr() % align_of::(); 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:333:35 1199s | 1199s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1199s | ^^^^^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1199s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:488:44 1199s | 1199s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 1199s | ^^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 1199s 488 + align: match NonZeroUsize::new(align_of::()) { 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:492:49 1199s | 1199s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1199s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:511:44 1199s | 1199s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 1199s | ^^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 1199s 511 + align: match NonZeroUsize::new(align_of::()) { 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:517:29 1199s | 1199s 517 | _elem_size: mem::size_of::(), 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 517 - _elem_size: mem::size_of::(), 1199s 517 + _elem_size: size_of::(), 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:1418:19 1199s | 1199s 1418 | let len = mem::size_of_val(self); 1199s | ^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 1418 - let len = mem::size_of_val(self); 1199s 1418 + let len = size_of_val(self); 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:2714:19 1199s | 1199s 2714 | let len = mem::size_of_val(self); 1199s | ^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 2714 - let len = mem::size_of_val(self); 1199s 2714 + let len = size_of_val(self); 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:2789:19 1199s | 1199s 2789 | let len = mem::size_of_val(self); 1199s | ^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 2789 - let len = mem::size_of_val(self); 1199s 2789 + let len = size_of_val(self); 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:2863:27 1199s | 1199s 2863 | if bytes.len() != mem::size_of_val(self) { 1199s | ^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 2863 - if bytes.len() != mem::size_of_val(self) { 1199s 2863 + if bytes.len() != size_of_val(self) { 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:2920:20 1199s | 1199s 2920 | let size = mem::size_of_val(self); 1199s | ^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 2920 - let size = mem::size_of_val(self); 1199s 2920 + let size = size_of_val(self); 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:2981:45 1199s | 1199s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1199s | ^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1199s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4161:27 1199s | 1199s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1199s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4176:26 1199s | 1199s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1199s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4179:46 1199s | 1199s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1199s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4194:46 1199s | 1199s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 1199s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4221:26 1199s | 1199s 4221 | .checked_rem(mem::size_of::()) 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4221 - .checked_rem(mem::size_of::()) 1199s 4221 + .checked_rem(size_of::()) 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4243:34 1199s | 1199s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 1199s 4243 + let expected_len = match size_of::().checked_mul(count) { 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4268:34 1199s | 1199s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 1199s 4268 + let expected_len = match size_of::().checked_mul(count) { 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4795:25 1199s | 1199s 4795 | let elem_size = mem::size_of::(); 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4795 - let elem_size = mem::size_of::(); 1199s 4795 + let elem_size = size_of::(); 1199s | 1199s 1199s warning: unnecessary qualification 1199s --> /tmp/tmp.B0Z7khCz5O/registry/zerocopy-0.7.34/src/lib.rs:4825:25 1199s | 1199s 4825 | let elem_size = mem::size_of::(); 1199s | ^^^^^^^^^^^^^^^^^ 1199s | 1199s help: remove the unnecessary path segments 1199s | 1199s 4825 - let elem_size = mem::size_of::(); 1199s 4825 + let elem_size = size_of::(); 1199s | 1199s 1200s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 1200s Compiling ppv-lite86 v0.2.20 1200s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=2fed0a76dbecf87b -C extra-filename=-2fed0a76dbecf87b --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern zerocopy=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-0397100a42c241b0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1200s Compiling rand_chacha v0.3.1 1200s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 1200s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=9f13d5fc363da7ec -C extra-filename=-9f13d5fc363da7ec --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern ppv_lite86=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-2fed0a76dbecf87b.rmeta --extern rand_core=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1200s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 1200s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps OUT_DIR=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a2cbddc2149c38b8 -C extra-filename=-a2cbddc2149c38b8 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern thiserror_impl=/tmp/tmp.B0Z7khCz5O/target/release/deps/libthiserror_impl-3b2db9dbc1460002.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 1200s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 1200s Compiling tokio-macros v2.5.0 1200s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio_macros CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/tokio-macros-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/tokio-macros-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Tokio'\''s proc macros. 1200s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-macros CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=2.5.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/tokio-macros-2.5.0 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name tokio_macros --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/tokio-macros-2.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=cc1b943c02aa4c24 -C extra-filename=-cc1b943c02aa4c24 --out-dir /tmp/tmp.B0Z7khCz5O/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern proc_macro2=/tmp/tmp.B0Z7khCz5O/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.B0Z7khCz5O/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.B0Z7khCz5O/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 1201s Compiling rand v0.8.5 1201s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 1201s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=41ce1892aa719892 -C extra-filename=-41ce1892aa719892 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern libc=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-9f13d5fc363da7ec.rmeta --extern rand_core=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/lib.rs:52:13 1201s | 1201s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s = note: `#[warn(unexpected_cfgs)]` on by default 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/lib.rs:53:13 1201s | 1201s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1201s | ^^^^^^^ 1201s | 1201s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/lib.rs:181:12 1201s | 1201s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/mod.rs:116:12 1201s | 1201s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `features` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 1201s | 1201s 162 | #[cfg(features = "nightly")] 1201s | ^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: see for more information about checking conditional configuration 1201s help: there is a config with a similar name and value 1201s | 1201s 162 | #[cfg(feature = "nightly")] 1201s | ~~~~~~~ 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:15:7 1201s | 1201s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:156:7 1201s | 1201s 156 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:158:7 1201s | 1201s 158 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:160:7 1201s | 1201s 160 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:162:7 1201s | 1201s 162 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:165:7 1201s | 1201s 165 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:167:7 1201s | 1201s 167 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/float.rs:169:7 1201s | 1201s 169 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:13:32 1201s | 1201s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:15:35 1201s | 1201s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:19:7 1201s | 1201s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:112:7 1201s | 1201s 112 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:142:7 1201s | 1201s 142 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:144:7 1201s | 1201s 144 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:146:7 1201s | 1201s 146 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:148:7 1201s | 1201s 148 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:150:7 1201s | 1201s 150 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:152:7 1201s | 1201s 152 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/integer.rs:155:5 1201s | 1201s 155 | feature = "simd_support", 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:11:7 1201s | 1201s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:144:7 1201s | 1201s 144 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `std` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:235:11 1201s | 1201s 235 | #[cfg(not(std))] 1201s | ^^^ help: found config with similar value: `feature = "std"` 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:363:7 1201s | 1201s 363 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:423:7 1201s | 1201s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 1201s | ^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:424:7 1201s | 1201s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 1201s | ^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:425:7 1201s | 1201s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 1201s | ^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:426:7 1201s | 1201s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 1201s | ^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:427:7 1201s | 1201s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 1201s | ^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:428:7 1201s | 1201s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 1201s | ^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:429:7 1201s | 1201s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 1201s | ^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `std` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1201s | 1201s 291 | #[cfg(not(std))] 1201s | ^^^ help: found config with similar value: `feature = "std"` 1201s ... 1201s 359 | scalar_float_impl!(f32, u32); 1201s | ---------------------------- in this macro invocation 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1201s 1201s warning: unexpected `cfg` condition name: `std` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1201s | 1201s 291 | #[cfg(not(std))] 1201s | ^^^ help: found config with similar value: `feature = "std"` 1201s ... 1201s 360 | scalar_float_impl!(f64, u64); 1201s | ---------------------------- in this macro invocation 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 1201s | 1201s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 1201s | 1201s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 1201s | 1201s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 1201s | 1201s 572 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 1201s | 1201s 679 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 1201s | 1201s 687 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 1201s | 1201s 696 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 1201s | 1201s 706 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 1201s | 1201s 1001 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 1201s | 1201s 1003 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 1201s | 1201s 1005 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 1201s | 1201s 1007 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 1201s | 1201s 1010 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 1201s | 1201s 1012 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition value: `simd_support` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 1201s | 1201s 1014 | #[cfg(feature = "simd_support")] 1201s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1201s | 1201s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1201s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/rng.rs:395:12 1201s | 1201s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/rngs/mod.rs:99:12 1201s | 1201s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/rngs/mod.rs:118:12 1201s | 1201s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/rngs/std.rs:32:12 1201s | 1201s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/rngs/thread.rs:60:12 1201s | 1201s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/rngs/thread.rs:87:12 1201s | 1201s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/mod.rs:29:12 1201s | 1201s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/mod.rs:623:12 1201s | 1201s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/index.rs:276:12 1201s | 1201s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/mod.rs:114:16 1201s | 1201s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/mod.rs:142:16 1201s | 1201s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/mod.rs:170:16 1201s | 1201s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/mod.rs:219:16 1201s | 1201s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: unexpected `cfg` condition name: `doc_cfg` 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/seq/mod.rs:465:16 1201s | 1201s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1201s | ^^^^^^^ 1201s | 1201s = help: consider using a Cargo feature instead 1201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1201s [lints.rust] 1201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1201s = note: see for more information about checking conditional configuration 1201s 1201s warning: trait `Float` is never used 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:238:18 1201s | 1201s 238 | pub(crate) trait Float: Sized { 1201s | ^^^^^ 1201s | 1201s = note: `#[warn(dead_code)]` on by default 1201s 1201s warning: associated items `lanes`, `extract`, and `replace` are never used 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:247:8 1201s | 1201s 245 | pub(crate) trait FloatAsSIMD: Sized { 1201s | ----------- associated items in this trait 1201s 246 | #[inline(always)] 1201s 247 | fn lanes() -> usize { 1201s | ^^^^^ 1201s ... 1201s 255 | fn extract(self, index: usize) -> Self { 1201s | ^^^^^^^ 1201s ... 1201s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 1201s | ^^^^^^^ 1201s 1201s warning: method `all` is never used 1201s --> /tmp/tmp.B0Z7khCz5O/registry/rand-0.8.5/src/distributions/utils.rs:268:8 1201s | 1201s 266 | pub(crate) trait BoolAsSIMD: Sized { 1201s | ---------- method in this trait 1201s 267 | fn any(self) -> bool; 1201s 268 | fn all(self) -> bool; 1201s | ^^^ 1201s 1202s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 1202s Compiling oxrdf v0.2.4 1202s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 1202s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=8a09a8efe1aa7283 -C extra-filename=-8a09a8efe1aa7283 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern oxilangtag=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern rand=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/librand-41ce1892aa719892.rmeta --extern thiserror=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1202s warning: `rand` (lib) generated 70 warnings (1 duplicate) 1202s Compiling tokio v1.43.0 1202s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/tokio-1.43.0 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/tokio-1.43.0/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O 1202s backed applications. 1202s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.43.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=43 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/tokio-1.43.0 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name tokio --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/tokio-1.43.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="macros"' --cfg 'feature="rt"' --cfg 'feature="tokio-macros"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "mio", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "test-util", "time", "tokio-macros", "tracing"))' -C metadata=bba2fec50ae61c26 -C extra-filename=-bba2fec50ae61c26 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern pin_project_lite=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern tokio_macros=/tmp/tmp.B0Z7khCz5O/target/release/deps/libtokio_macros-cc1b943c02aa4c24.so --cap-lints warn -Ctarget-feature=+backchain` 1205s warning: `tokio` (lib) generated 1 warning (1 duplicate) 1205s Compiling json-event-parser v0.2.0 1205s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=json_event_parser CARGO_MANIFEST_DIR=/tmp/tmp.B0Z7khCz5O/registry/json-event-parser-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.B0Z7khCz5O/registry/json-event-parser-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A JSON event parser and serializer 1205s ' CARGO_PKG_HOMEPAGE='https://github.com/oxigraph/json-event-parser' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=json-event-parser CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/json-event-parser' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.B0Z7khCz5O/registry/json-event-parser-0.2.0 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name json_event_parser --edition=2021 /tmp/tmp.B0Z7khCz5O/registry/json-event-parser-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio"))' -C metadata=5c64a36fa2d34345 -C extra-filename=-5c64a36fa2d34345 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1206s warning: `json-event-parser` (lib) generated 1 warning (1 duplicate) 1208s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 1208s Compiling sparesults v0.2.4 (/usr/share/cargo/registry/sparesults-0.2.4) 1208s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sparesults CARGO_MANIFEST_DIR=/usr/share/cargo/registry/sparesults-0.2.4 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/sparesults-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='SPARQL query results formats parsers and serializers 1208s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparesults CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparesults' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/sparesults-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.B0Z7khCz5O/target/release/deps rustc --crate-name sparesults --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=1f279306eb6b0587 -C extra-filename=-1f279306eb6b0587 --out-dir /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.B0Z7khCz5O/target/release/deps --extern json_event_parser=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libjson_event_parser-5c64a36fa2d34345.rlib --extern memchr=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rlib --extern oxrdf=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-8a09a8efe1aa7283.rlib --extern quick_xml=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libquick_xml-759ace41c505d51b.rlib --extern thiserror=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libthiserror-a2cbddc2149c38b8.rlib --extern tokio=/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/libtokio-bba2fec50ae61c26.rlib -Ctarget-feature=+backchain` 1210s warning: `sparesults` (lib test) generated 1 warning (1 duplicate) 1210s Finished `release` profile [optimized] target(s) in 17.12s 1210s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/sparesults-0.2.4 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/sparesults-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='SPARQL query results formats parsers and serializers 1210s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparesults CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparesults' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.B0Z7khCz5O/target/s390x-unknown-linux-gnu/release/deps/sparesults-1f279306eb6b0587` 1210s 1210s running 9 tests 1210s test csv::tests::test_csv_serialization ... ok 1210s test csv::tests::test_no_columns_csv_serialization ... ok 1210s test csv::tests::test_no_columns_tsv_parsing ... ok 1210s test csv::tests::test_no_columns_tsv_serialization ... ok 1210s test csv::tests::test_no_results_csv_serialization ... ok 1210s test csv::tests::test_no_results_tsv_parsing ... ok 1210s test csv::tests::test_no_results_tsv_serialization ... ok 1210s test csv::tests::test_tsv_roundtrip ... ok 1210s test csv::tests::test_bad_tsv ... ok 1210s 1210s test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 1210s 1210s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 1210s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 1210s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 1210s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 1210s autopkgtest: DBG: testbed command exited with code 0 1210s autopkgtest [01:47:03]: test rust-sparesults:default: -----------------------] 1210s autopkgtest: DBG: testbed executing test finished with exit status 0 1210s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparesults%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-sparesults%3Adefault-stdout 1211s autopkgtest: DBG: got reply from testbed: ok 1211s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparesults%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-sparesults%3Adefault-stderr 1211s autopkgtest: DBG: got reply from testbed: ok 1211s rust-sparesults:default PASS 1211s autopkgtest [01:47:04]: test rust-sparesults:default: - - - - - - - - - - results - - - - - - - - - - 1211s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparesults%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 1211s autopkgtest: DBG: got reply from testbed: ok 1211s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-sparesults:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1211s autopkgtest: DBG: testbed command exited with code 0 1211s autopkgtest [01:47:04]: test rust-spareval:default: preparing testbed 1211s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-sparesults-0.2+default-dev'], deps_new=['dh-rust', 'librust-spareval-0.1+default-dev'] 1211s autopkgtest: DBG: testbed reset 1211s autopkgtest: DBG: sending command to testbed: revert 1312s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 1312s autopkgtest: DBG: sending command to testbed: print-execute-command 1312s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 1312s autopkgtest: DBG: sending command to testbed: capabilities 1312s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 1312s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 1312s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1312s autopkgtest: DBG: testbed command exited with code 0 1312s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 1313s autopkgtest: DBG: got reply from testbed: ok 1313s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest [01:48:46]: testbed dpkg architecture: s390x 1313s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest [01:48:46]: testbed apt version: 2.9.28 1313s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest: DBG: testbed has eatmydata 1313s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest [01:48:46]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1313s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1314s autopkgtest: DBG: testbed command exited with code 0 1314s autopkgtest [01:48:47]: testbed release detected to be: plucky 1314s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 1314s autopkgtest: DBG: testbed command exited with code 0 1314s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 1314s autopkgtest: DBG: testbed command exited with code 0 1314s autopkgtest: DBG: adding APT source: Types: deb deb-src 1314s URIs: http://ftpmaster.internal/ubuntu/ 1314s Suites: plucky-proposed 1314s Components: main restricted universe multiverse 1314s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1314s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 1314s autopkgtest: DBG: testbed command exited with code 0 1314s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1314s Package: * 1314s Pin: release plucky-proposed 1314s Pin-Priority: 500 1314s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 1314s autopkgtest: DBG: testbed command exited with code 0 1314s autopkgtest [01:48:47]: updating testbed package index (apt update) 1314s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1315s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1315s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1316s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1316s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1316s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1316s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 1316s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 1316s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 1316s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 1316s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1316s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 1316s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 1317s Fetched 2083 kB in 2s (1009 kB/s) 1317s Reading package lists... 1317s autopkgtest: DBG: testbed command exited with code 0 1317s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1317s Package: * 1317s Pin: release plucky-proposed 1317s Pin-Priority: 100 1317s 1317s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 1317s Pin: release plucky-proposed 1317s Pin-Priority: 995 1317s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1317s autopkgtest: DBG: testbed command exited with code 0 1317s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1318s autopkgtest: DBG: testbed command exited with code 0 1318s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1318s + lsb_release --codename --short 1318s + RELEASE=plucky 1318s + cat 1318s + [ plucky != trusty ] 1318s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1318s Reading package lists... 1318s Building dependency tree... 1318s Reading state information... 1318s Calculating upgrade... 1318s The following packages were automatically installed and are no longer required: 1318s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1318s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1318s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1318s linux-tools-6.11.0-8-generic 1318s Use 'sudo apt autoremove' to remove them. 1318s The following packages will be upgraded: 1318s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 1318s libxdmcp6 1318s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1318s Need to get 1471 kB of archives. 1318s After this operation, 24.6 kB of additional disk space will be used. 1318s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 1318s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 1318s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 1318s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 1319s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 1319s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 1319s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 1319s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 1319s Preconfiguring packages ... 1319s Fetched 1471 kB in 1s (1862 kB/s) 1319s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1319s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 1319s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 1319s Setting up dash (0.5.12-12ubuntu1) ... 1319s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1319s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 1319s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1319s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 1319s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1319s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 1319s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1319s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 1319s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1319s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 1320s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1320s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 1320s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1320s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 1320s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1320s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 1320s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 1320s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 1320s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 1320s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 1320s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 1320s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 1320s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 1320s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 1320s Setting up libtasn1-6:s390x (4.20.0-2) ... 1320s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1320s Processing triggers for man-db (2.13.0-1) ... 1320s Processing triggers for debianutils (5.21) ... 1320s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1320s + /usr/lib/apt/apt-helper analyze-pattern ?true 1320s + uname -r 1320s + sed s/\./\\./g 1320s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1320s + apt list ?obsolete 1320s + tail -n+2 1320s + grep -v ^linux-.*6\.12\.0-15-generic.* 1320s + cut -d/ -f1 1320s + true 1320s + obsolete_pkgs= 1320s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1320s Reading package lists... 1321s Building dependency tree... 1321s Reading state information... 1321s The following packages will be REMOVED: 1321s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1321s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1321s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1321s linux-tools-6.11.0-8-generic* 1321s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 1321s After this operation, 167 MB disk space will be freed. 1321s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1321s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1321s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1321s Removing libpython3.12t64:s390x (3.12.9-1) ... 1321s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1321s Removing libnsl2:s390x (1.3.0-3build3) ... 1321s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1321s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1321s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1322s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1322s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1322s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1322s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1322s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1322s + grep -q trusty /etc/lsb-release 1322s + [ ! -d /usr/share/doc/unattended-upgrades ] 1322s + [ ! -d /usr/share/doc/lxd ] 1322s + [ ! -d /usr/share/doc/lxd-client ] 1322s + [ ! -d /usr/share/doc/snapd ] 1322s + type iptables 1322s + cat 1322s + chmod 755 /etc/rc.local 1322s + . /etc/rc.local 1322s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1322s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1322s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1322s + uname -m 1322s + [ s390x = ppc64le ] 1322s + [ -d /run/systemd/system ] 1322s + systemd-detect-virt --quiet --vm 1322s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1322s + cat 1322s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1322s + echo COMPRESS=lz4 1322s autopkgtest: DBG: testbed command exited with code 0 1322s autopkgtest [01:48:55]: upgrading testbed (apt dist-upgrade and autopurge) 1322s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1323s Reading package lists... 1323s Building dependency tree... 1323s Reading state information... 1323s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1323s Starting 2 pkgProblemResolver with broken count: 0 1323s Done 1323s Entering ResolveByKeep 1323s 1323s The following packages will be upgraded: 1323s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 1324s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1324s Need to get 10.7 MB of archives. 1324s After this operation, 305 kB of additional disk space will be used. 1324s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 1324s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 1324s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 1325s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 1325s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 1325s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1326s Preconfiguring packages ... 1326s Fetched 10.7 MB in 2s (5463 kB/s) 1326s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 1326s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 1326s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1326s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 1326s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1326s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 1326s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1326s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 1326s Checking for services that may need to be restarted... 1326s Checking init scripts... 1326s Checking for services that may need to be restarted... 1326s Checking init scripts... 1326s Stopping some services possibly affected by the upgrade (will be restarted later): 1326s cron: stopping...done. 1326s 1326s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1326s Setting up libc6:s390x (2.41-1ubuntu1) ... 1326s Checking for services that may need to be restarted... 1326s Checking init scripts... 1326s Restarting services possibly affected by the upgrade: 1326s cron: restarting...done. 1326s 1326s Services restarted successfully. 1326s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1326s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 1326s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1326s Setting up libc-bin (2.41-1ubuntu1) ... 1326s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1326s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1326s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1327s Setting up iproute2 (6.13.0-1ubuntu1) ... 1327s Setting up locales (2.41-1ubuntu1) ... 1327s Installing new version of config file /etc/locale.alias ... 1327s Generating locales (this might take a while)... 1328s en_US.UTF-8... done 1328s Generation complete. 1328s Setting up libc-dev-bin (2.41-1ubuntu1) ... 1328s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 1328s Processing triggers for man-db (2.13.0-1) ... 1329s Processing triggers for systemd (257.2-3ubuntu1) ... 1329s autopkgtest: DBG: testbed command exited with code 0 1329s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1330s Reading package lists... 1330s Building dependency tree... 1330s Reading state information... 1330s Starting pkgProblemResolver with broken count: 0 1330s Starting 2 pkgProblemResolver with broken count: 0 1330s Done 1330s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1330s autopkgtest: DBG: testbed command exited with code 0 1330s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1330s autopkgtest: DBG: testbed command exited with code 1 1330s autopkgtest [01:49:03]: rebooting testbed after setup commands that affected boot 1330s autopkgtest: DBG: sending command to testbed: reboot 1347s autopkgtest: DBG: got reply from testbed: ok 1347s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1347s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1347s autopkgtest: DBG: testbed command exited with code 0 1347s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1348s autopkgtest: DBG: got reply from testbed: ok 1348s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1348s autopkgtest: DBG: testbed command exited with code 0 1348s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1348s autopkgtest: DBG: testbed command exited with code 0 1348s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1348s autopkgtest: DBG: testbed command exited with code 0 1348s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1348s autopkgtest: DBG: testbed command exited with code 0 1348s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1348s autopkgtest: DBG: got reply from testbed: ok 1348s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 1349s autopkgtest: DBG: got reply from testbed: ok 1349s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1349s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1350s autopkgtest: DBG: got reply from testbed: ok 1350s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1350s autopkgtest: DBG: testbed command exited with code 0 1350s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1350s autopkgtest: DBG: testbed command exited with code 0 1350s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1350s autopkgtest: DBG: testbed command exited with code 0 1350s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1350s autopkgtest: DBG: testbed command exited with code 0 1350s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1351s autopkgtest: DBG: got reply from testbed: ok 1351s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1351s autopkgtest: DBG: testbed command exited with code 0 1351s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1351s autopkgtest: DBG: testbed command exited with code 0 1351s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1351s autopkgtest: DBG: testbed command exited with code 0 1351s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1351s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-spareval-0.1+default-dev'] 1351s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-spareval-0.1+default-dev 1351s autopkgtest: DBG: can use apt-get on testbed: True 1351s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-spareval-0.1+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1351s Reading package lists... 1351s Building dependency tree... 1351s Reading state information... 1352s Starting pkgProblemResolver with broken count: 0 1352s Starting 2 pkgProblemResolver with broken count: 0 1352s Done 1352s The following NEW packages will be installed: 1352s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 1352s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 1352s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 1352s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 1352s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 1352s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 1352s librust-addr2line-dev librust-adler-dev librust-ahash-dev 1352s librust-aho-corasick-dev librust-allocator-api2-dev librust-arbitrary-dev 1352s librust-autocfg-dev librust-backtrace-dev librust-blobby-dev 1352s librust-block-buffer-dev librust-bumpalo-dev librust-byteorder-dev 1352s librust-bytes-dev librust-cc-dev librust-cfg-if-dev 1352s librust-compiler-builtins-dev librust-const-oid-dev librust-const-random-dev 1352s librust-const-random-macro-dev librust-cpp-demangle-dev 1352s librust-cpufeatures-dev librust-crc32fast-dev librust-critical-section-dev 1352s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 1352s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 1352s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 1352s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 1352s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 1352s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 1352s librust-hashbrown-dev librust-hex-dev librust-indexmap-dev librust-itoa-dev 1352s librust-jobserver-dev librust-js-sys-dev librust-json-event-parser-dev 1352s librust-libc-dev librust-libz-sys-dev librust-lock-api-dev librust-log-dev 1352s librust-md-5-dev librust-md5-asm-dev librust-memchr-dev librust-memmap2-dev 1352s librust-miniz-oxide-dev librust-mio-dev librust-no-panic-dev 1352s librust-object-dev librust-once-cell-dev librust-owning-ref-dev 1352s librust-oxilangtag-dev librust-oxiri-dev librust-oxrdf-dev 1352s librust-oxsdatatypes-dev librust-parking-lot-core-dev 1352s librust-parking-lot-dev librust-peg-dev librust-peg-macros-dev 1352s librust-peg-runtime-dev librust-pin-project-lite-dev librust-pkg-config-dev 1352s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 1352s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 1352s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 1352s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 1352s librust-rayon-core-dev librust-rayon-dev librust-regex-automata-dev 1352s librust-regex-dev librust-regex-syntax-dev librust-rustc-demangle-dev 1352s librust-rustc-hash-2-dev librust-rustc-std-workspace-core-dev 1352s librust-ruzstd-dev librust-ryu-dev librust-scopeguard-dev 1352s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 1352s librust-serde-json-dev librust-serde-test-dev librust-sha1-asm-dev 1352s librust-sha1-dev librust-sha2-asm-dev librust-sha2-dev librust-shlex-dev 1352s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 1352s librust-sparesults-dev librust-spargebra-dev librust-stable-deref-trait-dev 1352s librust-static-assertions-dev librust-subtle-dev librust-sval-buffer-dev 1352s librust-sval-derive-dev librust-sval-dev librust-sval-dynamic-dev 1352s librust-sval-fmt-dev librust-sval-ref-dev librust-sval-serde-dev 1352s librust-syn-1-dev librust-syn-dev librust-thiserror-1-dev 1352s librust-thiserror-impl-1-dev librust-tiny-keccak-dev librust-tokio-dev 1352s librust-tokio-macros-dev librust-tracing-attributes-dev 1352s librust-tracing-core-dev librust-tracing-dev librust-twox-hash-dev 1352s librust-typed-arena-dev librust-typenum-dev librust-unicode-ident-dev 1352s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 1352s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 1352s librust-version-check-dev librust-wasm-bindgen-backend-dev 1352s librust-wasm-bindgen-dev librust-wasm-bindgen-macro-dev 1352s librust-wasm-bindgen-macro-support-dev librust-wasm-bindgen-shared-dev 1352s librust-zerocopy-derive-dev librust-zerocopy-dev librust-zeroize-derive-dev 1352s librust-zeroize-dev libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 1352s m4 pkgconf pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 1352s 0 upgraded, 193 newly installed, 0 to remove and 0 not upgraded. 1352s Need to get 138 MB of archives. 1352s After this operation, 544 MB of additional disk space will be used. 1352s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 1352s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 1352s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 1353s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 1353s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 1353s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 1353s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 1355s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 1356s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 1356s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 1356s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 1356s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 1356s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 1356s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 1356s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 1356s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 1356s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 1356s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 1356s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 1356s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 1356s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 1357s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 1357s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 1357s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 1357s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 1357s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 1357s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 1357s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 1357s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 1357s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 1357s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 1357s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 1357s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 1357s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 1357s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 1357s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 1357s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 1357s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 1357s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 1357s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 1357s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 1357s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 1357s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 1357s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 1357s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 1357s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 1357s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 1357s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 1357s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 1357s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 1357s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 1357s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 1357s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 1357s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 1357s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 1357s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 1357s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 1357s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 1357s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 1357s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 1357s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 1357s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 1357s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 1357s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 1357s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 1357s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 1357s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 1358s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 1358s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 1358s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 1358s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 1358s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 1358s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 1358s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 1358s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 1358s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 1358s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 1358s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 1358s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 1358s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 1358s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 1358s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 1358s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 1358s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 1358s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 1358s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 1358s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 1358s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 1358s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 1358s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 1358s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 1358s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 1358s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 1358s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 1358s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 1358s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 1358s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 1358s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 1358s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 1358s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 1358s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 1358s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 1358s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 1358s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 1358s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 1358s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 1359s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 1359s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 1359s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 1359s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 1359s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 1359s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 1359s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 1359s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 1359s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 1359s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 1359s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 1359s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 1359s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 1359s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 1359s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 1359s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 1359s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 1359s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 1359s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 1359s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 1359s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 1359s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 1359s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 1359s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 1359s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 1359s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 1359s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 1359s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 1359s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 1359s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 1359s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 1359s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 1359s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 1359s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 1359s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 1359s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 1359s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 1359s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 1359s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 1359s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpufeatures-dev s390x 0.2.16-1 [15.5 kB] 1359s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 1359s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hex-dev s390x 0.4.3-2 [15.7 kB] 1359s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 1359s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 1359s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 1359s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 1359s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 1359s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 1359s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 1359s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 1359s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 1359s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 1359s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 1359s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 1359s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 1359s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 1359s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 1359s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 1359s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 1359s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 1359s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 1359s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 1359s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 1359s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 1359s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-json-event-parser-dev all 0.2.0-6 [16.6 kB] 1359s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md5-asm-dev s390x 0.5.0-2 [7516 B] 1359s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md-5-dev s390x 0.10.6-1 [17.5 kB] 1359s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 1359s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 1359s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 1359s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 1360s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 1360s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 1360s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 1360s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-runtime-dev all 0.8.3+0.8.4-3 [7008 B] 1360s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-macros-dev all 0.8.4-3 [24.4 kB] 1360s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-dev all 0.8.4-3 [21.0 kB] 1360s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 1360s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 1360s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 1360s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hash-2-dev s390x 2.0.0-1 [14.4 kB] 1360s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-asm-dev s390x 0.5.1-2 [8060 B] 1360s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-dev s390x 0.10.6-1 [16.0 kB] 1360s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-asm-dev s390x 0.6.2-2 [14.4 kB] 1360s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-dev s390x 0.10.8-1 [25.6 kB] 1360s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sparesults-dev all 0.4.0~really0.2.4+0.4.7-4build1 [27.4 kB] 1360s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spargebra-dev all 0.4.0~really0.3.4+0.4.7-4build1 [75.0 kB] 1360s Fetched 138 MB in 8s (17.9 MB/s) 1360s Selecting previously unselected package m4. 1360s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1360s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 1360s Unpacking m4 (1.4.19-5) ... 1360s Selecting previously unselected package autoconf. 1360s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 1360s Unpacking autoconf (2.72-3) ... 1360s Selecting previously unselected package autotools-dev. 1360s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 1360s Unpacking autotools-dev (20220109.1) ... 1360s Selecting previously unselected package automake. 1360s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 1360s Unpacking automake (1:1.17-3) ... 1360s Selecting previously unselected package autopoint. 1360s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 1360s Unpacking autopoint (0.23.1-1) ... 1361s Selecting previously unselected package libgit2-1.8:s390x. 1361s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 1361s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1361s Selecting previously unselected package libstd-rust-1.83:s390x. 1361s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1361s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1361s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 1361s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1361s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1362s Selecting previously unselected package libisl23:s390x. 1362s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 1362s Unpacking libisl23:s390x (0.27-1) ... 1362s Selecting previously unselected package libmpc3:s390x. 1362s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 1362s Unpacking libmpc3:s390x (1.3.1-1build2) ... 1362s Selecting previously unselected package cpp-14-s390x-linux-gnu. 1362s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package cpp-14. 1362s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package cpp-s390x-linux-gnu. 1362s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1362s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1362s Selecting previously unselected package cpp. 1362s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 1362s Unpacking cpp (4:14.2.0-1ubuntu1) ... 1362s Selecting previously unselected package libcc1-0:s390x. 1362s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package libgomp1:s390x. 1362s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package libitm1:s390x. 1362s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package libasan8:s390x. 1362s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package libubsan1:s390x. 1362s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package libgcc-14-dev:s390x. 1362s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package gcc-14-s390x-linux-gnu. 1362s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package gcc-14. 1362s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 1362s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 1362s Selecting previously unselected package gcc-s390x-linux-gnu. 1362s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1362s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1362s Selecting previously unselected package gcc. 1362s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 1362s Unpacking gcc (4:14.2.0-1ubuntu1) ... 1362s Selecting previously unselected package rustc-1.83. 1362s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1362s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1363s Selecting previously unselected package cargo-1.83. 1363s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1363s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1363s Selecting previously unselected package libdebhelper-perl. 1363s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 1363s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 1363s Selecting previously unselected package libtool. 1363s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 1363s Unpacking libtool (2.5.4-3build1) ... 1363s Selecting previously unselected package dh-autoreconf. 1363s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 1363s Unpacking dh-autoreconf (20) ... 1363s Selecting previously unselected package libarchive-zip-perl. 1363s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 1363s Unpacking libarchive-zip-perl (1.68-1) ... 1363s Selecting previously unselected package libfile-stripnondeterminism-perl. 1363s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 1363s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 1363s Selecting previously unselected package dh-strip-nondeterminism. 1363s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 1363s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 1363s Selecting previously unselected package debugedit. 1363s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 1363s Unpacking debugedit (1:5.1-2) ... 1363s Selecting previously unselected package dwz. 1363s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 1363s Unpacking dwz (0.15-1build6) ... 1363s Selecting previously unselected package gettext. 1363s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 1363s Unpacking gettext (0.23.1-1) ... 1363s Selecting previously unselected package intltool-debian. 1363s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 1363s Unpacking intltool-debian (0.35.0+20060710.6) ... 1363s Selecting previously unselected package po-debconf. 1363s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 1363s Unpacking po-debconf (1.0.21+nmu1) ... 1363s Selecting previously unselected package debhelper. 1363s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 1363s Unpacking debhelper (13.24.1ubuntu2) ... 1363s Selecting previously unselected package rustc. 1363s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 1363s Unpacking rustc (1.83.0ubuntu1) ... 1363s Selecting previously unselected package cargo. 1363s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 1363s Unpacking cargo (1.83.0ubuntu1) ... 1363s Selecting previously unselected package dh-rust. 1363s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 1363s Unpacking dh-rust (0.0.11) ... 1363s Selecting previously unselected package libpkgconf3:s390x. 1363s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 1363s Unpacking libpkgconf3:s390x (1.8.1-4) ... 1363s Selecting previously unselected package librust-cfg-if-dev:s390x. 1363s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 1363s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 1363s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 1363s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 1363s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1363s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 1363s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 1363s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1363s Selecting previously unselected package librust-unicode-ident-dev:s390x. 1363s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 1363s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 1363s Selecting previously unselected package librust-proc-macro2-dev:s390x. 1363s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 1363s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 1363s Selecting previously unselected package librust-quote-dev:s390x. 1363s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 1363s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 1363s Selecting previously unselected package librust-syn-dev:s390x. 1363s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 1363s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 1363s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 1363s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 1363s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1363s Selecting previously unselected package librust-arbitrary-dev:s390x. 1363s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 1363s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 1363s Selecting previously unselected package librust-equivalent-dev:s390x. 1363s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 1363s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 1363s Selecting previously unselected package librust-critical-section-dev:s390x. 1363s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 1363s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 1363s Selecting previously unselected package librust-serde-derive-dev:s390x. 1363s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 1363s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 1363s Selecting previously unselected package librust-serde-dev:s390x. 1363s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 1363s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 1363s Selecting previously unselected package librust-portable-atomic-dev:s390x. 1363s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 1363s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 1363s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 1363s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 1363s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1363s Selecting previously unselected package librust-libc-dev:s390x. 1363s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 1363s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 1363s Selecting previously unselected package librust-getrandom-dev:s390x. 1363s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 1363s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 1363s Selecting previously unselected package librust-smallvec-dev:s390x. 1363s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 1363s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 1363s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 1363s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 1363s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1363s Selecting previously unselected package librust-once-cell-dev:s390x. 1363s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 1363s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 1363s Selecting previously unselected package librust-crunchy-dev:s390x. 1363s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 1363s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 1363s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 1363s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 1363s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1363s Selecting previously unselected package librust-const-random-macro-dev:s390x. 1363s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 1363s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 1363s Selecting previously unselected package librust-const-random-dev:s390x. 1363s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 1363s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 1363s Selecting previously unselected package librust-version-check-dev:s390x. 1363s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 1363s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 1363s Selecting previously unselected package librust-byteorder-dev:s390x. 1363s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 1363s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 1363s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 1363s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 1363s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1363s Selecting previously unselected package librust-zerocopy-dev:s390x. 1363s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 1363s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 1363s Selecting previously unselected package librust-ahash-dev. 1363s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 1363s Unpacking librust-ahash-dev (0.8.11-9) ... 1363s Selecting previously unselected package librust-allocator-api2-dev:s390x. 1363s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 1363s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 1363s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 1363s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 1363s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1363s Selecting previously unselected package librust-either-dev:s390x. 1363s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 1363s Unpacking librust-either-dev:s390x (1.13.0-1) ... 1363s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 1363s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 1363s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1363s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 1363s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 1363s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1363s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 1363s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 1363s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1363s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 1363s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 1363s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1363s Selecting previously unselected package librust-rayon-core-dev:s390x. 1363s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 1363s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 1363s Selecting previously unselected package librust-rayon-dev:s390x. 1363s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 1363s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 1363s Selecting previously unselected package librust-hashbrown-dev:s390x. 1363s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 1363s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 1363s Selecting previously unselected package librust-indexmap-dev:s390x. 1363s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 1363s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 1364s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 1364s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 1364s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1364s Selecting previously unselected package librust-gimli-dev:s390x. 1364s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 1364s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 1364s Selecting previously unselected package librust-memmap2-dev:s390x. 1364s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 1364s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 1364s Selecting previously unselected package librust-crc32fast-dev:s390x. 1364s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 1364s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 1364s Selecting previously unselected package pkgconf-bin. 1364s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 1364s Unpacking pkgconf-bin (1.8.1-4) ... 1364s Selecting previously unselected package pkgconf:s390x. 1364s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 1364s Unpacking pkgconf:s390x (1.8.1-4) ... 1364s Selecting previously unselected package librust-pkg-config-dev:s390x. 1364s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 1364s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 1364s Selecting previously unselected package zlib1g-dev:s390x. 1364s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 1364s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1364s Selecting previously unselected package librust-libz-sys-dev:s390x. 1364s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 1364s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 1364s Selecting previously unselected package librust-adler-dev:s390x. 1364s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 1364s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 1364s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 1364s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 1364s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1364s Selecting previously unselected package librust-flate2-dev:s390x. 1364s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 1364s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 1364s Selecting previously unselected package librust-sval-derive-dev:s390x. 1364s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 1364s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 1364s Selecting previously unselected package librust-sval-dev:s390x. 1364s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 1364s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 1364s Selecting previously unselected package librust-sval-ref-dev:s390x. 1364s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 1364s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 1364s Selecting previously unselected package librust-erased-serde-dev:s390x. 1364s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 1364s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 1364s Selecting previously unselected package librust-serde-fmt-dev. 1364s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 1364s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 1364s Selecting previously unselected package librust-no-panic-dev:s390x. 1364s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 1364s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 1364s Selecting previously unselected package librust-itoa-dev:s390x. 1364s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 1364s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 1364s Selecting previously unselected package librust-ryu-dev:s390x. 1364s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 1364s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 1364s Selecting previously unselected package librust-serde-json-dev:s390x. 1364s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 1364s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 1364s Selecting previously unselected package librust-serde-test-dev:s390x. 1364s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 1364s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 1364s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 1364s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 1364s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1364s Selecting previously unselected package librust-sval-buffer-dev:s390x. 1364s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 1364s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 1364s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 1364s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 1364s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1364s Selecting previously unselected package librust-sval-fmt-dev:s390x. 1364s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 1364s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 1364s Selecting previously unselected package librust-sval-serde-dev:s390x. 1364s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 1364s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 1364s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 1364s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 1364s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1364s Selecting previously unselected package librust-value-bag-dev:s390x. 1364s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 1364s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 1364s Selecting previously unselected package librust-log-dev:s390x. 1364s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 1364s Unpacking librust-log-dev:s390x (0.4.22-1) ... 1364s Selecting previously unselected package librust-memchr-dev:s390x. 1364s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 1364s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 1364s Selecting previously unselected package librust-blobby-dev:s390x. 1364s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 1364s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 1364s Selecting previously unselected package librust-typenum-dev:s390x. 1364s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 1364s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 1364s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 1364s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 1364s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1364s Selecting previously unselected package librust-zeroize-dev:s390x. 1364s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 1364s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 1364s Selecting previously unselected package librust-generic-array-dev:s390x. 1364s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 1364s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 1364s Selecting previously unselected package librust-block-buffer-dev:s390x. 1364s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 1364s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 1364s Selecting previously unselected package librust-const-oid-dev:s390x. 1364s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 1364s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 1364s Selecting previously unselected package librust-rand-core-dev:s390x. 1364s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 1364s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 1364s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 1364s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 1364s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1364s Selecting previously unselected package librust-crypto-common-dev:s390x. 1364s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 1364s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 1364s Selecting previously unselected package librust-subtle-dev:s390x. 1364s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 1364s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 1364s Selecting previously unselected package librust-digest-dev:s390x. 1364s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 1364s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 1364s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 1364s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 1364s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1364s Selecting previously unselected package librust-rand-chacha-dev:s390x. 1364s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 1364s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 1364s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 1364s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 1364s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1364s Selecting previously unselected package librust-rand-core+std-dev:s390x. 1364s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 1364s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 1364s Selecting previously unselected package librust-rand-dev:s390x. 1364s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 1364s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 1364s Selecting previously unselected package librust-static-assertions-dev:s390x. 1364s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 1364s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 1364s Selecting previously unselected package librust-twox-hash-dev:s390x. 1364s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 1364s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 1364s Selecting previously unselected package librust-ruzstd-dev:s390x. 1364s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 1364s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 1364s Selecting previously unselected package librust-object-dev:s390x. 1364s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 1364s Unpacking librust-object-dev:s390x (0.36.5-2) ... 1364s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 1364s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 1364s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1364s Selecting previously unselected package librust-typed-arena-dev:s390x. 1364s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 1364s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 1364s Selecting previously unselected package librust-addr2line-dev:s390x. 1364s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 1364s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 1364s Selecting previously unselected package librust-aho-corasick-dev:s390x. 1364s Preparing to unpack .../137-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 1364s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 1364s Selecting previously unselected package librust-autocfg-dev:s390x. 1364s Preparing to unpack .../138-librust-autocfg-dev_1.1.0-1_s390x.deb ... 1364s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 1364s Selecting previously unselected package librust-backtrace-dev:s390x. 1364s Preparing to unpack .../139-librust-backtrace-dev_0.3.74-3_s390x.deb ... 1364s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 1364s Selecting previously unselected package librust-bumpalo-dev:s390x. 1364s Preparing to unpack .../140-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 1364s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 1364s Selecting previously unselected package librust-bytes-dev:s390x. 1364s Preparing to unpack .../141-librust-bytes-dev_1.9.0-1_s390x.deb ... 1364s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 1364s Selecting previously unselected package librust-jobserver-dev:s390x. 1364s Preparing to unpack .../142-librust-jobserver-dev_0.1.32-1_s390x.deb ... 1364s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 1364s Selecting previously unselected package librust-shlex-dev:s390x. 1364s Preparing to unpack .../143-librust-shlex-dev_1.3.0-1_s390x.deb ... 1364s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 1364s Selecting previously unselected package librust-cc-dev:s390x. 1364s Preparing to unpack .../144-librust-cc-dev_1.1.14-1_s390x.deb ... 1364s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 1364s Selecting previously unselected package librust-cpufeatures-dev:s390x. 1364s Preparing to unpack .../145-librust-cpufeatures-dev_0.2.16-1_s390x.deb ... 1364s Unpacking librust-cpufeatures-dev:s390x (0.2.16-1) ... 1364s Selecting previously unselected package librust-encoding-rs-dev:s390x. 1364s Preparing to unpack .../146-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 1364s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 1364s Selecting previously unselected package librust-hex-dev:s390x. 1364s Preparing to unpack .../147-librust-hex-dev_0.4.3-2_s390x.deb ... 1364s Unpacking librust-hex-dev:s390x (0.4.3-2) ... 1364s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 1364s Preparing to unpack .../148-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 1364s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1364s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 1364s Preparing to unpack .../149-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 1364s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1364s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 1364s Preparing to unpack .../150-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 1364s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1364s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 1364s Preparing to unpack .../151-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 1364s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1364s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 1364s Preparing to unpack .../152-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 1364s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1364s Selecting previously unselected package librust-js-sys-dev:s390x. 1364s Preparing to unpack .../153-librust-js-sys-dev_0.3.64-1_s390x.deb ... 1364s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 1365s Selecting previously unselected package librust-mio-dev:s390x. 1365s Preparing to unpack .../154-librust-mio-dev_1.0.2-3_s390x.deb ... 1365s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 1365s Selecting previously unselected package librust-owning-ref-dev:s390x. 1365s Preparing to unpack .../155-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 1365s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 1365s Selecting previously unselected package librust-scopeguard-dev:s390x. 1365s Preparing to unpack .../156-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 1365s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 1365s Selecting previously unselected package librust-lock-api-dev:s390x. 1365s Preparing to unpack .../157-librust-lock-api-dev_0.4.12-1_s390x.deb ... 1365s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 1365s Selecting previously unselected package librust-parking-lot-dev:s390x. 1365s Preparing to unpack .../158-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 1365s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 1365s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 1365s Preparing to unpack .../159-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 1365s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1365s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 1365s Preparing to unpack .../160-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 1365s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1365s Selecting previously unselected package librust-socket2-dev:s390x. 1365s Preparing to unpack .../161-librust-socket2-dev_0.5.8-1_s390x.deb ... 1365s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 1365s Selecting previously unselected package librust-tokio-macros-dev:s390x. 1365s Preparing to unpack .../162-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 1365s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 1365s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 1365s Preparing to unpack .../163-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 1365s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1365s Selecting previously unselected package librust-syn-1-dev:s390x. 1365s Preparing to unpack .../164-librust-syn-1-dev_1.0.109-3_s390x.deb ... 1365s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 1365s Selecting previously unselected package librust-valuable-derive-dev:s390x. 1365s Preparing to unpack .../165-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 1365s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 1365s Selecting previously unselected package librust-valuable-dev:s390x. 1365s Preparing to unpack .../166-librust-valuable-dev_0.1.0-4_s390x.deb ... 1365s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 1365s Selecting previously unselected package librust-tracing-core-dev:s390x. 1365s Preparing to unpack .../167-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 1365s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 1365s Selecting previously unselected package librust-tracing-dev:s390x. 1365s Preparing to unpack .../168-librust-tracing-dev_0.1.40-1_s390x.deb ... 1365s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 1365s Selecting previously unselected package librust-tokio-dev:s390x. 1365s Preparing to unpack .../169-librust-tokio-dev_1.43.0-1_s390x.deb ... 1365s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 1365s Selecting previously unselected package librust-json-event-parser-dev. 1365s Preparing to unpack .../170-librust-json-event-parser-dev_0.2.0-6_all.deb ... 1365s Unpacking librust-json-event-parser-dev (0.2.0-6) ... 1365s Selecting previously unselected package librust-md5-asm-dev:s390x. 1365s Preparing to unpack .../171-librust-md5-asm-dev_0.5.0-2_s390x.deb ... 1365s Unpacking librust-md5-asm-dev:s390x (0.5.0-2) ... 1365s Selecting previously unselected package librust-md-5-dev:s390x. 1365s Preparing to unpack .../172-librust-md-5-dev_0.10.6-1_s390x.deb ... 1365s Unpacking librust-md-5-dev:s390x (0.10.6-1) ... 1365s Selecting previously unselected package librust-oxilangtag-dev. 1365s Preparing to unpack .../173-librust-oxilangtag-dev_0.1.5-4_all.deb ... 1365s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 1365s Selecting previously unselected package librust-oxiri-dev. 1365s Preparing to unpack .../174-librust-oxiri-dev_0.2.11-2_all.deb ... 1365s Unpacking librust-oxiri-dev (0.2.11-2) ... 1365s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 1365s Preparing to unpack .../175-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 1365s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1365s Selecting previously unselected package librust-thiserror-1-dev:s390x. 1365s Preparing to unpack .../176-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 1365s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 1365s Selecting previously unselected package librust-oxsdatatypes-dev. 1365s Preparing to unpack .../177-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 1365s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1365s Selecting previously unselected package librust-quick-xml-dev:s390x. 1365s Preparing to unpack .../178-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 1365s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 1365s Selecting previously unselected package librust-oxrdf-dev. 1365s Preparing to unpack .../179-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1365s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1365s Selecting previously unselected package librust-peg-runtime-dev. 1365s Preparing to unpack .../180-librust-peg-runtime-dev_0.8.3+0.8.4-3_all.deb ... 1365s Unpacking librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1365s Selecting previously unselected package librust-peg-macros-dev. 1365s Preparing to unpack .../181-librust-peg-macros-dev_0.8.4-3_all.deb ... 1365s Unpacking librust-peg-macros-dev (0.8.4-3) ... 1365s Selecting previously unselected package librust-peg-dev. 1365s Preparing to unpack .../182-librust-peg-dev_0.8.4-3_all.deb ... 1365s Unpacking librust-peg-dev (0.8.4-3) ... 1365s Selecting previously unselected package librust-regex-syntax-dev:s390x. 1365s Preparing to unpack .../183-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 1365s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 1365s Selecting previously unselected package librust-regex-automata-dev:s390x. 1365s Preparing to unpack .../184-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 1365s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 1365s Selecting previously unselected package librust-regex-dev:s390x. 1365s Preparing to unpack .../185-librust-regex-dev_1.11.1-2_s390x.deb ... 1365s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 1365s Selecting previously unselected package librust-rustc-hash-2-dev:s390x. 1365s Preparing to unpack .../186-librust-rustc-hash-2-dev_2.0.0-1_s390x.deb ... 1365s Unpacking librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1365s Selecting previously unselected package librust-sha1-asm-dev:s390x. 1365s Preparing to unpack .../187-librust-sha1-asm-dev_0.5.1-2_s390x.deb ... 1365s Unpacking librust-sha1-asm-dev:s390x (0.5.1-2) ... 1365s Selecting previously unselected package librust-sha1-dev:s390x. 1365s Preparing to unpack .../188-librust-sha1-dev_0.10.6-1_s390x.deb ... 1365s Unpacking librust-sha1-dev:s390x (0.10.6-1) ... 1365s Selecting previously unselected package librust-sha2-asm-dev:s390x. 1365s Preparing to unpack .../189-librust-sha2-asm-dev_0.6.2-2_s390x.deb ... 1365s Unpacking librust-sha2-asm-dev:s390x (0.6.2-2) ... 1365s Selecting previously unselected package librust-sha2-dev:s390x. 1365s Preparing to unpack .../190-librust-sha2-dev_0.10.8-1_s390x.deb ... 1365s Unpacking librust-sha2-dev:s390x (0.10.8-1) ... 1365s Selecting previously unselected package librust-sparesults-dev. 1365s Preparing to unpack .../191-librust-sparesults-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1365s Unpacking librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1365s Selecting previously unselected package librust-spargebra-dev. 1365s Preparing to unpack .../192-librust-spargebra-dev_0.4.0~really0.3.4+0.4.7-4build1_all.deb ... 1365s Unpacking librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1365s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1365s Setting up librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1365s Setting up librust-either-dev:s390x (1.13.0-1) ... 1365s Setting up librust-adler-dev:s390x (1.0.2-2) ... 1365s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 1365s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1365s Setting up libarchive-zip-perl (1.68-1) ... 1365s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 1365s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 1365s Setting up m4 (1.4.19-5) ... 1365s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1365s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1365s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 1365s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 1365s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 1365s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1365s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1365s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1365s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1365s Setting up autotools-dev (20220109.1) ... 1365s Setting up libpkgconf3:s390x (1.8.1-4) ... 1365s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1365s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 1365s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1365s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 1365s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 1365s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1365s Setting up libmpc3:s390x (1.3.1-1build2) ... 1365s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 1365s Setting up autopoint (0.23.1-1) ... 1365s Setting up pkgconf-bin (1.8.1-4) ... 1365s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 1365s Setting up autoconf (2.72-3) ... 1365s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 1365s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1365s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 1365s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 1365s Setting up dwz (0.15-1build6) ... 1365s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 1365s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 1365s Setting up debugedit (1:5.1-2) ... 1365s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 1365s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 1365s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 1365s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 1365s Setting up libisl23:s390x (0.27-1) ... 1365s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1365s Setting up librust-hex-dev:s390x (0.4.3-2) ... 1365s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 1365s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1365s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 1365s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 1365s Setting up automake (1:1.17-3) ... 1365s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 1365s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 1365s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1365s Setting up librust-libc-dev:s390x (0.2.169-1) ... 1365s Setting up gettext (0.23.1-1) ... 1365s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1365s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1365s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 1365s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 1365s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 1365s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 1365s Setting up librust-cpufeatures-dev:s390x (0.2.16-1) ... 1365s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 1365s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 1365s Setting up pkgconf:s390x (1.8.1-4) ... 1365s Setting up intltool-debian (0.35.0+20060710.6) ... 1365s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1365s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1365s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 1365s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1365s Setting up cpp-14 (14.2.0-17ubuntu1) ... 1365s Setting up dh-strip-nondeterminism (1.14.1-2) ... 1365s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 1365s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1365s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1365s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 1365s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 1365s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1365s Setting up po-debconf (1.0.21+nmu1) ... 1365s Setting up librust-quote-dev:s390x (1.0.37-1) ... 1365s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 1365s Setting up librust-syn-dev:s390x (2.0.96-2) ... 1365s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 1365s Setting up librust-peg-macros-dev (0.8.4-3) ... 1365s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1365s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1365s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 1365s Setting up librust-cc-dev:s390x (1.1.14-1) ... 1365s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1365s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 1365s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 1365s Setting up cpp (4:14.2.0-1ubuntu1) ... 1365s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 1365s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1365s Setting up librust-sha1-asm-dev:s390x (0.5.1-2) ... 1365s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 1365s Setting up librust-serde-dev:s390x (1.0.217-1) ... 1365s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1365s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1365s Setting up librust-oxilangtag-dev (0.1.5-4) ... 1365s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 1365s Setting up librust-peg-dev (0.8.4-3) ... 1365s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 1365s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1365s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 1365s Setting up librust-serde-fmt-dev (1.0.3-4) ... 1365s Setting up librust-oxiri-dev (0.2.11-2) ... 1365s Setting up librust-sha2-asm-dev:s390x (0.6.2-2) ... 1365s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 1365s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 1365s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 1365s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 1365s Setting up librust-sval-dev:s390x (2.6.1-2) ... 1365s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 1365s Setting up gcc-14 (14.2.0-17ubuntu1) ... 1365s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 1365s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 1365s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1365s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 1365s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 1365s Setting up librust-md5-asm-dev:s390x (0.5.0-2) ... 1365s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 1365s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 1365s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 1365s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 1365s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 1365s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 1365s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1365s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 1365s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1365s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 1365s Setting up libtool (2.5.4-3build1) ... 1365s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 1365s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 1365s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 1365s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 1365s Setting up gcc (4:14.2.0-1ubuntu1) ... 1365s Setting up dh-autoreconf (20) ... 1365s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 1365s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1365s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 1365s Setting up rustc (1.83.0ubuntu1) ... 1365s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1365s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 1365s Setting up librust-digest-dev:s390x (0.10.7-2) ... 1365s Setting up librust-md-5-dev:s390x (0.10.6-1) ... 1365s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 1365s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 1365s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 1365s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 1365s Setting up librust-sha1-dev:s390x (0.10.6-1) ... 1365s Setting up debhelper (13.24.1ubuntu2) ... 1365s Setting up librust-ahash-dev (0.8.11-9) ... 1365s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 1365s Setting up librust-sha2-dev:s390x (0.10.8-1) ... 1365s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1365s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1365s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 1365s Setting up cargo (1.83.0ubuntu1) ... 1365s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 1365s Setting up dh-rust (0.0.11) ... 1365s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 1365s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 1365s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 1365s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1365s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 1365s Setting up librust-log-dev:s390x (0.4.22-1) ... 1365s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 1365s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 1365s Setting up librust-rand-dev:s390x (0.8.5-1) ... 1365s Setting up librust-mio-dev:s390x (1.0.2-3) ... 1365s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1365s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 1365s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1365s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 1365s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1365s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 1365s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1365s Setting up librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1365s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 1365s Setting up librust-regex-dev:s390x (1.11.1-2) ... 1365s Setting up librust-object-dev:s390x (0.36.5-2) ... 1365s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 1365s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1365s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 1365s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 1365s Setting up librust-json-event-parser-dev (0.2.0-6) ... 1365s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 1365s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1365s Setting up librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1365s Setting up librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1365s Processing triggers for install-info (7.1.1-1) ... 1365s Processing triggers for libc-bin (2.41-1ubuntu1) ... 1365s Processing triggers for man-db (2.13.0-1) ... 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-spareval:default-packages.all"], kind short, sout raw, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spareval%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-spareval%3Adefault-packages.all 1367s autopkgtest: DBG: got reply from testbed: ok 1367s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 1368s autopkgtest: DBG: testbed command exited with code 1 1368s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 1368s autopkgtest: DBG: testbed command exited with code 0 1368s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 1370s autopkgtest: DBG: got reply from testbed: ok 1370s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 1370s autopkgtest: DBG: testbed command exited with code 0 1370s autopkgtest [01:49:43]: test rust-spareval:default: /usr/share/dh-rust/bin/cargo-auto-test spareval 0.1.1 --all-targets 1370s autopkgtest [01:49:43]: test rust-spareval:default: [----------------------- 1370s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-spareval:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-spareval:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-spareval:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test spareval 0.1.1 --all-targets'"], kind test, sout raw, serr raw, env [] 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-spareval:default-artifacts 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-spareval:default-stderr 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-spareval:default-stdout 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test spareval 0.1.1 --all-targets 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.olzwE30qmK/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-spareval:default-stdout 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.olzwE30qmK/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-spareval:default-stdout 1370s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 3092 to /tmp/autopkgtest_script_pid 1371s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1371s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1371s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.r0ba6wlcsh/registry/ 1371s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1371s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1371s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 1371s Compiling proc-macro2 v1.0.92 1371s Compiling unicode-ident v1.0.13 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn` 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn` 1371s Compiling cfg-if v1.0.0 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 1371s parameters. Structured like an if-else chain, the first matching branch is the 1371s item that gets emitted. 1371s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1371s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 1371s | 1371s = note: this feature is not stably supported; its behavior can change in the future 1371s 1371s warning: `cfg-if` (lib) generated 1 warning 1371s Compiling libc v0.2.169 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1371s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn` 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.r0ba6wlcsh/target/release/deps:/tmp/tmp.r0ba6wlcsh/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.r0ba6wlcsh/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 1371s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 1371s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 1371s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 1371s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern unicode_ident=/tmp/tmp.r0ba6wlcsh/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1371s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.r0ba6wlcsh/target/release/deps:/tmp/tmp.r0ba6wlcsh/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.r0ba6wlcsh/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 1371s [libc 0.2.169] cargo:rerun-if-changed=build.rs 1371s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 1371s [libc 0.2.169] cargo:rustc-cfg=freebsd11 1371s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 1371s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 1371s Compiling typenum v1.17.0 1371s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 1371s compile time. It currently supports bits, unsigned integers, and signed 1371s integers. It also provides a type-level array of type-level numbers, but its 1371s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=b385270933b2bdce -C extra-filename=-b385270933b2bdce --out-dir /tmp/tmp.r0ba6wlcsh/target/release/build/typenum-b385270933b2bdce -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn` 1372s Compiling quote v1.0.37 1372s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern proc_macro2=/tmp/tmp.r0ba6wlcsh/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 1372s Compiling version_check v0.9.5 1372s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/version_check-0.9.5 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.r0ba6wlcsh/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=044ed9e62895a317 -C extra-filename=-044ed9e62895a317 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn` 1372s Compiling syn v2.0.96 1372s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=25776e54546dab2e -C extra-filename=-25776e54546dab2e --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern proc_macro2=/tmp/tmp.r0ba6wlcsh/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.r0ba6wlcsh/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.r0ba6wlcsh/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 1372s Compiling generic-array v0.14.7 1372s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=0999e27a4b364dd7 -C extra-filename=-0999e27a4b364dd7 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/build/generic-array-0999e27a4b364dd7 -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern version_check=/tmp/tmp.r0ba6wlcsh/target/release/deps/libversion_check-044ed9e62895a317.rlib --cap-lints warn` 1373s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 1373s compile time. It currently supports bits, unsigned integers, and signed 1373s integers. It also provides a type-level array of type-level numbers, but its 1373s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.r0ba6wlcsh/target/release/deps:/tmp/tmp.r0ba6wlcsh/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/typenum-c0fa606d71e4b853/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.r0ba6wlcsh/target/release/build/typenum-b385270933b2bdce/build-script-main` 1373s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 1373s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1373s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 1373s warning: unused import: `crate::ntptimeval` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 1373s | 1373s 5 | use crate::ntptimeval; 1373s | ^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: `#[warn(unused_imports)]` on by default 1373s 1373s warning: `libc` (lib) generated 2 warnings (1 duplicate) 1373s Compiling byteorder v1.5.0 1373s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1373s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 1373s Compiling getrandom v0.2.15 1373s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern cfg_if=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1373s warning: unexpected `cfg` condition value: `js` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/getrandom-0.2.15/src/lib.rs:334:25 1373s | 1373s 334 | } else if #[cfg(all(feature = "js", 1373s | ^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 1373s = help: consider adding `js` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s = note: `#[warn(unexpected_cfgs)]` on by default 1373s 1373s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 1373s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 1373s compile time. It currently supports bits, unsigned integers, and signed 1373s integers. It also provides a type-level array of type-level numbers, but its 1373s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/typenum-c0fa606d71e4b853/out rustc --crate-name typenum --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=2ce1dc0d44f236d9 -C extra-filename=-2ce1dc0d44f236d9 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1373s warning: unexpected `cfg` condition value: `cargo-clippy` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/lib.rs:50:5 1373s | 1373s 50 | feature = "cargo-clippy", 1373s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s = note: `#[warn(unexpected_cfgs)]` on by default 1373s 1373s warning: unexpected `cfg` condition value: `cargo-clippy` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/lib.rs:60:13 1373s | 1373s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/lib.rs:119:12 1373s | 1373s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/lib.rs:125:12 1373s | 1373s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/lib.rs:131:12 1373s | 1373s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/bit.rs:19:12 1373s | 1373s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/bit.rs:32:12 1373s | 1373s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition name: `tests` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/bit.rs:187:7 1373s | 1373s 187 | #[cfg(tests)] 1373s | ^^^^^ help: there is a config with a similar name: `test` 1373s | 1373s = help: consider using a Cargo feature instead 1373s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1373s [lints.rust] 1373s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 1373s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/int.rs:41:12 1373s | 1373s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/int.rs:48:12 1373s | 1373s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/int.rs:71:12 1373s | 1373s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/uint.rs:49:12 1373s | 1373s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/uint.rs:147:12 1373s | 1373s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition name: `tests` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/uint.rs:1656:7 1373s | 1373s 1656 | #[cfg(tests)] 1373s | ^^^^^ help: there is a config with a similar name: `test` 1373s | 1373s = help: consider using a Cargo feature instead 1373s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1373s [lints.rust] 1373s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 1373s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `cargo-clippy` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/uint.rs:1709:16 1373s | 1373s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/array.rs:11:12 1373s | 1373s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unexpected `cfg` condition value: `scale_info` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/array.rs:23:12 1373s | 1373s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 1373s | ^^^^^^^^^^^^^^^^^^^^^^ 1373s | 1373s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 1373s = help: consider adding `scale_info` as a feature in `Cargo.toml` 1373s = note: see for more information about checking conditional configuration 1373s 1373s warning: unused import: `*` 1373s --> /tmp/tmp.r0ba6wlcsh/registry/typenum-1.17.0/src/lib.rs:106:25 1373s | 1373s 106 | N1, N2, Z0, P1, P2, *, 1373s | ^ 1373s | 1373s = note: `#[warn(unused_imports)]` on by default 1373s 1373s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 1373s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.r0ba6wlcsh/target/release/deps:/tmp/tmp.r0ba6wlcsh/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/generic-array-7e9a5159722d2a53/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.r0ba6wlcsh/target/release/build/generic-array-0999e27a4b364dd7/build-script-build` 1373s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 1373s Compiling thiserror v1.0.69 1373s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.r0ba6wlcsh/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn` 1374s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.r0ba6wlcsh/target/release/deps:/tmp/tmp.r0ba6wlcsh/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.r0ba6wlcsh/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 1374s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 1374s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 1374s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 1374s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1374s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/generic-array-7e9a5159722d2a53/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=8bbf1525649e97f4 -C extra-filename=-8bbf1525649e97f4 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern typenum=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libtypenum-2ce1dc0d44f236d9.rmeta --cap-lints warn -Ctarget-feature=+backchain --cfg relaxed_coherence` 1374s warning: unexpected `cfg` condition name: `relaxed_coherence` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/src/impls.rs:136:19 1374s | 1374s 136 | #[cfg(relaxed_coherence)] 1374s | ^^^^^^^^^^^^^^^^^ 1374s ... 1374s 183 | / impl_from! { 1374s 184 | | 1 => ::typenum::U1, 1374s 185 | | 2 => ::typenum::U2, 1374s 186 | | 3 => ::typenum::U3, 1374s ... | 1374s 215 | | 32 => ::typenum::U32 1374s 216 | | } 1374s | |_- in this macro invocation 1374s | 1374s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s = note: `#[warn(unexpected_cfgs)]` on by default 1374s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 1374s 1374s warning: unexpected `cfg` condition name: `relaxed_coherence` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/src/impls.rs:158:23 1374s | 1374s 158 | #[cfg(not(relaxed_coherence))] 1374s | ^^^^^^^^^^^^^^^^^ 1374s ... 1374s 183 | / impl_from! { 1374s 184 | | 1 => ::typenum::U1, 1374s 185 | | 2 => ::typenum::U2, 1374s 186 | | 3 => ::typenum::U3, 1374s ... | 1374s 215 | | 32 => ::typenum::U32 1374s 216 | | } 1374s | |_- in this macro invocation 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 1374s 1374s warning: unexpected `cfg` condition name: `relaxed_coherence` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/src/impls.rs:136:19 1374s | 1374s 136 | #[cfg(relaxed_coherence)] 1374s | ^^^^^^^^^^^^^^^^^ 1374s ... 1374s 219 | / impl_from! { 1374s 220 | | 33 => ::typenum::U33, 1374s 221 | | 34 => ::typenum::U34, 1374s 222 | | 35 => ::typenum::U35, 1374s ... | 1374s 268 | | 1024 => ::typenum::U1024 1374s 269 | | } 1374s | |_- in this macro invocation 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 1374s 1374s warning: unexpected `cfg` condition name: `relaxed_coherence` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/generic-array-0.14.7/src/impls.rs:158:23 1374s | 1374s 158 | #[cfg(not(relaxed_coherence))] 1374s | ^^^^^^^^^^^^^^^^^ 1374s ... 1374s 219 | / impl_from! { 1374s 220 | | 33 => ::typenum::U33, 1374s 221 | | 34 => ::typenum::U34, 1374s 222 | | 35 => ::typenum::U35, 1374s ... | 1374s 268 | | 1024 => ::typenum::U1024 1374s 269 | | } 1374s | |_- in this macro invocation 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 1374s 1374s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 1374s Compiling rand_core v0.6.4 1374s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 1374s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern getrandom=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1374s warning: unexpected `cfg` condition name: `doc_cfg` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/src/lib.rs:38:13 1374s | 1374s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1374s | ^^^^^^^ 1374s | 1374s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s = note: `#[warn(unexpected_cfgs)]` on by default 1374s 1374s warning: unexpected `cfg` condition name: `doc_cfg` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/src/error.rs:50:16 1374s | 1374s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1374s | ^^^^^^^ 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s 1374s warning: unexpected `cfg` condition name: `doc_cfg` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/src/error.rs:64:16 1374s | 1374s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1374s | ^^^^^^^ 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s 1374s warning: unexpected `cfg` condition name: `doc_cfg` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/src/error.rs:75:16 1374s | 1374s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1374s | ^^^^^^^ 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s 1374s warning: unexpected `cfg` condition name: `doc_cfg` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/src/os.rs:46:12 1374s | 1374s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1374s | ^^^^^^^ 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s 1374s warning: unexpected `cfg` condition name: `doc_cfg` 1374s --> /tmp/tmp.r0ba6wlcsh/registry/rand_core-0.6.4/src/lib.rs:411:16 1374s | 1374s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1374s | ^^^^^^^ 1374s | 1374s = help: consider using a Cargo feature instead 1374s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1374s [lints.rust] 1374s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1374s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1374s = note: see for more information about checking conditional configuration 1374s 1374s Compiling zerocopy-derive v0.7.34 1374s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ade2215b6e585001 -C extra-filename=-ade2215b6e585001 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern proc_macro2=/tmp/tmp.r0ba6wlcsh/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.r0ba6wlcsh/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.r0ba6wlcsh/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 1374s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 1374s Compiling thiserror-impl v1.0.69 1374s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=282169f5dfa653c6 -C extra-filename=-282169f5dfa653c6 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern proc_macro2=/tmp/tmp.r0ba6wlcsh/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.r0ba6wlcsh/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.r0ba6wlcsh/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 1375s Compiling zerocopy v0.7.34 1375s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=05091faa96a9c488 -C extra-filename=-05091faa96a9c488 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern byteorder=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.r0ba6wlcsh/target/release/deps/libzerocopy_derive-ade2215b6e585001.so --cap-lints warn -Ctarget-feature=+backchain` 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/util.rs:597:32 1375s | 1375s 597 | let remainder = t.addr() % mem::align_of::(); 1375s | ^^^^^^^^^^^^^^^^^^ 1375s | 1375s note: the lint level is defined here 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:174:5 1375s | 1375s 174 | unused_qualifications, 1375s | ^^^^^^^^^^^^^^^^^^^^^ 1375s help: remove the unnecessary path segments 1375s | 1375s 597 - let remainder = t.addr() % mem::align_of::(); 1375s 597 + let remainder = t.addr() % align_of::(); 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:333:35 1375s | 1375s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1375s | ^^^^^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1375s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:488:44 1375s | 1375s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 1375s | ^^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 1375s 488 + align: match NonZeroUsize::new(align_of::()) { 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:492:49 1375s | 1375s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1375s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:511:44 1375s | 1375s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 1375s | ^^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 1375s 511 + align: match NonZeroUsize::new(align_of::()) { 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:517:29 1375s | 1375s 517 | _elem_size: mem::size_of::(), 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 517 - _elem_size: mem::size_of::(), 1375s 517 + _elem_size: size_of::(), 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:1418:19 1375s | 1375s 1418 | let len = mem::size_of_val(self); 1375s | ^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 1418 - let len = mem::size_of_val(self); 1375s 1418 + let len = size_of_val(self); 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:2714:19 1375s | 1375s 2714 | let len = mem::size_of_val(self); 1375s | ^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 2714 - let len = mem::size_of_val(self); 1375s 2714 + let len = size_of_val(self); 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:2789:19 1375s | 1375s 2789 | let len = mem::size_of_val(self); 1375s | ^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 2789 - let len = mem::size_of_val(self); 1375s 2789 + let len = size_of_val(self); 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:2863:27 1375s | 1375s 2863 | if bytes.len() != mem::size_of_val(self) { 1375s | ^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 2863 - if bytes.len() != mem::size_of_val(self) { 1375s 2863 + if bytes.len() != size_of_val(self) { 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:2920:20 1375s | 1375s 2920 | let size = mem::size_of_val(self); 1375s | ^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 2920 - let size = mem::size_of_val(self); 1375s 2920 + let size = size_of_val(self); 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:2981:45 1375s | 1375s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1375s | ^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1375s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4161:27 1375s | 1375s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1375s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4176:26 1375s | 1375s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1375s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4179:46 1375s | 1375s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1375s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4194:46 1375s | 1375s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 1375s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4221:26 1375s | 1375s 4221 | .checked_rem(mem::size_of::()) 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4221 - .checked_rem(mem::size_of::()) 1375s 4221 + .checked_rem(size_of::()) 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4243:34 1375s | 1375s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 1375s 4243 + let expected_len = match size_of::().checked_mul(count) { 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4268:34 1375s | 1375s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 1375s 4268 + let expected_len = match size_of::().checked_mul(count) { 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4795:25 1375s | 1375s 4795 | let elem_size = mem::size_of::(); 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4795 - let elem_size = mem::size_of::(); 1375s 4795 + let elem_size = size_of::(); 1375s | 1375s 1375s warning: unnecessary qualification 1375s --> /tmp/tmp.r0ba6wlcsh/registry/zerocopy-0.7.34/src/lib.rs:4825:25 1375s | 1375s 4825 | let elem_size = mem::size_of::(); 1375s | ^^^^^^^^^^^^^^^^^ 1375s | 1375s help: remove the unnecessary path segments 1375s | 1375s 4825 - let elem_size = mem::size_of::(); 1375s 4825 + let elem_size = size_of::(); 1375s | 1375s 1376s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 1376s Compiling ppv-lite86 v0.2.20 1376s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=19f965d8a4b7f765 -C extra-filename=-19f965d8a4b7f765 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern zerocopy=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-05091faa96a9c488.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1376s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps OUT_DIR=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=27dfaf5cbfbe8b32 -C extra-filename=-27dfaf5cbfbe8b32 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern thiserror_impl=/tmp/tmp.r0ba6wlcsh/target/release/deps/libthiserror_impl-282169f5dfa653c6.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 1376s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 1376s Compiling memchr v2.7.4 1376s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1376s 1, 2 or 3 byte search and single substring search. 1376s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1376s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 1376s Compiling rand_chacha v0.3.1 1376s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 1376s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=f79f49c44487231e -C extra-filename=-f79f49c44487231e --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern ppv_lite86=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-19f965d8a4b7f765.rmeta --extern rand_core=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1376s warning: `memchr` (lib) generated 1 warning (1 duplicate) 1376s Compiling rand v0.8.5 1376s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 1376s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=2fe9818164ef43c6 -C extra-filename=-2fe9818164ef43c6 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern libc=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-f79f49c44487231e.rmeta --extern rand_core=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1376s warning: unexpected `cfg` condition value: `simd_support` 1376s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/lib.rs:52:13 1376s | 1376s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 1376s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1376s | 1376s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1376s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1376s = note: see for more information about checking conditional configuration 1376s = note: `#[warn(unexpected_cfgs)]` on by default 1376s 1376s warning: unexpected `cfg` condition name: `doc_cfg` 1376s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/lib.rs:53:13 1376s | 1376s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1376s | ^^^^^^^ 1376s | 1376s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1376s = help: consider using a Cargo feature instead 1376s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1376s [lints.rust] 1376s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1376s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1376s = note: see for more information about checking conditional configuration 1376s 1376s warning: unexpected `cfg` condition name: `doc_cfg` 1376s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/lib.rs:181:12 1376s | 1376s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1376s | ^^^^^^^ 1376s | 1376s = help: consider using a Cargo feature instead 1376s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1376s [lints.rust] 1376s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1376s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1376s = note: see for more information about checking conditional configuration 1376s 1376s warning: unexpected `cfg` condition name: `doc_cfg` 1376s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/mod.rs:116:12 1376s | 1376s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1376s | ^^^^^^^ 1376s | 1376s = help: consider using a Cargo feature instead 1376s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1376s [lints.rust] 1376s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1376s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1376s = note: see for more information about checking conditional configuration 1376s 1376s warning: unexpected `cfg` condition name: `features` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 1377s | 1377s 162 | #[cfg(features = "nightly")] 1377s | ^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: see for more information about checking conditional configuration 1377s help: there is a config with a similar name and value 1377s | 1377s 162 | #[cfg(feature = "nightly")] 1377s | ~~~~~~~ 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:15:7 1377s | 1377s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:156:7 1377s | 1377s 156 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:158:7 1377s | 1377s 158 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:160:7 1377s | 1377s 160 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:162:7 1377s | 1377s 162 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:165:7 1377s | 1377s 165 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:167:7 1377s | 1377s 167 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/float.rs:169:7 1377s | 1377s 169 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:13:32 1377s | 1377s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:15:35 1377s | 1377s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:19:7 1377s | 1377s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:112:7 1377s | 1377s 112 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:142:7 1377s | 1377s 142 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:144:7 1377s | 1377s 144 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:146:7 1377s | 1377s 146 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:148:7 1377s | 1377s 148 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:150:7 1377s | 1377s 150 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:152:7 1377s | 1377s 152 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/integer.rs:155:5 1377s | 1377s 155 | feature = "simd_support", 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:11:7 1377s | 1377s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:144:7 1377s | 1377s 144 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `std` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:235:11 1377s | 1377s 235 | #[cfg(not(std))] 1377s | ^^^ help: found config with similar value: `feature = "std"` 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:363:7 1377s | 1377s 363 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:423:7 1377s | 1377s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 1377s | ^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:424:7 1377s | 1377s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 1377s | ^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:425:7 1377s | 1377s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 1377s | ^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:426:7 1377s | 1377s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 1377s | ^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:427:7 1377s | 1377s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 1377s | ^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:428:7 1377s | 1377s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 1377s | ^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:429:7 1377s | 1377s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 1377s | ^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `std` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1377s | 1377s 291 | #[cfg(not(std))] 1377s | ^^^ help: found config with similar value: `feature = "std"` 1377s ... 1377s 359 | scalar_float_impl!(f32, u32); 1377s | ---------------------------- in this macro invocation 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1377s 1377s warning: unexpected `cfg` condition name: `std` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1377s | 1377s 291 | #[cfg(not(std))] 1377s | ^^^ help: found config with similar value: `feature = "std"` 1377s ... 1377s 360 | scalar_float_impl!(f64, u64); 1377s | ---------------------------- in this macro invocation 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 1377s | 1377s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 1377s | 1377s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 1377s | 1377s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 1377s | 1377s 572 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 1377s | 1377s 679 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 1377s | 1377s 687 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 1377s | 1377s 696 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 1377s | 1377s 706 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 1377s | 1377s 1001 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 1377s | 1377s 1003 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 1377s | 1377s 1005 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 1377s | 1377s 1007 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 1377s | 1377s 1010 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 1377s | 1377s 1012 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition value: `simd_support` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 1377s | 1377s 1014 | #[cfg(feature = "simd_support")] 1377s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1377s | 1377s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1377s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/rng.rs:395:12 1377s | 1377s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/rngs/mod.rs:99:12 1377s | 1377s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/rngs/mod.rs:118:12 1377s | 1377s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/rngs/std.rs:32:12 1377s | 1377s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/rngs/thread.rs:60:12 1377s | 1377s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/rngs/thread.rs:87:12 1377s | 1377s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/mod.rs:29:12 1377s | 1377s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/mod.rs:623:12 1377s | 1377s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/index.rs:276:12 1377s | 1377s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/mod.rs:114:16 1377s | 1377s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/mod.rs:142:16 1377s | 1377s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/mod.rs:170:16 1377s | 1377s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/mod.rs:219:16 1377s | 1377s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: unexpected `cfg` condition name: `doc_cfg` 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/seq/mod.rs:465:16 1377s | 1377s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1377s | ^^^^^^^ 1377s | 1377s = help: consider using a Cargo feature instead 1377s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1377s [lints.rust] 1377s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1377s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1377s = note: see for more information about checking conditional configuration 1377s 1377s warning: trait `Float` is never used 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:238:18 1377s | 1377s 238 | pub(crate) trait Float: Sized { 1377s | ^^^^^ 1377s | 1377s = note: `#[warn(dead_code)]` on by default 1377s 1377s warning: associated items `lanes`, `extract`, and `replace` are never used 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:247:8 1377s | 1377s 245 | pub(crate) trait FloatAsSIMD: Sized { 1377s | ----------- associated items in this trait 1377s 246 | #[inline(always)] 1377s 247 | fn lanes() -> usize { 1377s | ^^^^^ 1377s ... 1377s 255 | fn extract(self, index: usize) -> Self { 1377s | ^^^^^^^ 1377s ... 1377s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 1377s | ^^^^^^^ 1377s 1377s warning: method `all` is never used 1377s --> /tmp/tmp.r0ba6wlcsh/registry/rand-0.8.5/src/distributions/utils.rs:268:8 1377s | 1377s 266 | pub(crate) trait BoolAsSIMD: Sized { 1377s | ---------- method in this trait 1377s 267 | fn any(self) -> bool; 1377s 268 | fn all(self) -> bool; 1377s | ^^^ 1377s 1377s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 1377s Compiling oxsdatatypes v0.2.2 1377s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxsdatatypes CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxsdatatypes-0.2.2 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/oxsdatatypes-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='An implementation of some XSD datatypes for SPARQL implementations 1378s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxsdatatypes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxsdatatypes' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxsdatatypes-0.2.2 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name oxsdatatypes --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/oxsdatatypes-0.2.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("custom-now", "js-sys"))' -C metadata=47822aa86bd631af -C extra-filename=-47822aa86bd631af --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern thiserror=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1378s warning: `rand` (lib) generated 70 warnings (1 duplicate) 1378s Compiling crypto-common v0.1.6 1378s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/crypto-common-0.1.6 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=e0efd4b670f53510 -C extra-filename=-e0efd4b670f53510 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern generic_array=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libgeneric_array-8bbf1525649e97f4.rmeta --extern typenum=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libtypenum-2ce1dc0d44f236d9.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1378s warning: unexpected `cfg` condition value: `js` 1378s --> /tmp/tmp.r0ba6wlcsh/registry/oxsdatatypes-0.2.2/src/date_time.rs:1879:5 1378s | 1378s 1879 | feature = "js", 1378s | ^^^^^^^^^^^^^^ 1378s | 1378s = note: expected values for `feature` are: `custom-now` and `js-sys` 1378s = help: consider adding `js` as a feature in `Cargo.toml` 1378s = note: see for more information about checking conditional configuration 1378s = note: `#[warn(unexpected_cfgs)]` on by default 1378s 1378s warning: unexpected `cfg` condition value: `js` 1378s --> /tmp/tmp.r0ba6wlcsh/registry/oxsdatatypes-0.2.2/src/date_time.rs:1895:9 1378s | 1378s 1895 | all(feature = "js", target_family = "wasm", target_os = "unknown") 1378s | ^^^^^^^^^^^^^^ 1378s | 1378s = note: expected values for `feature` are: `custom-now` and `js-sys` 1378s = help: consider adding `js` as a feature in `Cargo.toml` 1378s = note: see for more information about checking conditional configuration 1378s 1378s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 1378s Compiling block-buffer v0.10.2 1378s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/block-buffer-0.10.2 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=10d95f1690973503 -C extra-filename=-10d95f1690973503 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern generic_array=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libgeneric_array-8bbf1525649e97f4.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1378s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 1378s Compiling oxilangtag v0.1.5 1378s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 1378s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1378s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 1378s Compiling oxiri v0.2.11 1378s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 1378s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1378s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 1378s Compiling peg-runtime v0.8.3 1378s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=8060b0318fa1ed9f -C extra-filename=-8060b0318fa1ed9f --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn` 1379s warning: unexpected `cfg` condition value: `unstable` 1379s --> /tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3/lib.rs:2:13 1379s | 1379s 2 | #![cfg_attr(feature = "unstable", feature(error_in_core))] 1379s | ^^^^^^^^^^^^^^^^^^^^ 1379s | 1379s = note: expected values for `feature` are: `std` 1379s = help: consider adding `unstable` as a feature in `Cargo.toml` 1379s = note: see for more information about checking conditional configuration 1379s = note: `#[warn(unexpected_cfgs)]` on by default 1379s 1379s warning: unexpected `cfg` condition value: `unstable` 1379s --> /tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3/error.rs:66:28 1379s | 1379s 66 | #[cfg(any(feature = "std", feature = "unstable"))] 1379s | ^^^^^^^^^^^^^^^^^^^^ 1379s | 1379s = note: expected values for `feature` are: `std` 1379s = help: consider adding `unstable` as a feature in `Cargo.toml` 1379s = note: see for more information about checking conditional configuration 1379s 1379s warning: `peg-runtime` (lib) generated 2 warnings 1379s Compiling peg-macros v0.8.4 1379s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_macros CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-macros-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/peg-macros-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Procedural macros for rust-peg. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-macros CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-macros-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name peg_macros --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/peg-macros-0.8.4/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("trace"))' -C metadata=39a0290f33394d81 -C extra-filename=-39a0290f33394d81 --out-dir /tmp/tmp.r0ba6wlcsh/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern peg_runtime=/tmp/tmp.r0ba6wlcsh/target/release/deps/libpeg_runtime-8060b0318fa1ed9f.rlib --extern proc_macro2=/tmp/tmp.r0ba6wlcsh/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.r0ba6wlcsh/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern proc_macro --cap-lints warn` 1379s warning: `oxsdatatypes` (lib) generated 3 warnings (1 duplicate) 1379s Compiling oxrdf v0.2.4 1379s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 1379s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="oxsdatatypes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=01d881b40174ceb6 -C extra-filename=-01d881b40174ceb6 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern oxilangtag=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxsdatatypes=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxsdatatypes-47822aa86bd631af.rmeta --extern rand=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rmeta --extern thiserror=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1380s Compiling digest v0.10.7 1380s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/digest-0.10.7 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name digest --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=7688db376baeb482 -C extra-filename=-7688db376baeb482 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern block_buffer=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libblock_buffer-10d95f1690973503.rmeta --extern crypto_common=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libcrypto_common-e0efd4b670f53510.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1380s warning: `digest` (lib) generated 1 warning (1 duplicate) 1380s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=25bd9d7b1e7b26a9 -C extra-filename=-25bd9d7b1e7b26a9 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1381s warning: `peg-runtime` (lib) generated 3 warnings (3 duplicates) 1381s Compiling peg v0.8.4 1381s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/peg-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='A simple Parsing Expression Grammar (PEG) parser generator.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION=1.68.0 CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/peg-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name peg --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/peg-0.8.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "trace"))' -C metadata=93f3c4f7744a6516 -C extra-filename=-93f3c4f7744a6516 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern peg_macros=/tmp/tmp.r0ba6wlcsh/target/release/deps/libpeg_macros-39a0290f33394d81.so --extern peg_runtime=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libpeg_runtime-25bd9d7b1e7b26a9.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1381s warning: `peg` (lib) generated 1 warning (1 duplicate) 1381s Compiling aho-corasick v1.1.3 1381s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=aho_corasick CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/aho-corasick-1.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/aho-corasick-1.1.3/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Fast multiple substring searching.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=aho-corasick CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=1.1.3 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/aho-corasick-1.1.3 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name aho_corasick --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/aho-corasick-1.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="perf-literal"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "logging", "perf-literal", "std"))' -C metadata=52117c57b0af9707 -C extra-filename=-52117c57b0af9707 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern memchr=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1382s warning: method `cmpeq` is never used 1382s --> /tmp/tmp.r0ba6wlcsh/registry/aho-corasick-1.1.3/src/packed/vector.rs:74:15 1382s | 1382s 28 | pub(crate) trait Vector: 1382s | ------ method in this trait 1382s ... 1382s 74 | unsafe fn cmpeq(self, vector2: Self) -> Self; 1382s | ^^^^^ 1382s | 1382s = note: `#[warn(dead_code)]` on by default 1382s 1386s warning: `aho-corasick` (lib) generated 2 warnings (1 duplicate) 1386s Compiling regex-syntax v0.8.5 1386s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/regex-syntax-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=6567aabee58c85ec -C extra-filename=-6567aabee58c85ec --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1388s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 1388s Compiling regex-automata v0.4.9 1388s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_automata CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/regex-automata-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/regex-automata-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='Automata construction and matching using regular expressions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-automata CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-automata' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/regex-automata-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name regex_automata --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/regex-automata-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="dfa-onepass"' --cfg 'feature="hybrid"' --cfg 'feature="meta"' --cfg 'feature="nfa-backtrack"' --cfg 'feature="nfa-pikevm"' --cfg 'feature="nfa-thompson"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-literal-multisubstring"' --cfg 'feature="perf-literal-substring"' --cfg 'feature="std"' --cfg 'feature="syntax"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --cfg 'feature="unicode-word-boundary"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "dfa", "dfa-build", "dfa-onepass", "dfa-search", "hybrid", "internal-instrument", "internal-instrument-pikevm", "logging", "meta", "nfa", "nfa-backtrack", "nfa-pikevm", "nfa-thompson", "perf", "perf-inline", "perf-literal", "perf-literal-multisubstring", "perf-literal-substring", "std", "syntax", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unicode-word-boundary"))' -C metadata=3bc1cb87bf58d89a -C extra-filename=-3bc1cb87bf58d89a --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern aho_corasick=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libaho_corasick-52117c57b0af9707.rmeta --extern memchr=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern regex_syntax=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libregex_syntax-6567aabee58c85ec.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1396s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 1396s Compiling spargebra v0.3.4 1396s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=spargebra CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/spargebra-0.3.4 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/spargebra-0.3.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL parser 1396s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spargebra CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.3.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/spargebra-0.3.4 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name spargebra --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/spargebra-0.3.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=4e69903b4d81ef4b -C extra-filename=-4e69903b4d81ef4b --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern oxilangtag=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-01d881b40174ceb6.rmeta --extern peg=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libpeg-93f3c4f7744a6516.rmeta --extern rand=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rmeta --extern thiserror=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1404s warning: `regex-automata` (lib) generated 1 warning (1 duplicate) 1404s Compiling quick-xml v0.36.1 1404s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/quick-xml-0.36.1 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=759ace41c505d51b -C extra-filename=-759ace41c505d51b --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern memchr=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1404s warning: unexpected `cfg` condition value: `document-features` 1404s --> /tmp/tmp.r0ba6wlcsh/registry/quick-xml-0.36.1/src/lib.rs:42:5 1404s | 1404s 42 | feature = "document-features", 1404s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1404s | 1404s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 1404s = help: consider adding `document-features` as a feature in `Cargo.toml` 1404s = note: see for more information about checking conditional configuration 1404s = note: `#[warn(unexpected_cfgs)]` on by default 1404s 1404s warning: elided lifetime has a name 1404s --> /tmp/tmp.r0ba6wlcsh/registry/quick-xml-0.36.1/src/writer.rs:146:73 1404s | 1404s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 1404s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 1404s | 1404s = note: `#[warn(elided_named_lifetimes)]` on by default 1404s 1406s warning: `quick-xml` (lib) generated 3 warnings (1 duplicate) 1406s Compiling json-event-parser v0.2.0 1406s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=json_event_parser CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/json-event-parser-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/json-event-parser-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A JSON event parser and serializer 1406s ' CARGO_PKG_HOMEPAGE='https://github.com/oxigraph/json-event-parser' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=json-event-parser CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/json-event-parser' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/json-event-parser-0.2.0 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name json_event_parser --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/json-event-parser-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio"))' -C metadata=5c64a36fa2d34345 -C extra-filename=-5c64a36fa2d34345 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1406s warning: `json-event-parser` (lib) generated 1 warning (1 duplicate) 1406s Compiling sparesults v0.2.4 1406s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sparesults CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/sparesults-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/sparesults-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='SPARQL query results formats parsers and serializers 1406s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparesults CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparesults' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/sparesults-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name sparesults --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/sparesults-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=827a7537e1ca3870 -C extra-filename=-827a7537e1ca3870 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern json_event_parser=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libjson_event_parser-5c64a36fa2d34345.rmeta --extern memchr=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern oxrdf=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-01d881b40174ceb6.rmeta --extern quick_xml=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libquick_xml-759ace41c505d51b.rmeta --extern thiserror=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1411s warning: `sparesults` (lib) generated 1 warning (1 duplicate) 1411s Compiling sparopt v0.2.0 1411s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sparopt CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/sparopt-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/sparopt-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL optimizer 1411s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparopt CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparopt' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/sparopt-0.2.0 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name sparopt --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/sparopt-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=520b0b3bc681408a -C extra-filename=-520b0b3bc681408a --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern oxrdf=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-01d881b40174ceb6.rmeta --extern rand=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rmeta --extern spargebra=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libspargebra-4e69903b4d81ef4b.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1418s warning: `spargebra` (lib) generated 1 warning (1 duplicate) 1418s Compiling regex v1.11.1 1418s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/regex-1.11.1 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/regex-1.11.1/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='An implementation of regular expressions for Rust. This implementation uses 1418s finite automata and guarantees linear time matching on all inputs. 1418s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/regex' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.11.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/regex-1.11.1 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name regex --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/regex-1.11.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="perf"' --cfg 'feature="perf-backtrack"' --cfg 'feature="perf-cache"' --cfg 'feature="perf-dfa"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-onepass"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "logging", "pattern", "perf", "perf-backtrack", "perf-cache", "perf-dfa", "perf-dfa-full", "perf-inline", "perf-literal", "perf-onepass", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unstable", "use_std"))' -C metadata=0d5684cef6c234d2 -C extra-filename=-0d5684cef6c234d2 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern aho_corasick=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libaho_corasick-52117c57b0af9707.rmeta --extern memchr=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern regex_automata=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libregex_automata-3bc1cb87bf58d89a.rmeta --extern regex_syntax=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libregex_syntax-6567aabee58c85ec.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1420s warning: `regex` (lib) generated 1 warning (1 duplicate) 1420s Compiling sha1 v0.10.6 1420s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/sha1-0.10.6 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=bea7321f5e13a666 -C extra-filename=-bea7321f5e13a666 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern cfg_if=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern digest=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libdigest-7688db376baeb482.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1420s warning: `sha1` (lib) generated 1 warning (1 duplicate) 1420s Compiling sha2 v0.10.8 1420s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sha2 CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/sha2-0.10.8 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/sha2-0.10.8/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Pure Rust implementation of the SHA-2 hash function family 1420s including SHA-224, SHA-256, SHA-384, and SHA-512. 1420s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/sha2-0.10.8 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name sha2 --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/sha2-0.10.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "asm-aarch64", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha2-asm", "std"))' -C metadata=0010511a0e536ab6 -C extra-filename=-0010511a0e536ab6 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern cfg_if=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern digest=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libdigest-7688db376baeb482.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1421s warning: `sparopt` (lib) generated 1 warning (1 duplicate) 1421s Compiling md-5 v0.10.6 1421s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=md5 CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/md-5-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/md-5-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='MD5 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=md-5 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/md-5-0.10.6 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name md5 --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/md-5-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "default", "force-soft", "loongarch64_asm", "md5-asm", "oid", "std"))' -C metadata=18dd741326d002b4 -C extra-filename=-18dd741326d002b4 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern cfg_if=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern digest=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libdigest-7688db376baeb482.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1421s warning: `md-5` (lib) generated 1 warning (1 duplicate) 1421s Compiling hex v0.4.3 1421s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/hex-0.4.3 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name hex --edition=2018 /tmp/tmp.r0ba6wlcsh/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=328358867b286e55 -C extra-filename=-328358867b286e55 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1421s warning: `hex` (lib) generated 1 warning (1 duplicate) 1421s Compiling rustc-hash v2.0.0 1421s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rustc_hash CARGO_MANIFEST_DIR=/tmp/tmp.r0ba6wlcsh/registry/rustc-hash-2.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0ba6wlcsh/registry/rustc-hash-2.0.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A speedy, non-cryptographic hashing algorithm used by rustc' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustc-hash CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rustc-hash' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.r0ba6wlcsh/registry/rustc-hash-2.0.0 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name rustc_hash --edition=2021 /tmp/tmp.r0ba6wlcsh/registry/rustc-hash-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "rand", "std"))' -C metadata=9ef5c632ac123a78 -C extra-filename=-9ef5c632ac123a78 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1421s warning: `rustc-hash` (lib) generated 1 warning (1 duplicate) 1421s warning: `sha2` (lib) generated 1 warning (1 duplicate) 1421s Compiling spareval v0.1.1 (/usr/share/cargo/registry/spareval-0.1.1) 1421s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=spareval CARGO_MANIFEST_DIR=/usr/share/cargo/registry/spareval-0.1.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/spareval-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL evaluator 1421s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spareval CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spareval' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/spareval-0.1.1 LD_LIBRARY_PATH=/tmp/tmp.r0ba6wlcsh/target/release/deps rustc --crate-name spareval --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("calendar-ext", "default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=922ae24f663afe30 -C extra-filename=-922ae24f663afe30 --out-dir /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.r0ba6wlcsh/target/release/deps --extern hex=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libhex-328358867b286e55.rlib --extern json_event_parser=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libjson_event_parser-5c64a36fa2d34345.rlib --extern md5=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libmd5-18dd741326d002b4.rlib --extern oxiri=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rlib --extern oxrdf=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-01d881b40174ceb6.rlib --extern oxsdatatypes=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/liboxsdatatypes-47822aa86bd631af.rlib --extern rand=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rlib --extern regex=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libregex-0d5684cef6c234d2.rlib --extern rustc_hash=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/librustc_hash-9ef5c632ac123a78.rlib --extern sha1=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libsha1-bea7321f5e13a666.rlib --extern sha2=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libsha2-0010511a0e536ab6.rlib --extern sparesults=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libsparesults-827a7537e1ca3870.rlib --extern spargebra=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libspargebra-4e69903b4d81ef4b.rlib --extern sparopt=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libsparopt-520b0b3bc681408a.rlib --extern thiserror=/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rlib -Ctarget-feature=+backchain` 1423s warning: `spareval` (lib test) generated 1 warning (1 duplicate) 1423s Finished `release` profile [optimized] target(s) in 52.42s 1423s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/spareval-0.1.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/spareval-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL evaluator 1423s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spareval CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spareval' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.r0ba6wlcsh/target/s390x-unknown-linux-gnu/release/deps/spareval-922ae24f663afe30` 1423s 1423s running 1 test 1423s test eval::tests::uuid ... ok 1423s 1423s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 1423s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 1423s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 1423s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 1423s test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 1423s 1423s autopkgtest: DBG: testbed command exited with code 0 1423s autopkgtest [01:50:36]: test rust-spareval:default: -----------------------] 1423s autopkgtest: DBG: testbed executing test finished with exit status 0 1423s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spareval%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-spareval%3Adefault-stdout 1424s autopkgtest: DBG: got reply from testbed: ok 1424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spareval%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-spareval%3Adefault-stderr 1424s autopkgtest: DBG: got reply from testbed: ok 1424s rust-spareval:default PASS 1424s autopkgtest [01:50:37]: test rust-spareval:default: - - - - - - - - - - results - - - - - - - - - - 1424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spareval%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 1424s autopkgtest: DBG: got reply from testbed: ok 1424s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-spareval:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1424s autopkgtest: DBG: testbed command exited with code 0 1424s autopkgtest [01:50:37]: test rust-spargebra:default: preparing testbed 1424s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-spareval-0.1+default-dev'], deps_new=['dh-rust', 'librust-spargebra-0.3+default-dev'] 1424s autopkgtest: DBG: testbed reset 1424s autopkgtest: DBG: sending command to testbed: revert 1564s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 1564s autopkgtest: DBG: sending command to testbed: print-execute-command 1564s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 1564s autopkgtest: DBG: sending command to testbed: capabilities 1564s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 1564s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 1564s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1564s autopkgtest: DBG: testbed command exited with code 0 1564s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 1564s autopkgtest: DBG: got reply from testbed: ok 1564s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1564s autopkgtest: DBG: testbed command exited with code 0 1564s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1564s autopkgtest: DBG: testbed command exited with code 0 1564s autopkgtest [01:52:57]: testbed dpkg architecture: s390x 1564s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1565s autopkgtest: DBG: testbed command exited with code 0 1565s autopkgtest [01:52:58]: testbed apt version: 2.9.28 1565s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1565s autopkgtest: DBG: testbed command exited with code 0 1565s autopkgtest: DBG: testbed has eatmydata 1565s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1565s autopkgtest: DBG: testbed command exited with code 0 1565s autopkgtest [01:52:58]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1565s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1565s autopkgtest: DBG: testbed command exited with code 0 1565s autopkgtest [01:52:58]: testbed release detected to be: plucky 1565s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 1565s autopkgtest: DBG: testbed command exited with code 0 1565s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 1565s autopkgtest: DBG: testbed command exited with code 0 1565s autopkgtest: DBG: adding APT source: Types: deb deb-src 1565s URIs: http://ftpmaster.internal/ubuntu/ 1565s Suites: plucky-proposed 1565s Components: main restricted universe multiverse 1565s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1565s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 1566s autopkgtest: DBG: testbed command exited with code 0 1566s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1566s Package: * 1566s Pin: release plucky-proposed 1566s Pin-Priority: 500 1566s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 1566s autopkgtest: DBG: testbed command exited with code 0 1566s autopkgtest [01:52:59]: updating testbed package index (apt update) 1566s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1566s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1566s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1566s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1567s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1567s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 1567s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1567s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 1567s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 1567s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 1567s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1567s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 1567s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 1567s Fetched 2083 kB in 1s (2132 kB/s) 1568s Reading package lists... 1568s autopkgtest: DBG: testbed command exited with code 0 1568s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1568s Package: * 1568s Pin: release plucky-proposed 1568s Pin-Priority: 100 1568s 1568s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 1568s Pin: release plucky-proposed 1568s Pin-Priority: 995 1568s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1568s autopkgtest: DBG: testbed command exited with code 0 1568s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1568s autopkgtest: DBG: testbed command exited with code 0 1568s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1568s + lsb_release --codename --short 1568s + RELEASE=plucky 1568s + cat 1568s + [ plucky != trusty ] 1568s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1568s Reading package lists... 1568s Building dependency tree... 1568s Reading state information... 1568s Calculating upgrade... 1568s The following packages were automatically installed and are no longer required: 1568s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1568s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1568s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1568s linux-tools-6.11.0-8-generic 1568s Use 'sudo apt autoremove' to remove them. 1569s The following packages will be upgraded: 1569s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 1569s libxdmcp6 1569s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1569s Need to get 1471 kB of archives. 1569s After this operation, 24.6 kB of additional disk space will be used. 1569s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 1569s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 1569s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 1569s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 1569s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 1569s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 1569s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 1569s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 1569s Preconfiguring packages ... 1570s Fetched 1471 kB in 1s (1932 kB/s) 1570s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1570s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 1570s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 1570s Setting up dash (0.5.12-12ubuntu1) ... 1570s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1570s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 1570s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1570s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 1570s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1570s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 1570s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1570s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 1570s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1570s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 1570s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1570s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 1570s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1570s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 1570s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1570s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 1570s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 1570s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 1570s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 1570s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 1570s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 1570s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 1570s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 1570s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 1570s Setting up libtasn1-6:s390x (4.20.0-2) ... 1570s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1570s Processing triggers for man-db (2.13.0-1) ... 1571s Processing triggers for debianutils (5.21) ... 1571s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1571s + /usr/lib/apt/apt-helper analyze-pattern ?true 1571s + uname -r 1571s + sed s/\./\\./g 1571s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1571s + apt list ?obsolete 1571s + tail -n+2 1571s + cut -d/ -f1 1571s + grep -v ^linux-.*6\.12\.0-15-generic.* 1571s + true 1571s + obsolete_pkgs= 1571s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1571s Reading package lists... 1571s Building dependency tree... 1571s Reading state information... 1571s The following packages will be REMOVED: 1571s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1571s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1571s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1571s linux-tools-6.11.0-8-generic* 1571s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 1571s After this operation, 167 MB disk space will be freed. 1571s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1571s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1571s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1571s Removing libpython3.12t64:s390x (3.12.9-1) ... 1571s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1571s Removing libnsl2:s390x (1.3.0-3build3) ... 1571s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1571s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1571s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1572s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1572s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1572s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1572s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1572s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1572s + grep -q trusty /etc/lsb-release 1572s + [ ! -d /usr/share/doc/unattended-upgrades ] 1572s + [ ! -d /usr/share/doc/lxd ] 1572s + [ ! -d /usr/share/doc/lxd-client ] 1572s + [ ! -d /usr/share/doc/snapd ] 1572s + type iptables 1572s + cat 1572s + chmod 755 /etc/rc.local 1572s + . /etc/rc.local 1572s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1572s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1572s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1572s + uname -m 1572s + [ s390x = ppc64le ] 1572s + [ -d /run/systemd/system ] 1572s + systemd-detect-virt --quiet --vm 1572s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1572s + cat 1572s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1573s + echo COMPRESS=lz4 1573s autopkgtest: DBG: testbed command exited with code 0 1573s autopkgtest [01:53:06]: upgrading testbed (apt dist-upgrade and autopurge) 1573s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1573s Reading package lists... 1573s Building dependency tree... 1573s Reading state information... 1573s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1573s Starting 2 pkgProblemResolver with broken count: 0 1573s Done 1573s Entering ResolveByKeep 1573s 1573s The following packages will be upgraded: 1573s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 1574s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1574s Need to get 10.7 MB of archives. 1574s After this operation, 305 kB of additional disk space will be used. 1574s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 1574s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 1575s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 1576s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 1576s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 1576s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1577s Preconfiguring packages ... 1577s Fetched 10.7 MB in 3s (3380 kB/s) 1577s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 1577s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 1577s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1577s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 1577s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1577s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 1577s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1577s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 1577s Checking for services that may need to be restarted... 1577s Checking init scripts... 1577s Checking for services that may need to be restarted... 1577s Checking init scripts... 1577s Stopping some services possibly affected by the upgrade (will be restarted later): 1577s cron: stopping...done. 1577s 1577s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1577s Setting up libc6:s390x (2.41-1ubuntu1) ... 1577s Checking for services that may need to be restarted... 1577s Checking init scripts... 1577s Restarting services possibly affected by the upgrade: 1577s cron: restarting...done. 1577s 1577s Services restarted successfully. 1577s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1577s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 1577s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1578s Setting up libc-bin (2.41-1ubuntu1) ... 1578s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1578s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1578s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1578s Setting up iproute2 (6.13.0-1ubuntu1) ... 1578s Setting up locales (2.41-1ubuntu1) ... 1578s Installing new version of config file /etc/locale.alias ... 1578s Generating locales (this might take a while)... 1579s en_US.UTF-8... done 1579s Generation complete. 1579s Setting up libc-dev-bin (2.41-1ubuntu1) ... 1579s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 1579s Processing triggers for man-db (2.13.0-1) ... 1580s Processing triggers for systemd (257.2-3ubuntu1) ... 1581s autopkgtest: DBG: testbed command exited with code 0 1581s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1581s Reading package lists... 1581s Building dependency tree... 1581s Reading state information... 1581s Starting pkgProblemResolver with broken count: 0 1581s Starting 2 pkgProblemResolver with broken count: 0 1581s Done 1581s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1581s autopkgtest: DBG: testbed command exited with code 0 1581s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1581s autopkgtest: DBG: testbed command exited with code 1 1581s autopkgtest [01:53:14]: rebooting testbed after setup commands that affected boot 1581s autopkgtest: DBG: sending command to testbed: reboot 1599s autopkgtest: DBG: got reply from testbed: ok 1599s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1599s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1599s autopkgtest: DBG: testbed command exited with code 0 1599s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1599s autopkgtest: DBG: got reply from testbed: ok 1599s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1599s autopkgtest: DBG: testbed command exited with code 0 1599s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1599s autopkgtest: DBG: testbed command exited with code 0 1599s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1599s autopkgtest: DBG: testbed command exited with code 0 1599s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1600s autopkgtest: DBG: testbed command exited with code 0 1600s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1600s autopkgtest: DBG: got reply from testbed: ok 1600s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1600s autopkgtest: DBG: testbed command exited with code 0 1600s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1600s autopkgtest: DBG: testbed command exited with code 0 1600s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1600s autopkgtest: DBG: testbed command exited with code 0 1600s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 1600s autopkgtest: DBG: testbed command exited with code 0 1600s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 1601s autopkgtest: DBG: got reply from testbed: ok 1601s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1601s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1601s autopkgtest: DBG: testbed command exited with code 0 1601s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1601s autopkgtest: DBG: got reply from testbed: ok 1601s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1601s autopkgtest: DBG: testbed command exited with code 0 1601s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1601s autopkgtest: DBG: testbed command exited with code 0 1601s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1601s autopkgtest: DBG: testbed command exited with code 0 1601s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1602s autopkgtest: DBG: testbed command exited with code 0 1602s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1602s autopkgtest: DBG: got reply from testbed: ok 1602s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1602s autopkgtest: DBG: testbed command exited with code 0 1602s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1602s autopkgtest: DBG: testbed command exited with code 0 1602s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1602s autopkgtest: DBG: testbed command exited with code 0 1602s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1602s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-spargebra-0.3+default-dev'] 1602s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-spargebra-0.3+default-dev 1602s autopkgtest: DBG: can use apt-get on testbed: True 1602s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-spargebra-0.3+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1603s Reading package lists... 1603s Building dependency tree... 1603s Reading state information... 1603s Starting pkgProblemResolver with broken count: 0 1603s Starting 2 pkgProblemResolver with broken count: 0 1603s Done 1603s The following NEW packages will be installed: 1603s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 1603s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 1603s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 1603s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 1603s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 1603s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 1603s librust-addr2line-dev librust-adler-dev librust-ahash-dev 1603s librust-aho-corasick-dev librust-allocator-api2-dev librust-arbitrary-dev 1603s librust-autocfg-dev librust-backtrace-dev librust-blobby-dev 1603s librust-block-buffer-dev librust-bumpalo-dev librust-byteorder-dev 1603s librust-bytes-dev librust-cc-dev librust-cfg-if-dev 1603s librust-compiler-builtins-dev librust-const-oid-dev librust-const-random-dev 1603s librust-const-random-macro-dev librust-cpp-demangle-dev 1603s librust-cpufeatures-dev librust-crc32fast-dev librust-critical-section-dev 1603s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 1603s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 1603s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 1603s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 1603s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 1603s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 1603s librust-hashbrown-dev librust-hex-dev librust-indexmap-dev librust-itoa-dev 1603s librust-jobserver-dev librust-js-sys-dev librust-json-event-parser-dev 1603s librust-libc-dev librust-libz-sys-dev librust-lock-api-dev librust-log-dev 1603s librust-md-5-dev librust-md5-asm-dev librust-memchr-dev librust-memmap2-dev 1603s librust-miniz-oxide-dev librust-mio-dev librust-no-panic-dev 1603s librust-object-dev librust-once-cell-dev librust-owning-ref-dev 1603s librust-oxilangtag-dev librust-oxiri-dev librust-oxrdf-dev 1603s librust-oxsdatatypes-dev librust-parking-lot-core-dev 1603s librust-parking-lot-dev librust-peg-dev librust-peg-macros-dev 1603s librust-peg-runtime-dev librust-pin-project-lite-dev librust-pkg-config-dev 1603s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 1603s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 1603s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 1603s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 1603s librust-rayon-core-dev librust-rayon-dev librust-regex-automata-dev 1603s librust-regex-dev librust-regex-syntax-dev librust-rustc-demangle-dev 1603s librust-rustc-hash-2-dev librust-rustc-std-workspace-core-dev 1603s librust-ruzstd-dev librust-ryu-dev librust-scopeguard-dev 1603s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 1603s librust-serde-json-dev librust-serde-test-dev librust-sha1-asm-dev 1603s librust-sha1-dev librust-sha2-asm-dev librust-sha2-dev librust-shlex-dev 1603s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 1603s librust-sparesults-dev librust-spargebra-dev librust-stable-deref-trait-dev 1603s librust-static-assertions-dev librust-subtle-dev librust-sval-buffer-dev 1603s librust-sval-derive-dev librust-sval-dev librust-sval-dynamic-dev 1603s librust-sval-fmt-dev librust-sval-ref-dev librust-sval-serde-dev 1603s librust-syn-1-dev librust-syn-dev librust-thiserror-1-dev 1603s librust-thiserror-impl-1-dev librust-tiny-keccak-dev librust-tokio-dev 1603s librust-tokio-macros-dev librust-tracing-attributes-dev 1603s librust-tracing-core-dev librust-tracing-dev librust-twox-hash-dev 1603s librust-typed-arena-dev librust-typenum-dev librust-unicode-ident-dev 1603s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 1603s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 1603s librust-version-check-dev librust-wasm-bindgen-backend-dev 1603s librust-wasm-bindgen-dev librust-wasm-bindgen-macro-dev 1603s librust-wasm-bindgen-macro-support-dev librust-wasm-bindgen-shared-dev 1603s librust-zerocopy-derive-dev librust-zerocopy-dev librust-zeroize-derive-dev 1603s librust-zeroize-dev libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 1603s m4 pkgconf pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 1603s 0 upgraded, 193 newly installed, 0 to remove and 0 not upgraded. 1603s Need to get 138 MB of archives. 1603s After this operation, 544 MB of additional disk space will be used. 1603s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 1604s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 1604s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 1604s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 1604s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 1604s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 1604s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 1606s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 1607s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 1607s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 1607s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 1608s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 1608s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 1608s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 1608s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 1608s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 1608s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 1608s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 1608s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 1608s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 1608s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 1608s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 1608s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 1608s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 1608s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 1608s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 1609s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 1609s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 1609s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 1609s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 1609s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 1609s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 1609s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 1609s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 1609s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 1609s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 1609s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 1609s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 1609s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 1609s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 1609s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 1609s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 1609s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 1609s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 1609s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 1609s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 1609s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 1609s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 1609s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 1609s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 1609s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 1609s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 1609s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 1609s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 1609s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 1609s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 1609s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 1609s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 1609s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 1609s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 1609s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 1609s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 1609s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 1609s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 1609s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 1609s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 1609s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 1609s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 1609s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 1609s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 1609s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 1609s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 1609s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 1609s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 1609s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 1609s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 1609s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 1609s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 1609s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 1609s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 1609s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 1609s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 1609s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 1609s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 1609s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 1609s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 1609s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 1609s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 1609s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 1609s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 1609s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 1609s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 1609s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 1609s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 1609s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 1609s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 1609s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 1609s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 1609s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 1609s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 1609s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 1610s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 1610s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 1610s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 1610s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 1610s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 1610s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 1610s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 1610s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 1610s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 1610s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 1610s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 1610s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 1610s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 1610s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 1610s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 1610s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 1610s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 1610s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 1610s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 1610s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 1610s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 1610s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 1610s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 1610s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 1610s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 1610s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 1610s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 1610s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 1610s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 1610s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 1610s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 1610s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 1610s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 1610s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 1610s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 1610s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 1610s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 1610s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 1610s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 1610s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 1610s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 1610s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 1610s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 1610s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 1610s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpufeatures-dev s390x 0.2.16-1 [15.5 kB] 1610s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 1610s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hex-dev s390x 0.4.3-2 [15.7 kB] 1610s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 1610s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 1610s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 1610s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 1610s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 1611s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 1611s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 1611s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 1611s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 1611s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 1611s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 1611s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 1611s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 1611s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 1611s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 1611s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 1611s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 1611s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 1611s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 1611s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 1611s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 1611s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 1611s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-json-event-parser-dev all 0.2.0-6 [16.6 kB] 1611s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md5-asm-dev s390x 0.5.0-2 [7516 B] 1611s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md-5-dev s390x 0.10.6-1 [17.5 kB] 1611s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 1611s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 1611s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 1611s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 1611s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 1611s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 1611s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 1611s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-runtime-dev all 0.8.3+0.8.4-3 [7008 B] 1611s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-macros-dev all 0.8.4-3 [24.4 kB] 1611s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-dev all 0.8.4-3 [21.0 kB] 1611s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 1611s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 1611s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 1611s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hash-2-dev s390x 2.0.0-1 [14.4 kB] 1611s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-asm-dev s390x 0.5.1-2 [8060 B] 1611s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-dev s390x 0.10.6-1 [16.0 kB] 1611s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-asm-dev s390x 0.6.2-2 [14.4 kB] 1611s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-dev s390x 0.10.8-1 [25.6 kB] 1611s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sparesults-dev all 0.4.0~really0.2.4+0.4.7-4build1 [27.4 kB] 1611s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spargebra-dev all 0.4.0~really0.3.4+0.4.7-4build1 [75.0 kB] 1612s Fetched 138 MB in 8s (17.6 MB/s) 1612s Selecting previously unselected package m4. 1612s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1612s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 1612s Unpacking m4 (1.4.19-5) ... 1612s Selecting previously unselected package autoconf. 1612s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 1612s Unpacking autoconf (2.72-3) ... 1612s Selecting previously unselected package autotools-dev. 1612s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 1612s Unpacking autotools-dev (20220109.1) ... 1612s Selecting previously unselected package automake. 1612s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 1612s Unpacking automake (1:1.17-3) ... 1612s Selecting previously unselected package autopoint. 1612s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 1612s Unpacking autopoint (0.23.1-1) ... 1612s Selecting previously unselected package libgit2-1.8:s390x. 1612s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 1612s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1612s Selecting previously unselected package libstd-rust-1.83:s390x. 1612s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1612s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1612s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 1612s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1612s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1613s Selecting previously unselected package libisl23:s390x. 1613s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 1613s Unpacking libisl23:s390x (0.27-1) ... 1613s Selecting previously unselected package libmpc3:s390x. 1613s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 1613s Unpacking libmpc3:s390x (1.3.1-1build2) ... 1613s Selecting previously unselected package cpp-14-s390x-linux-gnu. 1613s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package cpp-14. 1613s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package cpp-s390x-linux-gnu. 1613s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1613s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1613s Selecting previously unselected package cpp. 1613s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 1613s Unpacking cpp (4:14.2.0-1ubuntu1) ... 1613s Selecting previously unselected package libcc1-0:s390x. 1613s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package libgomp1:s390x. 1613s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package libitm1:s390x. 1613s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package libasan8:s390x. 1613s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package libubsan1:s390x. 1613s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package libgcc-14-dev:s390x. 1613s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1613s Selecting previously unselected package gcc-14-s390x-linux-gnu. 1613s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1613s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1614s Selecting previously unselected package gcc-14. 1614s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 1614s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 1614s Selecting previously unselected package gcc-s390x-linux-gnu. 1614s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1614s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1614s Selecting previously unselected package gcc. 1614s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 1614s Unpacking gcc (4:14.2.0-1ubuntu1) ... 1614s Selecting previously unselected package rustc-1.83. 1614s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1614s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1614s Selecting previously unselected package cargo-1.83. 1614s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1614s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1614s Selecting previously unselected package libdebhelper-perl. 1614s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 1614s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 1614s Selecting previously unselected package libtool. 1614s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 1614s Unpacking libtool (2.5.4-3build1) ... 1614s Selecting previously unselected package dh-autoreconf. 1614s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 1614s Unpacking dh-autoreconf (20) ... 1614s Selecting previously unselected package libarchive-zip-perl. 1614s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 1614s Unpacking libarchive-zip-perl (1.68-1) ... 1614s Selecting previously unselected package libfile-stripnondeterminism-perl. 1614s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 1614s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 1614s Selecting previously unselected package dh-strip-nondeterminism. 1614s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 1614s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 1614s Selecting previously unselected package debugedit. 1614s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 1614s Unpacking debugedit (1:5.1-2) ... 1614s Selecting previously unselected package dwz. 1614s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 1614s Unpacking dwz (0.15-1build6) ... 1614s Selecting previously unselected package gettext. 1614s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 1614s Unpacking gettext (0.23.1-1) ... 1614s Selecting previously unselected package intltool-debian. 1614s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 1614s Unpacking intltool-debian (0.35.0+20060710.6) ... 1614s Selecting previously unselected package po-debconf. 1614s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 1614s Unpacking po-debconf (1.0.21+nmu1) ... 1614s Selecting previously unselected package debhelper. 1614s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 1614s Unpacking debhelper (13.24.1ubuntu2) ... 1614s Selecting previously unselected package rustc. 1614s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 1614s Unpacking rustc (1.83.0ubuntu1) ... 1614s Selecting previously unselected package cargo. 1614s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 1614s Unpacking cargo (1.83.0ubuntu1) ... 1614s Selecting previously unselected package dh-rust. 1614s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 1614s Unpacking dh-rust (0.0.11) ... 1614s Selecting previously unselected package libpkgconf3:s390x. 1614s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 1614s Unpacking libpkgconf3:s390x (1.8.1-4) ... 1614s Selecting previously unselected package librust-cfg-if-dev:s390x. 1614s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 1614s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 1614s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 1614s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 1614s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1614s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 1614s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 1614s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1614s Selecting previously unselected package librust-unicode-ident-dev:s390x. 1614s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 1614s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 1614s Selecting previously unselected package librust-proc-macro2-dev:s390x. 1614s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 1614s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 1614s Selecting previously unselected package librust-quote-dev:s390x. 1614s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 1614s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 1614s Selecting previously unselected package librust-syn-dev:s390x. 1614s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 1614s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 1614s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 1614s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 1614s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1614s Selecting previously unselected package librust-arbitrary-dev:s390x. 1614s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 1614s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 1614s Selecting previously unselected package librust-equivalent-dev:s390x. 1614s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 1614s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 1614s Selecting previously unselected package librust-critical-section-dev:s390x. 1614s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 1614s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 1614s Selecting previously unselected package librust-serde-derive-dev:s390x. 1614s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 1614s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 1614s Selecting previously unselected package librust-serde-dev:s390x. 1614s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 1614s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 1614s Selecting previously unselected package librust-portable-atomic-dev:s390x. 1614s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 1614s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 1614s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 1614s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 1614s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1614s Selecting previously unselected package librust-libc-dev:s390x. 1614s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 1614s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 1614s Selecting previously unselected package librust-getrandom-dev:s390x. 1614s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 1614s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 1614s Selecting previously unselected package librust-smallvec-dev:s390x. 1614s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 1614s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 1614s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 1614s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 1614s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1614s Selecting previously unselected package librust-once-cell-dev:s390x. 1614s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 1614s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 1614s Selecting previously unselected package librust-crunchy-dev:s390x. 1614s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 1614s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 1614s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 1614s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 1614s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1614s Selecting previously unselected package librust-const-random-macro-dev:s390x. 1614s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 1614s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 1614s Selecting previously unselected package librust-const-random-dev:s390x. 1614s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 1614s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 1615s Selecting previously unselected package librust-version-check-dev:s390x. 1615s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 1615s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 1615s Selecting previously unselected package librust-byteorder-dev:s390x. 1615s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 1615s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 1615s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 1615s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 1615s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1615s Selecting previously unselected package librust-zerocopy-dev:s390x. 1615s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 1615s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 1615s Selecting previously unselected package librust-ahash-dev. 1615s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 1615s Unpacking librust-ahash-dev (0.8.11-9) ... 1615s Selecting previously unselected package librust-allocator-api2-dev:s390x. 1615s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 1615s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 1615s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 1615s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 1615s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1615s Selecting previously unselected package librust-either-dev:s390x. 1615s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 1615s Unpacking librust-either-dev:s390x (1.13.0-1) ... 1615s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 1615s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 1615s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1615s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 1615s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 1615s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1615s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 1615s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 1615s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1615s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 1615s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 1615s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1615s Selecting previously unselected package librust-rayon-core-dev:s390x. 1615s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 1615s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 1615s Selecting previously unselected package librust-rayon-dev:s390x. 1615s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 1615s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 1615s Selecting previously unselected package librust-hashbrown-dev:s390x. 1615s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 1615s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 1615s Selecting previously unselected package librust-indexmap-dev:s390x. 1615s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 1615s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 1615s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 1615s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 1615s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1615s Selecting previously unselected package librust-gimli-dev:s390x. 1615s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 1615s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 1615s Selecting previously unselected package librust-memmap2-dev:s390x. 1615s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 1615s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 1615s Selecting previously unselected package librust-crc32fast-dev:s390x. 1615s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 1615s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 1615s Selecting previously unselected package pkgconf-bin. 1615s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 1615s Unpacking pkgconf-bin (1.8.1-4) ... 1615s Selecting previously unselected package pkgconf:s390x. 1615s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 1615s Unpacking pkgconf:s390x (1.8.1-4) ... 1615s Selecting previously unselected package librust-pkg-config-dev:s390x. 1615s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 1615s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 1615s Selecting previously unselected package zlib1g-dev:s390x. 1615s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 1615s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1615s Selecting previously unselected package librust-libz-sys-dev:s390x. 1615s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 1615s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 1615s Selecting previously unselected package librust-adler-dev:s390x. 1615s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 1615s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 1615s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 1615s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 1615s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1615s Selecting previously unselected package librust-flate2-dev:s390x. 1615s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 1615s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 1615s Selecting previously unselected package librust-sval-derive-dev:s390x. 1615s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 1615s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 1615s Selecting previously unselected package librust-sval-dev:s390x. 1615s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 1615s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 1615s Selecting previously unselected package librust-sval-ref-dev:s390x. 1615s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 1615s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 1615s Selecting previously unselected package librust-erased-serde-dev:s390x. 1615s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 1615s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 1615s Selecting previously unselected package librust-serde-fmt-dev. 1615s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 1615s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 1615s Selecting previously unselected package librust-no-panic-dev:s390x. 1615s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 1615s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 1615s Selecting previously unselected package librust-itoa-dev:s390x. 1615s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 1615s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 1615s Selecting previously unselected package librust-ryu-dev:s390x. 1615s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 1615s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 1615s Selecting previously unselected package librust-serde-json-dev:s390x. 1615s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 1615s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 1615s Selecting previously unselected package librust-serde-test-dev:s390x. 1615s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 1615s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 1615s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 1615s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 1615s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1615s Selecting previously unselected package librust-sval-buffer-dev:s390x. 1615s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 1615s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 1615s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 1615s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 1615s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1615s Selecting previously unselected package librust-sval-fmt-dev:s390x. 1615s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 1615s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 1615s Selecting previously unselected package librust-sval-serde-dev:s390x. 1615s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 1615s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 1615s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 1615s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 1615s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1615s Selecting previously unselected package librust-value-bag-dev:s390x. 1615s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 1615s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 1615s Selecting previously unselected package librust-log-dev:s390x. 1615s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 1615s Unpacking librust-log-dev:s390x (0.4.22-1) ... 1615s Selecting previously unselected package librust-memchr-dev:s390x. 1615s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 1615s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 1615s Selecting previously unselected package librust-blobby-dev:s390x. 1615s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 1615s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 1615s Selecting previously unselected package librust-typenum-dev:s390x. 1615s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 1615s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 1615s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 1615s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 1615s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1615s Selecting previously unselected package librust-zeroize-dev:s390x. 1615s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 1615s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 1615s Selecting previously unselected package librust-generic-array-dev:s390x. 1615s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 1615s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 1615s Selecting previously unselected package librust-block-buffer-dev:s390x. 1615s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 1615s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 1615s Selecting previously unselected package librust-const-oid-dev:s390x. 1615s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 1615s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 1615s Selecting previously unselected package librust-rand-core-dev:s390x. 1615s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 1615s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 1615s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 1615s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 1615s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1615s Selecting previously unselected package librust-crypto-common-dev:s390x. 1615s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 1615s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 1615s Selecting previously unselected package librust-subtle-dev:s390x. 1615s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 1615s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 1615s Selecting previously unselected package librust-digest-dev:s390x. 1615s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 1615s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 1615s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 1615s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 1615s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1615s Selecting previously unselected package librust-rand-chacha-dev:s390x. 1615s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 1615s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 1615s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 1615s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 1615s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1615s Selecting previously unselected package librust-rand-core+std-dev:s390x. 1615s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 1615s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 1615s Selecting previously unselected package librust-rand-dev:s390x. 1615s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 1615s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 1615s Selecting previously unselected package librust-static-assertions-dev:s390x. 1615s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 1615s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 1615s Selecting previously unselected package librust-twox-hash-dev:s390x. 1615s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 1615s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 1615s Selecting previously unselected package librust-ruzstd-dev:s390x. 1615s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 1615s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 1615s Selecting previously unselected package librust-object-dev:s390x. 1615s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 1615s Unpacking librust-object-dev:s390x (0.36.5-2) ... 1615s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 1615s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 1615s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1615s Selecting previously unselected package librust-typed-arena-dev:s390x. 1615s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 1615s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 1615s Selecting previously unselected package librust-addr2line-dev:s390x. 1615s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 1615s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 1615s Selecting previously unselected package librust-aho-corasick-dev:s390x. 1615s Preparing to unpack .../137-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 1615s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 1615s Selecting previously unselected package librust-autocfg-dev:s390x. 1615s Preparing to unpack .../138-librust-autocfg-dev_1.1.0-1_s390x.deb ... 1615s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 1615s Selecting previously unselected package librust-backtrace-dev:s390x. 1615s Preparing to unpack .../139-librust-backtrace-dev_0.3.74-3_s390x.deb ... 1615s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 1615s Selecting previously unselected package librust-bumpalo-dev:s390x. 1615s Preparing to unpack .../140-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 1615s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 1615s Selecting previously unselected package librust-bytes-dev:s390x. 1615s Preparing to unpack .../141-librust-bytes-dev_1.9.0-1_s390x.deb ... 1615s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 1615s Selecting previously unselected package librust-jobserver-dev:s390x. 1615s Preparing to unpack .../142-librust-jobserver-dev_0.1.32-1_s390x.deb ... 1615s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 1615s Selecting previously unselected package librust-shlex-dev:s390x. 1615s Preparing to unpack .../143-librust-shlex-dev_1.3.0-1_s390x.deb ... 1615s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 1615s Selecting previously unselected package librust-cc-dev:s390x. 1615s Preparing to unpack .../144-librust-cc-dev_1.1.14-1_s390x.deb ... 1615s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 1615s Selecting previously unselected package librust-cpufeatures-dev:s390x. 1615s Preparing to unpack .../145-librust-cpufeatures-dev_0.2.16-1_s390x.deb ... 1615s Unpacking librust-cpufeatures-dev:s390x (0.2.16-1) ... 1615s Selecting previously unselected package librust-encoding-rs-dev:s390x. 1615s Preparing to unpack .../146-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 1615s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 1615s Selecting previously unselected package librust-hex-dev:s390x. 1616s Preparing to unpack .../147-librust-hex-dev_0.4.3-2_s390x.deb ... 1616s Unpacking librust-hex-dev:s390x (0.4.3-2) ... 1616s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 1616s Preparing to unpack .../148-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 1616s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1616s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 1616s Preparing to unpack .../149-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 1616s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1616s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 1616s Preparing to unpack .../150-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 1616s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1616s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 1616s Preparing to unpack .../151-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 1616s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1616s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 1616s Preparing to unpack .../152-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 1616s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1616s Selecting previously unselected package librust-js-sys-dev:s390x. 1616s Preparing to unpack .../153-librust-js-sys-dev_0.3.64-1_s390x.deb ... 1616s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 1616s Selecting previously unselected package librust-mio-dev:s390x. 1616s Preparing to unpack .../154-librust-mio-dev_1.0.2-3_s390x.deb ... 1616s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 1616s Selecting previously unselected package librust-owning-ref-dev:s390x. 1616s Preparing to unpack .../155-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 1616s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 1616s Selecting previously unselected package librust-scopeguard-dev:s390x. 1616s Preparing to unpack .../156-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 1616s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 1616s Selecting previously unselected package librust-lock-api-dev:s390x. 1616s Preparing to unpack .../157-librust-lock-api-dev_0.4.12-1_s390x.deb ... 1616s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 1616s Selecting previously unselected package librust-parking-lot-dev:s390x. 1616s Preparing to unpack .../158-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 1616s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 1616s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 1616s Preparing to unpack .../159-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 1616s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1616s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 1616s Preparing to unpack .../160-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 1616s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1616s Selecting previously unselected package librust-socket2-dev:s390x. 1616s Preparing to unpack .../161-librust-socket2-dev_0.5.8-1_s390x.deb ... 1616s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 1616s Selecting previously unselected package librust-tokio-macros-dev:s390x. 1616s Preparing to unpack .../162-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 1616s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 1616s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 1616s Preparing to unpack .../163-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 1616s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1616s Selecting previously unselected package librust-syn-1-dev:s390x. 1616s Preparing to unpack .../164-librust-syn-1-dev_1.0.109-3_s390x.deb ... 1616s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 1616s Selecting previously unselected package librust-valuable-derive-dev:s390x. 1616s Preparing to unpack .../165-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 1616s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 1616s Selecting previously unselected package librust-valuable-dev:s390x. 1616s Preparing to unpack .../166-librust-valuable-dev_0.1.0-4_s390x.deb ... 1616s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 1616s Selecting previously unselected package librust-tracing-core-dev:s390x. 1616s Preparing to unpack .../167-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 1616s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 1616s Selecting previously unselected package librust-tracing-dev:s390x. 1616s Preparing to unpack .../168-librust-tracing-dev_0.1.40-1_s390x.deb ... 1616s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 1616s Selecting previously unselected package librust-tokio-dev:s390x. 1616s Preparing to unpack .../169-librust-tokio-dev_1.43.0-1_s390x.deb ... 1616s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 1616s Selecting previously unselected package librust-json-event-parser-dev. 1616s Preparing to unpack .../170-librust-json-event-parser-dev_0.2.0-6_all.deb ... 1616s Unpacking librust-json-event-parser-dev (0.2.0-6) ... 1616s Selecting previously unselected package librust-md5-asm-dev:s390x. 1616s Preparing to unpack .../171-librust-md5-asm-dev_0.5.0-2_s390x.deb ... 1616s Unpacking librust-md5-asm-dev:s390x (0.5.0-2) ... 1616s Selecting previously unselected package librust-md-5-dev:s390x. 1616s Preparing to unpack .../172-librust-md-5-dev_0.10.6-1_s390x.deb ... 1616s Unpacking librust-md-5-dev:s390x (0.10.6-1) ... 1616s Selecting previously unselected package librust-oxilangtag-dev. 1616s Preparing to unpack .../173-librust-oxilangtag-dev_0.1.5-4_all.deb ... 1616s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 1616s Selecting previously unselected package librust-oxiri-dev. 1616s Preparing to unpack .../174-librust-oxiri-dev_0.2.11-2_all.deb ... 1616s Unpacking librust-oxiri-dev (0.2.11-2) ... 1616s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 1616s Preparing to unpack .../175-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 1616s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1616s Selecting previously unselected package librust-thiserror-1-dev:s390x. 1616s Preparing to unpack .../176-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 1616s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 1616s Selecting previously unselected package librust-oxsdatatypes-dev. 1616s Preparing to unpack .../177-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 1616s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1616s Selecting previously unselected package librust-quick-xml-dev:s390x. 1616s Preparing to unpack .../178-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 1616s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 1616s Selecting previously unselected package librust-oxrdf-dev. 1616s Preparing to unpack .../179-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1616s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1616s Selecting previously unselected package librust-peg-runtime-dev. 1616s Preparing to unpack .../180-librust-peg-runtime-dev_0.8.3+0.8.4-3_all.deb ... 1616s Unpacking librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1616s Selecting previously unselected package librust-peg-macros-dev. 1616s Preparing to unpack .../181-librust-peg-macros-dev_0.8.4-3_all.deb ... 1616s Unpacking librust-peg-macros-dev (0.8.4-3) ... 1616s Selecting previously unselected package librust-peg-dev. 1616s Preparing to unpack .../182-librust-peg-dev_0.8.4-3_all.deb ... 1616s Unpacking librust-peg-dev (0.8.4-3) ... 1616s Selecting previously unselected package librust-regex-syntax-dev:s390x. 1616s Preparing to unpack .../183-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 1616s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 1616s Selecting previously unselected package librust-regex-automata-dev:s390x. 1616s Preparing to unpack .../184-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 1616s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 1616s Selecting previously unselected package librust-regex-dev:s390x. 1616s Preparing to unpack .../185-librust-regex-dev_1.11.1-2_s390x.deb ... 1616s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 1616s Selecting previously unselected package librust-rustc-hash-2-dev:s390x. 1616s Preparing to unpack .../186-librust-rustc-hash-2-dev_2.0.0-1_s390x.deb ... 1616s Unpacking librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1616s Selecting previously unselected package librust-sha1-asm-dev:s390x. 1616s Preparing to unpack .../187-librust-sha1-asm-dev_0.5.1-2_s390x.deb ... 1616s Unpacking librust-sha1-asm-dev:s390x (0.5.1-2) ... 1616s Selecting previously unselected package librust-sha1-dev:s390x. 1616s Preparing to unpack .../188-librust-sha1-dev_0.10.6-1_s390x.deb ... 1616s Unpacking librust-sha1-dev:s390x (0.10.6-1) ... 1616s Selecting previously unselected package librust-sha2-asm-dev:s390x. 1616s Preparing to unpack .../189-librust-sha2-asm-dev_0.6.2-2_s390x.deb ... 1616s Unpacking librust-sha2-asm-dev:s390x (0.6.2-2) ... 1616s Selecting previously unselected package librust-sha2-dev:s390x. 1616s Preparing to unpack .../190-librust-sha2-dev_0.10.8-1_s390x.deb ... 1616s Unpacking librust-sha2-dev:s390x (0.10.8-1) ... 1616s Selecting previously unselected package librust-sparesults-dev. 1616s Preparing to unpack .../191-librust-sparesults-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1616s Unpacking librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1616s Selecting previously unselected package librust-spargebra-dev. 1616s Preparing to unpack .../192-librust-spargebra-dev_0.4.0~really0.3.4+0.4.7-4build1_all.deb ... 1616s Unpacking librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1616s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1616s Setting up librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1616s Setting up librust-either-dev:s390x (1.13.0-1) ... 1616s Setting up librust-adler-dev:s390x (1.0.2-2) ... 1616s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 1616s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1616s Setting up libarchive-zip-perl (1.68-1) ... 1616s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 1616s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 1616s Setting up m4 (1.4.19-5) ... 1616s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1616s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1616s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 1616s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 1616s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 1616s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1616s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1616s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1616s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1616s Setting up autotools-dev (20220109.1) ... 1616s Setting up libpkgconf3:s390x (1.8.1-4) ... 1616s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1616s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 1616s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1616s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 1616s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 1616s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1616s Setting up libmpc3:s390x (1.3.1-1build2) ... 1616s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 1616s Setting up autopoint (0.23.1-1) ... 1616s Setting up pkgconf-bin (1.8.1-4) ... 1616s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 1616s Setting up autoconf (2.72-3) ... 1616s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 1616s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1616s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 1616s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 1616s Setting up dwz (0.15-1build6) ... 1616s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 1616s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 1616s Setting up debugedit (1:5.1-2) ... 1616s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 1616s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 1616s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 1616s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 1616s Setting up libisl23:s390x (0.27-1) ... 1616s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1616s Setting up librust-hex-dev:s390x (0.4.3-2) ... 1616s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 1616s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1616s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 1616s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 1616s Setting up automake (1:1.17-3) ... 1616s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 1616s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 1616s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1616s Setting up librust-libc-dev:s390x (0.2.169-1) ... 1616s Setting up gettext (0.23.1-1) ... 1616s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1616s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1616s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 1616s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 1616s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 1616s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 1616s Setting up librust-cpufeatures-dev:s390x (0.2.16-1) ... 1616s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 1616s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 1616s Setting up pkgconf:s390x (1.8.1-4) ... 1616s Setting up intltool-debian (0.35.0+20060710.6) ... 1616s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1616s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1616s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 1616s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1616s Setting up cpp-14 (14.2.0-17ubuntu1) ... 1616s Setting up dh-strip-nondeterminism (1.14.1-2) ... 1616s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 1616s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1616s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1616s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 1616s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 1616s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1616s Setting up po-debconf (1.0.21+nmu1) ... 1616s Setting up librust-quote-dev:s390x (1.0.37-1) ... 1616s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 1616s Setting up librust-syn-dev:s390x (2.0.96-2) ... 1616s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 1616s Setting up librust-peg-macros-dev (0.8.4-3) ... 1616s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1616s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1616s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 1616s Setting up librust-cc-dev:s390x (1.1.14-1) ... 1616s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1616s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 1616s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 1616s Setting up cpp (4:14.2.0-1ubuntu1) ... 1616s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 1616s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1616s Setting up librust-sha1-asm-dev:s390x (0.5.1-2) ... 1616s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 1616s Setting up librust-serde-dev:s390x (1.0.217-1) ... 1616s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1616s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1616s Setting up librust-oxilangtag-dev (0.1.5-4) ... 1616s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 1616s Setting up librust-peg-dev (0.8.4-3) ... 1616s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 1616s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1616s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 1616s Setting up librust-serde-fmt-dev (1.0.3-4) ... 1616s Setting up librust-oxiri-dev (0.2.11-2) ... 1616s Setting up librust-sha2-asm-dev:s390x (0.6.2-2) ... 1616s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 1616s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 1616s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 1616s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 1616s Setting up librust-sval-dev:s390x (2.6.1-2) ... 1616s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 1616s Setting up gcc-14 (14.2.0-17ubuntu1) ... 1616s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 1616s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 1616s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1616s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 1616s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 1616s Setting up librust-md5-asm-dev:s390x (0.5.0-2) ... 1616s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 1616s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 1616s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 1616s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 1616s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 1616s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 1616s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1616s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 1616s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1616s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 1616s Setting up libtool (2.5.4-3build1) ... 1616s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 1616s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 1616s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 1616s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 1616s Setting up gcc (4:14.2.0-1ubuntu1) ... 1616s Setting up dh-autoreconf (20) ... 1616s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 1616s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1616s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 1616s Setting up rustc (1.83.0ubuntu1) ... 1616s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1616s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 1616s Setting up librust-digest-dev:s390x (0.10.7-2) ... 1616s Setting up librust-md-5-dev:s390x (0.10.6-1) ... 1616s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 1616s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 1616s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 1616s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 1616s Setting up librust-sha1-dev:s390x (0.10.6-1) ... 1616s Setting up debhelper (13.24.1ubuntu2) ... 1616s Setting up librust-ahash-dev (0.8.11-9) ... 1616s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 1616s Setting up librust-sha2-dev:s390x (0.10.8-1) ... 1616s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1616s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1616s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 1616s Setting up cargo (1.83.0ubuntu1) ... 1616s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 1616s Setting up dh-rust (0.0.11) ... 1616s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 1616s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 1616s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 1616s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1616s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 1616s Setting up librust-log-dev:s390x (0.4.22-1) ... 1616s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 1616s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 1616s Setting up librust-rand-dev:s390x (0.8.5-1) ... 1616s Setting up librust-mio-dev:s390x (1.0.2-3) ... 1616s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1616s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 1616s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1616s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 1616s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1616s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 1616s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1616s Setting up librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1616s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 1616s Setting up librust-regex-dev:s390x (1.11.1-2) ... 1616s Setting up librust-object-dev:s390x (0.36.5-2) ... 1616s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 1616s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1616s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 1616s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 1616s Setting up librust-json-event-parser-dev (0.2.0-6) ... 1616s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 1616s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1616s Setting up librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1616s Setting up librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1616s Processing triggers for install-info (7.1.1-1) ... 1616s Processing triggers for libc-bin (2.41-1ubuntu1) ... 1616s Processing triggers for man-db (2.13.0-1) ... 1618s autopkgtest: DBG: testbed command exited with code 0 1618s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-spargebra:default-packages.all"], kind short, sout raw, serr pipe, env [] 1618s autopkgtest: DBG: testbed command exited with code 0 1618s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spargebra%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-spargebra%3Adefault-packages.all 1618s autopkgtest: DBG: got reply from testbed: ok 1618s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 1618s autopkgtest: DBG: testbed command exited with code 1 1618s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 1618s autopkgtest: DBG: testbed command exited with code 0 1618s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 1620s autopkgtest: DBG: got reply from testbed: ok 1620s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 1620s autopkgtest: DBG: testbed command exited with code 0 1620s autopkgtest [01:53:53]: test rust-spargebra:default: /usr/share/dh-rust/bin/cargo-auto-test spargebra 0.3.4 --all-targets 1620s autopkgtest [01:53:53]: test rust-spargebra:default: [----------------------- 1620s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-spargebra:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-spargebra:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-spargebra:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test spargebra 0.3.4 --all-targets'"], kind test, sout raw, serr raw, env [] 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-spargebra:default-artifacts 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-spargebra:default-stderr 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-spargebra:default-stdout 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test spargebra 0.3.4 --all-targets 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.jdCnBMo2vJ/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-spargebra:default-stdout 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.jdCnBMo2vJ/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-spargebra:default-stdout 1620s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 3099 to /tmp/autopkgtest_script_pid 1620s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1620s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1620s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.fLHf4boK3k/registry/ 1620s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1620s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1620s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 1621s Compiling proc-macro2 v1.0.92 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.fLHf4boK3k/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn` 1621s Compiling unicode-ident v1.0.13 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.fLHf4boK3k/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn` 1621s Compiling libc v0.2.169 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1621s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.fLHf4boK3k/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.fLHf4boK3k/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn` 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.fLHf4boK3k/target/release/deps:/tmp/tmp.fLHf4boK3k/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.fLHf4boK3k/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.fLHf4boK3k/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 1621s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 1621s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 1621s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 1621s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps OUT_DIR=/tmp/tmp.fLHf4boK3k/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.fLHf4boK3k/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern unicode_ident=/tmp/tmp.fLHf4boK3k/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1621s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.fLHf4boK3k/target/release/deps:/tmp/tmp.fLHf4boK3k/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.fLHf4boK3k/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 1621s [libc 0.2.169] cargo:rerun-if-changed=build.rs 1621s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 1621s [libc 0.2.169] cargo:rustc-cfg=freebsd11 1621s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 1621s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1621s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps OUT_DIR=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.fLHf4boK3k/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 1621s warning: unused import: `crate::ntptimeval` 1621s --> /tmp/tmp.fLHf4boK3k/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 1621s | 1621s 5 | use crate::ntptimeval; 1621s | ^^^^^^^^^^^^^^^^^ 1621s | 1621s = note: `#[warn(unused_imports)]` on by default 1621s 1621s Compiling quote v1.0.37 1621s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.fLHf4boK3k/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern proc_macro2=/tmp/tmp.fLHf4boK3k/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 1621s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 1621s | 1621s = note: this feature is not stably supported; its behavior can change in the future 1621s 1622s warning: `libc` (lib) generated 2 warnings 1622s Compiling byteorder v1.5.0 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.fLHf4boK3k/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1622s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 1622s Compiling syn v2.0.96 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.fLHf4boK3k/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=25776e54546dab2e -C extra-filename=-25776e54546dab2e --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern proc_macro2=/tmp/tmp.fLHf4boK3k/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.fLHf4boK3k/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.fLHf4boK3k/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 1622s Compiling cfg-if v1.0.0 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 1622s parameters. Structured like an if-else chain, the first matching branch is the 1622s item that gets emitted. 1622s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.fLHf4boK3k/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1622s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 1622s Compiling getrandom v0.2.15 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.fLHf4boK3k/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern cfg_if=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1622s warning: unexpected `cfg` condition value: `js` 1622s --> /tmp/tmp.fLHf4boK3k/registry/getrandom-0.2.15/src/lib.rs:334:25 1622s | 1622s 334 | } else if #[cfg(all(feature = "js", 1622s | ^^^^^^^^^^^^^^ 1622s | 1622s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 1622s = help: consider adding `js` as a feature in `Cargo.toml` 1622s = note: see for more information about checking conditional configuration 1622s = note: `#[warn(unexpected_cfgs)]` on by default 1622s 1622s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 1622s Compiling rand_core v0.6.4 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 1622s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern getrandom=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1622s warning: unexpected `cfg` condition name: `doc_cfg` 1622s --> /tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/src/lib.rs:38:13 1622s | 1622s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1622s | ^^^^^^^ 1622s | 1622s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1622s = help: consider using a Cargo feature instead 1622s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1622s [lints.rust] 1622s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1622s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1622s = note: see for more information about checking conditional configuration 1622s = note: `#[warn(unexpected_cfgs)]` on by default 1622s 1622s warning: unexpected `cfg` condition name: `doc_cfg` 1622s --> /tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/src/error.rs:50:16 1622s | 1622s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1622s | ^^^^^^^ 1622s | 1622s = help: consider using a Cargo feature instead 1622s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1622s [lints.rust] 1622s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1622s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1622s = note: see for more information about checking conditional configuration 1622s 1622s warning: unexpected `cfg` condition name: `doc_cfg` 1622s --> /tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/src/error.rs:64:16 1622s | 1622s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1622s | ^^^^^^^ 1622s | 1622s = help: consider using a Cargo feature instead 1622s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1622s [lints.rust] 1622s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1622s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1622s = note: see for more information about checking conditional configuration 1622s 1622s warning: unexpected `cfg` condition name: `doc_cfg` 1622s --> /tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/src/error.rs:75:16 1622s | 1622s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1622s | ^^^^^^^ 1622s | 1622s = help: consider using a Cargo feature instead 1622s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1622s [lints.rust] 1622s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1622s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1622s = note: see for more information about checking conditional configuration 1622s 1622s warning: unexpected `cfg` condition name: `doc_cfg` 1622s --> /tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/src/os.rs:46:12 1622s | 1622s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1622s | ^^^^^^^ 1622s | 1622s = help: consider using a Cargo feature instead 1622s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1622s [lints.rust] 1622s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1622s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1622s = note: see for more information about checking conditional configuration 1622s 1622s warning: unexpected `cfg` condition name: `doc_cfg` 1622s --> /tmp/tmp.fLHf4boK3k/registry/rand_core-0.6.4/src/lib.rs:411:16 1622s | 1622s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1622s | ^^^^^^^ 1622s | 1622s = help: consider using a Cargo feature instead 1622s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1622s [lints.rust] 1622s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1622s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1622s = note: see for more information about checking conditional configuration 1622s 1622s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 1622s Compiling thiserror v1.0.69 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.fLHf4boK3k/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn` 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.fLHf4boK3k/target/release/deps:/tmp/tmp.fLHf4boK3k/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.fLHf4boK3k/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 1622s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 1622s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 1622s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 1622s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1622s Compiling peg-runtime v0.8.3 1622s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=8060b0318fa1ed9f -C extra-filename=-8060b0318fa1ed9f --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn` 1622s warning: unexpected `cfg` condition value: `unstable` 1622s --> /tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3/lib.rs:2:13 1622s | 1622s 2 | #![cfg_attr(feature = "unstable", feature(error_in_core))] 1622s | ^^^^^^^^^^^^^^^^^^^^ 1622s | 1622s = note: expected values for `feature` are: `std` 1622s = help: consider adding `unstable` as a feature in `Cargo.toml` 1622s = note: see for more information about checking conditional configuration 1622s = note: `#[warn(unexpected_cfgs)]` on by default 1622s 1622s warning: unexpected `cfg` condition value: `unstable` 1622s --> /tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3/error.rs:66:28 1622s | 1622s 66 | #[cfg(any(feature = "std", feature = "unstable"))] 1622s | ^^^^^^^^^^^^^^^^^^^^ 1622s | 1622s = note: expected values for `feature` are: `std` 1622s = help: consider adding `unstable` as a feature in `Cargo.toml` 1622s = note: see for more information about checking conditional configuration 1622s 1623s warning: `peg-runtime` (lib) generated 2 warnings 1623s Compiling peg-macros v0.8.4 1623s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_macros CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-macros-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/peg-macros-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Procedural macros for rust-peg. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-macros CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-macros-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name peg_macros --edition=2018 /tmp/tmp.fLHf4boK3k/registry/peg-macros-0.8.4/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("trace"))' -C metadata=39a0290f33394d81 -C extra-filename=-39a0290f33394d81 --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern peg_runtime=/tmp/tmp.fLHf4boK3k/target/release/deps/libpeg_runtime-8060b0318fa1ed9f.rlib --extern proc_macro2=/tmp/tmp.fLHf4boK3k/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.fLHf4boK3k/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern proc_macro --cap-lints warn` 1624s Compiling oxiri v0.2.11 1624s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 1624s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.fLHf4boK3k/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1624s Compiling zerocopy-derive v0.7.34 1624s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.fLHf4boK3k/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ade2215b6e585001 -C extra-filename=-ade2215b6e585001 --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern proc_macro2=/tmp/tmp.fLHf4boK3k/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.fLHf4boK3k/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.fLHf4boK3k/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 1624s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 1624s Compiling thiserror-impl v1.0.69 1624s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.fLHf4boK3k/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=282169f5dfa653c6 -C extra-filename=-282169f5dfa653c6 --out-dir /tmp/tmp.fLHf4boK3k/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern proc_macro2=/tmp/tmp.fLHf4boK3k/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.fLHf4boK3k/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.fLHf4boK3k/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 1625s Compiling zerocopy v0.7.34 1625s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=05091faa96a9c488 -C extra-filename=-05091faa96a9c488 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern byteorder=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.fLHf4boK3k/target/release/deps/libzerocopy_derive-ade2215b6e585001.so --cap-lints warn -Ctarget-feature=+backchain` 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/util.rs:597:32 1625s | 1625s 597 | let remainder = t.addr() % mem::align_of::(); 1625s | ^^^^^^^^^^^^^^^^^^ 1625s | 1625s note: the lint level is defined here 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:174:5 1625s | 1625s 174 | unused_qualifications, 1625s | ^^^^^^^^^^^^^^^^^^^^^ 1625s help: remove the unnecessary path segments 1625s | 1625s 597 - let remainder = t.addr() % mem::align_of::(); 1625s 597 + let remainder = t.addr() % align_of::(); 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:333:35 1625s | 1625s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1625s | ^^^^^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1625s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:488:44 1625s | 1625s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 1625s | ^^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 1625s 488 + align: match NonZeroUsize::new(align_of::()) { 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:492:49 1625s | 1625s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1625s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:511:44 1625s | 1625s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 1625s | ^^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 1625s 511 + align: match NonZeroUsize::new(align_of::()) { 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:517:29 1625s | 1625s 517 | _elem_size: mem::size_of::(), 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 517 - _elem_size: mem::size_of::(), 1625s 517 + _elem_size: size_of::(), 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:1418:19 1625s | 1625s 1418 | let len = mem::size_of_val(self); 1625s | ^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 1418 - let len = mem::size_of_val(self); 1625s 1418 + let len = size_of_val(self); 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:2714:19 1625s | 1625s 2714 | let len = mem::size_of_val(self); 1625s | ^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 2714 - let len = mem::size_of_val(self); 1625s 2714 + let len = size_of_val(self); 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:2789:19 1625s | 1625s 2789 | let len = mem::size_of_val(self); 1625s | ^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 2789 - let len = mem::size_of_val(self); 1625s 2789 + let len = size_of_val(self); 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:2863:27 1625s | 1625s 2863 | if bytes.len() != mem::size_of_val(self) { 1625s | ^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 2863 - if bytes.len() != mem::size_of_val(self) { 1625s 2863 + if bytes.len() != size_of_val(self) { 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:2920:20 1625s | 1625s 2920 | let size = mem::size_of_val(self); 1625s | ^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 2920 - let size = mem::size_of_val(self); 1625s 2920 + let size = size_of_val(self); 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:2981:45 1625s | 1625s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1625s | ^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1625s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4161:27 1625s | 1625s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1625s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4176:26 1625s | 1625s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1625s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4179:46 1625s | 1625s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1625s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4194:46 1625s | 1625s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 1625s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4221:26 1625s | 1625s 4221 | .checked_rem(mem::size_of::()) 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4221 - .checked_rem(mem::size_of::()) 1625s 4221 + .checked_rem(size_of::()) 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4243:34 1625s | 1625s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 1625s 4243 + let expected_len = match size_of::().checked_mul(count) { 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4268:34 1625s | 1625s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 1625s 4268 + let expected_len = match size_of::().checked_mul(count) { 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4795:25 1625s | 1625s 4795 | let elem_size = mem::size_of::(); 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4795 - let elem_size = mem::size_of::(); 1625s 4795 + let elem_size = size_of::(); 1625s | 1625s 1625s warning: unnecessary qualification 1625s --> /tmp/tmp.fLHf4boK3k/registry/zerocopy-0.7.34/src/lib.rs:4825:25 1625s | 1625s 4825 | let elem_size = mem::size_of::(); 1625s | ^^^^^^^^^^^^^^^^^ 1625s | 1625s help: remove the unnecessary path segments 1625s | 1625s 4825 - let elem_size = mem::size_of::(); 1625s 4825 + let elem_size = size_of::(); 1625s | 1625s 1625s Compiling ppv-lite86 v0.2.20 1625s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.fLHf4boK3k/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=19f965d8a4b7f765 -C extra-filename=-19f965d8a4b7f765 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern zerocopy=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-05091faa96a9c488.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1625s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 1625s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps OUT_DIR=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.fLHf4boK3k/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=27dfaf5cbfbe8b32 -C extra-filename=-27dfaf5cbfbe8b32 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern thiserror_impl=/tmp/tmp.fLHf4boK3k/target/release/deps/libthiserror_impl-282169f5dfa653c6.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 1626s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 1626s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.fLHf4boK3k/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=25bd9d7b1e7b26a9 -C extra-filename=-25bd9d7b1e7b26a9 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1626s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 1626s Compiling rand_chacha v0.3.1 1626s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 1626s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.fLHf4boK3k/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=f79f49c44487231e -C extra-filename=-f79f49c44487231e --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern ppv_lite86=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-19f965d8a4b7f765.rmeta --extern rand_core=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1626s warning: `peg-runtime` (lib) generated 3 warnings (3 duplicates) 1626s Compiling rand v0.8.5 1626s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 1626s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=2fe9818164ef43c6 -C extra-filename=-2fe9818164ef43c6 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern libc=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-f79f49c44487231e.rmeta --extern rand_core=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/lib.rs:52:13 1626s | 1626s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s = note: `#[warn(unexpected_cfgs)]` on by default 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/lib.rs:53:13 1626s | 1626s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1626s | ^^^^^^^ 1626s | 1626s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/lib.rs:181:12 1626s | 1626s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/mod.rs:116:12 1626s | 1626s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `features` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 1626s | 1626s 162 | #[cfg(features = "nightly")] 1626s | ^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: see for more information about checking conditional configuration 1626s help: there is a config with a similar name and value 1626s | 1626s 162 | #[cfg(feature = "nightly")] 1626s | ~~~~~~~ 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:15:7 1626s | 1626s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:156:7 1626s | 1626s 156 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:158:7 1626s | 1626s 158 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:160:7 1626s | 1626s 160 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:162:7 1626s | 1626s 162 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:165:7 1626s | 1626s 165 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:167:7 1626s | 1626s 167 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/float.rs:169:7 1626s | 1626s 169 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:13:32 1626s | 1626s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:15:35 1626s | 1626s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:19:7 1626s | 1626s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:112:7 1626s | 1626s 112 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:142:7 1626s | 1626s 142 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:144:7 1626s | 1626s 144 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:146:7 1626s | 1626s 146 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:148:7 1626s | 1626s 148 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:150:7 1626s | 1626s 150 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:152:7 1626s | 1626s 152 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/integer.rs:155:5 1626s | 1626s 155 | feature = "simd_support", 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:11:7 1626s | 1626s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:144:7 1626s | 1626s 144 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `std` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:235:11 1626s | 1626s 235 | #[cfg(not(std))] 1626s | ^^^ help: found config with similar value: `feature = "std"` 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:363:7 1626s | 1626s 363 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:423:7 1626s | 1626s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 1626s | ^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:424:7 1626s | 1626s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 1626s | ^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:425:7 1626s | 1626s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 1626s | ^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:426:7 1626s | 1626s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 1626s | ^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:427:7 1626s | 1626s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 1626s | ^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:428:7 1626s | 1626s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 1626s | ^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:429:7 1626s | 1626s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 1626s | ^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `std` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1626s | 1626s 291 | #[cfg(not(std))] 1626s | ^^^ help: found config with similar value: `feature = "std"` 1626s ... 1626s 359 | scalar_float_impl!(f32, u32); 1626s | ---------------------------- in this macro invocation 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1626s 1626s warning: unexpected `cfg` condition name: `std` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1626s | 1626s 291 | #[cfg(not(std))] 1626s | ^^^ help: found config with similar value: `feature = "std"` 1626s ... 1626s 360 | scalar_float_impl!(f64, u64); 1626s | ---------------------------- in this macro invocation 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 1626s | 1626s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 1626s | 1626s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 1626s | 1626s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 1626s | 1626s 572 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 1626s | 1626s 679 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 1626s | 1626s 687 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 1626s | 1626s 696 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 1626s | 1626s 706 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 1626s | 1626s 1001 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 1626s | 1626s 1003 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 1626s | 1626s 1005 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 1626s | 1626s 1007 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 1626s | 1626s 1010 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 1626s | 1626s 1012 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition value: `simd_support` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 1626s | 1626s 1014 | #[cfg(feature = "simd_support")] 1626s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1626s | 1626s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1626s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/rng.rs:395:12 1626s | 1626s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/rngs/mod.rs:99:12 1626s | 1626s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/rngs/mod.rs:118:12 1626s | 1626s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/rngs/std.rs:32:12 1626s | 1626s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/rngs/thread.rs:60:12 1626s | 1626s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/rngs/thread.rs:87:12 1626s | 1626s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/mod.rs:29:12 1626s | 1626s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/mod.rs:623:12 1626s | 1626s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/index.rs:276:12 1626s | 1626s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/mod.rs:114:16 1626s | 1626s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/mod.rs:142:16 1626s | 1626s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/mod.rs:170:16 1626s | 1626s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/mod.rs:219:16 1626s | 1626s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1626s warning: unexpected `cfg` condition name: `doc_cfg` 1626s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/seq/mod.rs:465:16 1626s | 1626s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1626s | ^^^^^^^ 1626s | 1626s = help: consider using a Cargo feature instead 1626s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1626s [lints.rust] 1626s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1626s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1626s = note: see for more information about checking conditional configuration 1626s 1627s warning: trait `Float` is never used 1627s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:238:18 1627s | 1627s 238 | pub(crate) trait Float: Sized { 1627s | ^^^^^ 1627s | 1627s = note: `#[warn(dead_code)]` on by default 1627s 1627s warning: associated items `lanes`, `extract`, and `replace` are never used 1627s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:247:8 1627s | 1627s 245 | pub(crate) trait FloatAsSIMD: Sized { 1627s | ----------- associated items in this trait 1627s 246 | #[inline(always)] 1627s 247 | fn lanes() -> usize { 1627s | ^^^^^ 1627s ... 1627s 255 | fn extract(self, index: usize) -> Self { 1627s | ^^^^^^^ 1627s ... 1627s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 1627s | ^^^^^^^ 1627s 1627s warning: method `all` is never used 1627s --> /tmp/tmp.fLHf4boK3k/registry/rand-0.8.5/src/distributions/utils.rs:268:8 1627s | 1627s 266 | pub(crate) trait BoolAsSIMD: Sized { 1627s | ---------- method in this trait 1627s 267 | fn any(self) -> bool; 1627s 268 | fn all(self) -> bool; 1627s | ^^^ 1627s 1627s warning: `rand` (lib) generated 70 warnings (1 duplicate) 1627s Compiling oxilangtag v0.1.5 1627s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 1627s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.fLHf4boK3k/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1628s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 1628s Compiling oxrdf v0.2.4 1628s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 1628s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.fLHf4boK3k/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=45fd1d95441d822e -C extra-filename=-45fd1d95441d822e --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern oxilangtag=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern rand=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rmeta --extern thiserror=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1628s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 1628s Compiling peg v0.8.4 1628s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg CARGO_MANIFEST_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.fLHf4boK3k/registry/peg-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='A simple Parsing Expression Grammar (PEG) parser generator.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION=1.68.0 CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.fLHf4boK3k/registry/peg-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name peg --edition=2018 /tmp/tmp.fLHf4boK3k/registry/peg-0.8.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "trace"))' -C metadata=93f3c4f7744a6516 -C extra-filename=-93f3c4f7744a6516 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern peg_macros=/tmp/tmp.fLHf4boK3k/target/release/deps/libpeg_macros-39a0290f33394d81.so --extern peg_runtime=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libpeg_runtime-25bd9d7b1e7b26a9.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1628s warning: `peg` (lib) generated 1 warning (1 duplicate) 1633s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 1633s Compiling spargebra v0.3.4 (/usr/share/cargo/registry/spargebra-0.3.4) 1633s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=spargebra CARGO_MANIFEST_DIR=/usr/share/cargo/registry/spargebra-0.3.4 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/spargebra-0.3.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL parser 1633s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spargebra CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.3.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/spargebra-0.3.4 LD_LIBRARY_PATH=/tmp/tmp.fLHf4boK3k/target/release/deps rustc --crate-name spargebra --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=07a3130ab73e0847 -C extra-filename=-07a3130ab73e0847 --out-dir /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.fLHf4boK3k/target/release/deps --extern oxilangtag=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rlib --extern oxiri=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rlib --extern oxrdf=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-45fd1d95441d822e.rlib --extern peg=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libpeg-93f3c4f7744a6516.rlib --extern rand=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rlib --extern thiserror=/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rlib -Ctarget-feature=+backchain` 1634s warning: `spargebra` (lib test) generated 1 warning (1 duplicate) 1634s Finished `release` profile [optimized] target(s) in 14.11s 1634s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/spargebra-0.3.4 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/spargebra-0.3.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL parser 1634s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spargebra CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.3.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.fLHf4boK3k/target/s390x-unknown-linux-gnu/release/deps/spargebra-07a3130ab73e0847` 1634s 1634s running 0 tests 1634s 1634s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 1634s 1635s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 1635s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 1635s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 1635s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 1635s autopkgtest: DBG: testbed command exited with code 0 1635s autopkgtest [01:54:08]: test rust-spargebra:default: -----------------------] 1635s autopkgtest: DBG: testbed executing test finished with exit status 0 1635s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spargebra%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-spargebra%3Adefault-stdout 1635s autopkgtest: DBG: got reply from testbed: ok 1635s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spargebra%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-spargebra%3Adefault-stderr 1635s autopkgtest: DBG: got reply from testbed: ok 1635s autopkgtest [01:54:08]: test rust-spargebra:default: - - - - - - - - - - results - - - - - - - - - - 1635s rust-spargebra:default PASS 1635s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-spargebra%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 1636s autopkgtest: DBG: got reply from testbed: ok 1636s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-spargebra:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1636s autopkgtest: DBG: testbed command exited with code 0 1636s autopkgtest [01:54:09]: test rust-sparopt:default: preparing testbed 1636s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-spargebra-0.3+default-dev'], deps_new=['dh-rust', 'librust-sparopt-0.2+default-dev'] 1636s autopkgtest: DBG: testbed reset 1636s autopkgtest: DBG: sending command to testbed: revert 1740s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 1740s autopkgtest: DBG: sending command to testbed: print-execute-command 1740s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 1740s autopkgtest: DBG: sending command to testbed: capabilities 1740s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 1740s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 1740s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1740s autopkgtest: DBG: testbed command exited with code 0 1740s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 1741s autopkgtest: DBG: got reply from testbed: ok 1741s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1741s autopkgtest: DBG: testbed command exited with code 0 1741s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1741s autopkgtest: DBG: testbed command exited with code 0 1741s autopkgtest [01:55:54]: testbed dpkg architecture: s390x 1741s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1741s autopkgtest: DBG: testbed command exited with code 0 1741s autopkgtest [01:55:54]: testbed apt version: 2.9.28 1741s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1741s autopkgtest: DBG: testbed command exited with code 0 1741s autopkgtest: DBG: testbed has eatmydata 1741s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1741s autopkgtest: DBG: testbed command exited with code 0 1741s autopkgtest [01:55:54]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1741s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1742s autopkgtest: DBG: testbed command exited with code 0 1742s autopkgtest [01:55:55]: testbed release detected to be: plucky 1742s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 1742s autopkgtest: DBG: testbed command exited with code 0 1742s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 1742s autopkgtest: DBG: testbed command exited with code 0 1742s autopkgtest: DBG: adding APT source: Types: deb deb-src 1742s URIs: http://ftpmaster.internal/ubuntu/ 1742s Suites: plucky-proposed 1742s Components: main restricted universe multiverse 1742s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1742s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 1742s autopkgtest: DBG: testbed command exited with code 0 1742s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1742s Package: * 1742s Pin: release plucky-proposed 1742s Pin-Priority: 500 1742s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 1742s autopkgtest: DBG: testbed command exited with code 0 1742s autopkgtest [01:55:55]: updating testbed package index (apt update) 1742s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1743s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1743s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1743s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1743s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1743s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 1743s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 1743s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1743s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 1743s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 1743s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1743s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 1743s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 1743s Fetched 2083 kB in 1s (2154 kB/s) 1744s Reading package lists... 1744s autopkgtest: DBG: testbed command exited with code 0 1744s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1744s Package: * 1744s Pin: release plucky-proposed 1744s Pin-Priority: 100 1744s 1744s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 1744s Pin: release plucky-proposed 1744s Pin-Priority: 995 1744s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1744s autopkgtest: DBG: testbed command exited with code 0 1744s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1744s autopkgtest: DBG: testbed command exited with code 0 1744s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1745s + lsb_release --codename --short 1745s + RELEASE=plucky 1745s + cat 1745s + [ plucky != trusty ] 1745s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1745s Reading package lists... 1745s Building dependency tree... 1745s Reading state information... 1745s Calculating upgrade... 1745s The following packages were automatically installed and are no longer required: 1745s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1745s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1745s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1745s linux-tools-6.11.0-8-generic 1745s Use 'sudo apt autoremove' to remove them. 1745s The following packages will be upgraded: 1745s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 1745s libxdmcp6 1745s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1745s Need to get 1471 kB of archives. 1745s After this operation, 24.6 kB of additional disk space will be used. 1745s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 1745s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 1745s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 1745s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 1745s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 1745s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 1745s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 1745s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 1746s Preconfiguring packages ... 1746s Fetched 1471 kB in 1s (2426 kB/s) 1746s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1746s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 1746s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 1746s Setting up dash (0.5.12-12ubuntu1) ... 1746s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1746s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 1746s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1746s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 1746s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1746s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 1746s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1746s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 1746s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1746s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 1746s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1746s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 1746s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1746s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 1746s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1746s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 1746s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 1746s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 1746s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 1746s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 1746s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 1746s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 1746s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 1746s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 1746s Setting up libtasn1-6:s390x (4.20.0-2) ... 1746s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1746s Processing triggers for man-db (2.13.0-1) ... 1747s Processing triggers for debianutils (5.21) ... 1747s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1747s + /usr/lib/apt/apt-helper analyze-pattern ?true 1747s + uname -r 1747s + sed s/\./\\./g 1747s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1747s + apt list ?obsolete 1747s + tail -n+2 1747s + cut -d/ -f1 1747s + grep -v ^linux-.*6\.12\.0-15-generic.* 1747s + true 1747s + obsolete_pkgs= 1747s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1747s Reading package lists... 1747s Building dependency tree... 1747s Reading state information... 1747s The following packages will be REMOVED: 1747s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1747s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1747s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1747s linux-tools-6.11.0-8-generic* 1747s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 1747s After this operation, 167 MB disk space will be freed. 1747s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1747s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1747s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1747s Removing libpython3.12t64:s390x (3.12.9-1) ... 1747s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1747s Removing libnsl2:s390x (1.3.0-3build3) ... 1747s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1747s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1748s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1748s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1748s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1748s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1748s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1748s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1749s + grep -q trusty /etc/lsb-release 1749s + [ ! -d /usr/share/doc/unattended-upgrades ] 1749s + [ ! -d /usr/share/doc/lxd ] 1749s + [ ! -d /usr/share/doc/lxd-client ] 1749s + [ ! -d /usr/share/doc/snapd ] 1749s + type iptables 1749s + cat 1749s + chmod 755 /etc/rc.local 1749s + . /etc/rc.local 1749s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1749s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1749s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1749s + uname -m 1749s + [ s390x = ppc64le ] 1749s + [ -d /run/systemd/system ] 1749s + systemd-detect-virt --quiet --vm 1749s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1749s + cat 1749s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1749s + echo COMPRESS=lz4 1749s autopkgtest: DBG: testbed command exited with code 0 1749s autopkgtest [01:56:02]: upgrading testbed (apt dist-upgrade and autopurge) 1749s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1749s Reading package lists... 1749s Building dependency tree... 1749s Reading state information... 1749s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1749s Starting 2 pkgProblemResolver with broken count: 0 1749s Done 1749s Entering ResolveByKeep 1749s 1750s The following packages will be upgraded: 1750s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 1750s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1750s Need to get 10.7 MB of archives. 1750s After this operation, 305 kB of additional disk space will be used. 1750s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 1750s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 1750s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 1750s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 1750s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 1750s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1751s Preconfiguring packages ... 1751s Fetched 10.7 MB in 1s (11.9 MB/s) 1751s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 1751s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 1751s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1751s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 1751s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1751s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 1751s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1751s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 1751s Checking for services that may need to be restarted... 1751s Checking init scripts... 1751s Checking for services that may need to be restarted... 1751s Checking init scripts... 1751s Stopping some services possibly affected by the upgrade (will be restarted later): 1751s cron: stopping...done. 1751s 1751s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1751s Setting up libc6:s390x (2.41-1ubuntu1) ... 1751s Checking for services that may need to be restarted... 1751s Checking init scripts... 1751s Restarting services possibly affected by the upgrade: 1751s cron: restarting...done. 1751s 1751s Services restarted successfully. 1751s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1751s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 1751s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1751s Setting up libc-bin (2.41-1ubuntu1) ... 1751s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1751s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1751s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1752s Setting up iproute2 (6.13.0-1ubuntu1) ... 1752s Setting up locales (2.41-1ubuntu1) ... 1752s Installing new version of config file /etc/locale.alias ... 1752s Generating locales (this might take a while)... 1753s en_US.UTF-8... done 1753s Generation complete. 1753s Setting up libc-dev-bin (2.41-1ubuntu1) ... 1753s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 1753s Processing triggers for man-db (2.13.0-1) ... 1754s Processing triggers for systemd (257.2-3ubuntu1) ... 1754s autopkgtest: DBG: testbed command exited with code 0 1754s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1754s Reading package lists... 1755s Building dependency tree... 1755s Reading state information... 1755s Starting pkgProblemResolver with broken count: 0 1755s Starting 2 pkgProblemResolver with broken count: 0 1755s Done 1755s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1755s autopkgtest: DBG: testbed command exited with code 0 1755s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1755s autopkgtest: DBG: testbed command exited with code 1 1755s autopkgtest [01:56:08]: rebooting testbed after setup commands that affected boot 1755s autopkgtest: DBG: sending command to testbed: reboot 1773s autopkgtest: DBG: got reply from testbed: ok 1773s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1773s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1773s autopkgtest: DBG: testbed command exited with code 0 1773s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1774s autopkgtest: DBG: got reply from testbed: ok 1774s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1774s autopkgtest: DBG: testbed command exited with code 0 1774s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1774s autopkgtest: DBG: testbed command exited with code 0 1774s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1774s autopkgtest: DBG: testbed command exited with code 0 1774s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1774s autopkgtest: DBG: testbed command exited with code 0 1774s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1774s autopkgtest: DBG: got reply from testbed: ok 1774s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1775s autopkgtest: DBG: testbed command exited with code 0 1775s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1775s autopkgtest: DBG: testbed command exited with code 0 1775s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1775s autopkgtest: DBG: testbed command exited with code 0 1775s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 1775s autopkgtest: DBG: testbed command exited with code 0 1775s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 1775s autopkgtest: DBG: got reply from testbed: ok 1775s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1775s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1775s autopkgtest: DBG: testbed command exited with code 0 1775s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1776s autopkgtest: DBG: got reply from testbed: ok 1776s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1776s autopkgtest: DBG: testbed command exited with code 0 1776s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1776s autopkgtest: DBG: testbed command exited with code 0 1776s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1776s autopkgtest: DBG: testbed command exited with code 0 1776s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1776s autopkgtest: DBG: testbed command exited with code 0 1776s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1776s autopkgtest: DBG: got reply from testbed: ok 1776s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1777s autopkgtest: DBG: testbed command exited with code 0 1777s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1777s autopkgtest: DBG: testbed command exited with code 0 1777s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1777s autopkgtest: DBG: testbed command exited with code 0 1777s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1777s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-sparopt-0.2+default-dev'] 1777s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-sparopt-0.2+default-dev 1777s autopkgtest: DBG: can use apt-get on testbed: True 1777s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-sparopt-0.2+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1777s Reading package lists... 1777s Building dependency tree... 1777s Reading state information... 1777s Starting pkgProblemResolver with broken count: 0 1777s Starting 2 pkgProblemResolver with broken count: 0 1777s Done 1778s The following NEW packages will be installed: 1778s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 1778s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 1778s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 1778s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 1778s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 1778s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 libpkgconf3 1778s librust-addr2line-dev librust-adler-dev librust-ahash-dev 1778s librust-aho-corasick-dev librust-allocator-api2-dev librust-arbitrary-dev 1778s librust-autocfg-dev librust-backtrace-dev librust-blobby-dev 1778s librust-block-buffer-dev librust-bumpalo-dev librust-byteorder-dev 1778s librust-bytes-dev librust-cc-dev librust-cfg-if-dev 1778s librust-compiler-builtins-dev librust-const-oid-dev librust-const-random-dev 1778s librust-const-random-macro-dev librust-cpp-demangle-dev 1778s librust-cpufeatures-dev librust-crc32fast-dev librust-critical-section-dev 1778s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 1778s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 1778s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 1778s librust-either-dev librust-encoding-rs-dev librust-equivalent-dev 1778s librust-erased-serde-dev librust-fallible-iterator-dev librust-flate2-dev 1778s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 1778s librust-hashbrown-dev librust-hex-dev librust-indexmap-dev librust-itoa-dev 1778s librust-jobserver-dev librust-js-sys-dev librust-json-event-parser-dev 1778s librust-libc-dev librust-libz-sys-dev librust-lock-api-dev librust-log-dev 1778s librust-md-5-dev librust-md5-asm-dev librust-memchr-dev librust-memmap2-dev 1778s librust-miniz-oxide-dev librust-mio-dev librust-no-panic-dev 1778s librust-object-dev librust-once-cell-dev librust-owning-ref-dev 1778s librust-oxilangtag-dev librust-oxiri-dev librust-oxrdf-dev 1778s librust-oxsdatatypes-dev librust-parking-lot-core-dev 1778s librust-parking-lot-dev librust-peg-dev librust-peg-macros-dev 1778s librust-peg-runtime-dev librust-pin-project-lite-dev librust-pkg-config-dev 1778s librust-portable-atomic-dev librust-ppv-lite86-dev librust-proc-macro2-dev 1778s librust-quick-xml-dev librust-quote-dev librust-rand-chacha-dev 1778s librust-rand-core+getrandom-dev librust-rand-core+serde-dev 1778s librust-rand-core+std-dev librust-rand-core-dev librust-rand-dev 1778s librust-rayon-core-dev librust-rayon-dev librust-regex-automata-dev 1778s librust-regex-dev librust-regex-syntax-dev librust-rustc-demangle-dev 1778s librust-rustc-hash-2-dev librust-rustc-std-workspace-core-dev 1778s librust-ruzstd-dev librust-ryu-dev librust-scopeguard-dev 1778s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 1778s librust-serde-json-dev librust-serde-test-dev librust-sha1-asm-dev 1778s librust-sha1-dev librust-sha2-asm-dev librust-sha2-dev librust-shlex-dev 1778s librust-signal-hook-registry-dev librust-smallvec-dev librust-socket2-dev 1778s librust-sparesults-dev librust-spargebra-dev librust-stable-deref-trait-dev 1778s librust-static-assertions-dev librust-subtle-dev librust-sval-buffer-dev 1778s librust-sval-derive-dev librust-sval-dev librust-sval-dynamic-dev 1778s librust-sval-fmt-dev librust-sval-ref-dev librust-sval-serde-dev 1778s librust-syn-1-dev librust-syn-dev librust-thiserror-1-dev 1778s librust-thiserror-impl-1-dev librust-tiny-keccak-dev librust-tokio-dev 1778s librust-tokio-macros-dev librust-tracing-attributes-dev 1778s librust-tracing-core-dev librust-tracing-dev librust-twox-hash-dev 1778s librust-typed-arena-dev librust-typenum-dev librust-unicode-ident-dev 1778s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 1778s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 1778s librust-version-check-dev librust-wasm-bindgen-backend-dev 1778s librust-wasm-bindgen-dev librust-wasm-bindgen-macro-dev 1778s librust-wasm-bindgen-macro-support-dev librust-wasm-bindgen-shared-dev 1778s librust-zerocopy-derive-dev librust-zerocopy-dev librust-zeroize-derive-dev 1778s librust-zeroize-dev libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 1778s m4 pkgconf pkgconf-bin po-debconf rustc rustc-1.83 zlib1g-dev 1778s 0 upgraded, 193 newly installed, 0 to remove and 0 not upgraded. 1778s Need to get 138 MB of archives. 1778s After this operation, 544 MB of additional disk space will be used. 1778s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 1778s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 1778s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 1778s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 1778s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 1778s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 1778s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 1779s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 1780s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 1780s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 1780s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 1781s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 1781s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 1781s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 1781s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 1781s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 1781s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 1781s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 1781s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 1781s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 1781s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 1781s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 1781s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 1781s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 1781s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 1782s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 1782s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 1782s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 1782s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 1782s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 1782s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 1782s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 1782s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 1782s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 1782s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 1782s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 1782s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 1782s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 1782s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 1782s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 1782s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 1782s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 1782s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 1782s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 1782s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 1782s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 1782s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 1782s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 1782s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 1782s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 1782s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 1782s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 1782s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 1782s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 1782s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 1782s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 1782s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 1782s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 1782s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 1782s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 1782s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 1782s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 1782s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 1782s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 1782s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 1782s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 1782s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 1782s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 1782s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 1782s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 1782s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 1782s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 1782s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 1782s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 1782s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 1782s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 1782s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 1782s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 1782s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 1782s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 1782s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 1782s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 1782s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 1782s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 1782s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 1782s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 1782s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 1782s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 1783s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 1783s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 1783s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 1783s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 1783s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 1783s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 1783s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 1783s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 1783s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 1783s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 1783s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 1783s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 1783s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 1783s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 1783s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 1783s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 1783s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 1783s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 1783s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 1783s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 1783s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 1783s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 1783s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 1783s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 1783s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 1783s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 1783s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 1783s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 1783s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 1783s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 1783s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 1783s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 1783s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 1783s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 1783s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 1783s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 1783s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 1783s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 1783s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 1783s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 1783s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 1783s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 1783s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 1783s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 1783s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 1783s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 1783s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 1783s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 1783s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 1783s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 1783s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 1783s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 1783s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 1783s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 1783s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 1783s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 1783s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 1783s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpufeatures-dev s390x 0.2.16-1 [15.5 kB] 1783s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 1784s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hex-dev s390x 0.4.3-2 [15.7 kB] 1784s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 1784s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 1784s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 1784s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 1784s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 1784s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 1784s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 1784s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 1784s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 1784s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 1784s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 1784s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 1784s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 1784s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 1784s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 1784s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 1784s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 1784s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 1784s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 1784s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 1784s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 1784s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 1784s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-json-event-parser-dev all 0.2.0-6 [16.6 kB] 1784s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md5-asm-dev s390x 0.5.0-2 [7516 B] 1784s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md-5-dev s390x 0.10.6-1 [17.5 kB] 1784s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 1784s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 1784s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 1784s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 1784s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 1784s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 1784s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 1784s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-runtime-dev all 0.8.3+0.8.4-3 [7008 B] 1784s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-macros-dev all 0.8.4-3 [24.4 kB] 1784s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-dev all 0.8.4-3 [21.0 kB] 1784s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 1784s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 1784s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 1784s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hash-2-dev s390x 2.0.0-1 [14.4 kB] 1784s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-asm-dev s390x 0.5.1-2 [8060 B] 1784s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-dev s390x 0.10.6-1 [16.0 kB] 1784s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-asm-dev s390x 0.6.2-2 [14.4 kB] 1784s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-dev s390x 0.10.8-1 [25.6 kB] 1784s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sparesults-dev all 0.4.0~really0.2.4+0.4.7-4build1 [27.4 kB] 1784s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spargebra-dev all 0.4.0~really0.3.4+0.4.7-4build1 [75.0 kB] 1785s Fetched 138 MB in 6s (21.4 MB/s) 1785s Selecting previously unselected package m4. 1785s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1785s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 1785s Unpacking m4 (1.4.19-5) ... 1785s Selecting previously unselected package autoconf. 1785s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 1785s Unpacking autoconf (2.72-3) ... 1785s Selecting previously unselected package autotools-dev. 1785s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 1785s Unpacking autotools-dev (20220109.1) ... 1785s Selecting previously unselected package automake. 1785s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 1785s Unpacking automake (1:1.17-3) ... 1785s Selecting previously unselected package autopoint. 1785s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 1785s Unpacking autopoint (0.23.1-1) ... 1785s Selecting previously unselected package libgit2-1.8:s390x. 1785s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 1785s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1785s Selecting previously unselected package libstd-rust-1.83:s390x. 1785s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1785s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1785s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 1785s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1785s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1786s Selecting previously unselected package libisl23:s390x. 1786s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 1786s Unpacking libisl23:s390x (0.27-1) ... 1786s Selecting previously unselected package libmpc3:s390x. 1786s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 1786s Unpacking libmpc3:s390x (1.3.1-1build2) ... 1786s Selecting previously unselected package cpp-14-s390x-linux-gnu. 1786s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package cpp-14. 1786s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package cpp-s390x-linux-gnu. 1786s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1786s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1786s Selecting previously unselected package cpp. 1786s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 1786s Unpacking cpp (4:14.2.0-1ubuntu1) ... 1786s Selecting previously unselected package libcc1-0:s390x. 1786s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package libgomp1:s390x. 1786s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package libitm1:s390x. 1786s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package libasan8:s390x. 1786s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package libubsan1:s390x. 1786s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package libgcc-14-dev:s390x. 1786s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1786s Selecting previously unselected package gcc-14-s390x-linux-gnu. 1786s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1786s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1787s Selecting previously unselected package gcc-14. 1787s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 1787s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 1787s Selecting previously unselected package gcc-s390x-linux-gnu. 1787s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1787s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1787s Selecting previously unselected package gcc. 1787s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 1787s Unpacking gcc (4:14.2.0-1ubuntu1) ... 1787s Selecting previously unselected package rustc-1.83. 1787s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1787s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1787s Selecting previously unselected package cargo-1.83. 1787s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1787s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1787s Selecting previously unselected package libdebhelper-perl. 1787s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 1787s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 1787s Selecting previously unselected package libtool. 1787s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 1787s Unpacking libtool (2.5.4-3build1) ... 1787s Selecting previously unselected package dh-autoreconf. 1787s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 1787s Unpacking dh-autoreconf (20) ... 1787s Selecting previously unselected package libarchive-zip-perl. 1787s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 1787s Unpacking libarchive-zip-perl (1.68-1) ... 1787s Selecting previously unselected package libfile-stripnondeterminism-perl. 1787s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 1787s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 1787s Selecting previously unselected package dh-strip-nondeterminism. 1787s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 1787s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 1787s Selecting previously unselected package debugedit. 1787s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 1787s Unpacking debugedit (1:5.1-2) ... 1787s Selecting previously unselected package dwz. 1787s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 1787s Unpacking dwz (0.15-1build6) ... 1787s Selecting previously unselected package gettext. 1787s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 1787s Unpacking gettext (0.23.1-1) ... 1787s Selecting previously unselected package intltool-debian. 1787s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 1787s Unpacking intltool-debian (0.35.0+20060710.6) ... 1787s Selecting previously unselected package po-debconf. 1787s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 1787s Unpacking po-debconf (1.0.21+nmu1) ... 1787s Selecting previously unselected package debhelper. 1787s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 1787s Unpacking debhelper (13.24.1ubuntu2) ... 1787s Selecting previously unselected package rustc. 1787s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 1787s Unpacking rustc (1.83.0ubuntu1) ... 1787s Selecting previously unselected package cargo. 1787s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 1787s Unpacking cargo (1.83.0ubuntu1) ... 1787s Selecting previously unselected package dh-rust. 1787s Preparing to unpack .../040-dh-rust_0.0.11_all.deb ... 1787s Unpacking dh-rust (0.0.11) ... 1787s Selecting previously unselected package libpkgconf3:s390x. 1787s Preparing to unpack .../041-libpkgconf3_1.8.1-4_s390x.deb ... 1787s Unpacking libpkgconf3:s390x (1.8.1-4) ... 1787s Selecting previously unselected package librust-cfg-if-dev:s390x. 1787s Preparing to unpack .../042-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 1787s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 1787s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 1787s Preparing to unpack .../043-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 1787s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1787s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 1787s Preparing to unpack .../044-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 1787s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1787s Selecting previously unselected package librust-unicode-ident-dev:s390x. 1787s Preparing to unpack .../045-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 1787s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 1787s Selecting previously unselected package librust-proc-macro2-dev:s390x. 1787s Preparing to unpack .../046-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 1787s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 1787s Selecting previously unselected package librust-quote-dev:s390x. 1787s Preparing to unpack .../047-librust-quote-dev_1.0.37-1_s390x.deb ... 1787s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 1787s Selecting previously unselected package librust-syn-dev:s390x. 1787s Preparing to unpack .../048-librust-syn-dev_2.0.96-2_s390x.deb ... 1787s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 1787s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 1787s Preparing to unpack .../049-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 1787s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1787s Selecting previously unselected package librust-arbitrary-dev:s390x. 1787s Preparing to unpack .../050-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 1787s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 1787s Selecting previously unselected package librust-equivalent-dev:s390x. 1787s Preparing to unpack .../051-librust-equivalent-dev_1.0.1-1_s390x.deb ... 1787s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 1787s Selecting previously unselected package librust-critical-section-dev:s390x. 1787s Preparing to unpack .../052-librust-critical-section-dev_1.2.0-1_s390x.deb ... 1787s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 1787s Selecting previously unselected package librust-serde-derive-dev:s390x. 1787s Preparing to unpack .../053-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 1787s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 1787s Selecting previously unselected package librust-serde-dev:s390x. 1787s Preparing to unpack .../054-librust-serde-dev_1.0.217-1_s390x.deb ... 1787s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 1787s Selecting previously unselected package librust-portable-atomic-dev:s390x. 1787s Preparing to unpack .../055-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 1787s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 1787s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 1787s Preparing to unpack .../056-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 1787s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1787s Selecting previously unselected package librust-libc-dev:s390x. 1787s Preparing to unpack .../057-librust-libc-dev_0.2.169-1_s390x.deb ... 1787s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 1787s Selecting previously unselected package librust-getrandom-dev:s390x. 1787s Preparing to unpack .../058-librust-getrandom-dev_0.2.15-1_s390x.deb ... 1787s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 1787s Selecting previously unselected package librust-smallvec-dev:s390x. 1787s Preparing to unpack .../059-librust-smallvec-dev_1.13.2-1_s390x.deb ... 1787s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 1787s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 1787s Preparing to unpack .../060-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 1787s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1787s Selecting previously unselected package librust-once-cell-dev:s390x. 1787s Preparing to unpack .../061-librust-once-cell-dev_1.20.2-1_s390x.deb ... 1787s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 1787s Selecting previously unselected package librust-crunchy-dev:s390x. 1787s Preparing to unpack .../062-librust-crunchy-dev_0.2.2-1_s390x.deb ... 1787s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 1787s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 1787s Preparing to unpack .../063-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 1787s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1787s Selecting previously unselected package librust-const-random-macro-dev:s390x. 1787s Preparing to unpack .../064-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 1787s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 1787s Selecting previously unselected package librust-const-random-dev:s390x. 1787s Preparing to unpack .../065-librust-const-random-dev_0.1.17-2_s390x.deb ... 1787s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 1787s Selecting previously unselected package librust-version-check-dev:s390x. 1787s Preparing to unpack .../066-librust-version-check-dev_0.9.5-1_s390x.deb ... 1787s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 1787s Selecting previously unselected package librust-byteorder-dev:s390x. 1787s Preparing to unpack .../067-librust-byteorder-dev_1.5.0-1_s390x.deb ... 1787s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 1787s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 1787s Preparing to unpack .../068-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 1787s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1787s Selecting previously unselected package librust-zerocopy-dev:s390x. 1787s Preparing to unpack .../069-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 1787s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 1787s Selecting previously unselected package librust-ahash-dev. 1787s Preparing to unpack .../070-librust-ahash-dev_0.8.11-9_all.deb ... 1787s Unpacking librust-ahash-dev (0.8.11-9) ... 1787s Selecting previously unselected package librust-allocator-api2-dev:s390x. 1787s Preparing to unpack .../071-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 1787s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 1787s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 1787s Preparing to unpack .../072-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 1787s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1787s Selecting previously unselected package librust-either-dev:s390x. 1787s Preparing to unpack .../073-librust-either-dev_1.13.0-1_s390x.deb ... 1787s Unpacking librust-either-dev:s390x (1.13.0-1) ... 1787s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 1787s Preparing to unpack .../074-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 1787s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1787s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 1787s Preparing to unpack .../075-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 1787s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1787s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 1787s Preparing to unpack .../076-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 1787s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1787s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 1787s Preparing to unpack .../077-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 1787s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1788s Selecting previously unselected package librust-rayon-core-dev:s390x. 1788s Preparing to unpack .../078-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 1788s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 1788s Selecting previously unselected package librust-rayon-dev:s390x. 1788s Preparing to unpack .../079-librust-rayon-dev_1.10.0-1_s390x.deb ... 1788s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 1788s Selecting previously unselected package librust-hashbrown-dev:s390x. 1788s Preparing to unpack .../080-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 1788s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 1788s Selecting previously unselected package librust-indexmap-dev:s390x. 1788s Preparing to unpack .../081-librust-indexmap-dev_2.7.0-1_s390x.deb ... 1788s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 1788s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 1788s Preparing to unpack .../082-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 1788s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1788s Selecting previously unselected package librust-gimli-dev:s390x. 1788s Preparing to unpack .../083-librust-gimli-dev_0.31.1-2_s390x.deb ... 1788s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 1788s Selecting previously unselected package librust-memmap2-dev:s390x. 1788s Preparing to unpack .../084-librust-memmap2-dev_0.9.5-1_s390x.deb ... 1788s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 1788s Selecting previously unselected package librust-crc32fast-dev:s390x. 1788s Preparing to unpack .../085-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 1788s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 1788s Selecting previously unselected package pkgconf-bin. 1788s Preparing to unpack .../086-pkgconf-bin_1.8.1-4_s390x.deb ... 1788s Unpacking pkgconf-bin (1.8.1-4) ... 1788s Selecting previously unselected package pkgconf:s390x. 1788s Preparing to unpack .../087-pkgconf_1.8.1-4_s390x.deb ... 1788s Unpacking pkgconf:s390x (1.8.1-4) ... 1788s Selecting previously unselected package librust-pkg-config-dev:s390x. 1788s Preparing to unpack .../088-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 1788s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 1788s Selecting previously unselected package zlib1g-dev:s390x. 1788s Preparing to unpack .../089-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 1788s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1788s Selecting previously unselected package librust-libz-sys-dev:s390x. 1788s Preparing to unpack .../090-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 1788s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 1788s Selecting previously unselected package librust-adler-dev:s390x. 1788s Preparing to unpack .../091-librust-adler-dev_1.0.2-2_s390x.deb ... 1788s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 1788s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 1788s Preparing to unpack .../092-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 1788s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1788s Selecting previously unselected package librust-flate2-dev:s390x. 1788s Preparing to unpack .../093-librust-flate2-dev_1.0.34-1_s390x.deb ... 1788s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 1788s Selecting previously unselected package librust-sval-derive-dev:s390x. 1788s Preparing to unpack .../094-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 1788s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 1788s Selecting previously unselected package librust-sval-dev:s390x. 1788s Preparing to unpack .../095-librust-sval-dev_2.6.1-2_s390x.deb ... 1788s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 1788s Selecting previously unselected package librust-sval-ref-dev:s390x. 1788s Preparing to unpack .../096-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 1788s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 1788s Selecting previously unselected package librust-erased-serde-dev:s390x. 1788s Preparing to unpack .../097-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 1788s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 1788s Selecting previously unselected package librust-serde-fmt-dev. 1788s Preparing to unpack .../098-librust-serde-fmt-dev_1.0.3-4_all.deb ... 1788s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 1788s Selecting previously unselected package librust-no-panic-dev:s390x. 1788s Preparing to unpack .../099-librust-no-panic-dev_0.1.32-1_s390x.deb ... 1788s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 1788s Selecting previously unselected package librust-itoa-dev:s390x. 1788s Preparing to unpack .../100-librust-itoa-dev_1.0.14-1_s390x.deb ... 1788s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 1788s Selecting previously unselected package librust-ryu-dev:s390x. 1788s Preparing to unpack .../101-librust-ryu-dev_1.0.19-1_s390x.deb ... 1788s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 1788s Selecting previously unselected package librust-serde-json-dev:s390x. 1788s Preparing to unpack .../102-librust-serde-json-dev_1.0.133-1_s390x.deb ... 1788s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 1788s Selecting previously unselected package librust-serde-test-dev:s390x. 1788s Preparing to unpack .../103-librust-serde-test-dev_1.0.171-1_s390x.deb ... 1788s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 1788s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 1788s Preparing to unpack .../104-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 1788s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1788s Selecting previously unselected package librust-sval-buffer-dev:s390x. 1788s Preparing to unpack .../105-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 1788s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 1788s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 1788s Preparing to unpack .../106-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 1788s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1788s Selecting previously unselected package librust-sval-fmt-dev:s390x. 1788s Preparing to unpack .../107-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 1788s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 1788s Selecting previously unselected package librust-sval-serde-dev:s390x. 1788s Preparing to unpack .../108-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 1788s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 1788s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 1788s Preparing to unpack .../109-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 1788s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1788s Selecting previously unselected package librust-value-bag-dev:s390x. 1788s Preparing to unpack .../110-librust-value-bag-dev_1.9.0-1_s390x.deb ... 1788s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 1788s Selecting previously unselected package librust-log-dev:s390x. 1788s Preparing to unpack .../111-librust-log-dev_0.4.22-1_s390x.deb ... 1788s Unpacking librust-log-dev:s390x (0.4.22-1) ... 1788s Selecting previously unselected package librust-memchr-dev:s390x. 1788s Preparing to unpack .../112-librust-memchr-dev_2.7.4-1_s390x.deb ... 1788s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 1788s Selecting previously unselected package librust-blobby-dev:s390x. 1788s Preparing to unpack .../113-librust-blobby-dev_0.3.1-1_s390x.deb ... 1788s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 1788s Selecting previously unselected package librust-typenum-dev:s390x. 1788s Preparing to unpack .../114-librust-typenum-dev_1.17.0-2_s390x.deb ... 1788s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 1788s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 1788s Preparing to unpack .../115-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 1788s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1788s Selecting previously unselected package librust-zeroize-dev:s390x. 1788s Preparing to unpack .../116-librust-zeroize-dev_1.8.1-1_s390x.deb ... 1788s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 1788s Selecting previously unselected package librust-generic-array-dev:s390x. 1788s Preparing to unpack .../117-librust-generic-array-dev_0.14.7-1_s390x.deb ... 1788s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 1788s Selecting previously unselected package librust-block-buffer-dev:s390x. 1788s Preparing to unpack .../118-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 1788s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 1788s Selecting previously unselected package librust-const-oid-dev:s390x. 1788s Preparing to unpack .../119-librust-const-oid-dev_0.9.6-1_s390x.deb ... 1788s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 1788s Selecting previously unselected package librust-rand-core-dev:s390x. 1788s Preparing to unpack .../120-librust-rand-core-dev_0.6.4-2_s390x.deb ... 1788s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 1788s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 1788s Preparing to unpack .../121-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 1788s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1788s Selecting previously unselected package librust-crypto-common-dev:s390x. 1788s Preparing to unpack .../122-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 1788s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 1788s Selecting previously unselected package librust-subtle-dev:s390x. 1788s Preparing to unpack .../123-librust-subtle-dev_2.6.1-1_s390x.deb ... 1788s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 1788s Selecting previously unselected package librust-digest-dev:s390x. 1788s Preparing to unpack .../124-librust-digest-dev_0.10.7-2_s390x.deb ... 1788s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 1788s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 1788s Preparing to unpack .../125-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 1788s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1788s Selecting previously unselected package librust-rand-chacha-dev:s390x. 1788s Preparing to unpack .../126-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 1788s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 1788s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 1788s Preparing to unpack .../127-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 1788s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1788s Selecting previously unselected package librust-rand-core+std-dev:s390x. 1788s Preparing to unpack .../128-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 1788s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 1788s Selecting previously unselected package librust-rand-dev:s390x. 1788s Preparing to unpack .../129-librust-rand-dev_0.8.5-1_s390x.deb ... 1788s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 1788s Selecting previously unselected package librust-static-assertions-dev:s390x. 1788s Preparing to unpack .../130-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 1788s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 1788s Selecting previously unselected package librust-twox-hash-dev:s390x. 1788s Preparing to unpack .../131-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 1788s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 1788s Selecting previously unselected package librust-ruzstd-dev:s390x. 1788s Preparing to unpack .../132-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 1788s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 1788s Selecting previously unselected package librust-object-dev:s390x. 1788s Preparing to unpack .../133-librust-object-dev_0.36.5-2_s390x.deb ... 1788s Unpacking librust-object-dev:s390x (0.36.5-2) ... 1788s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 1788s Preparing to unpack .../134-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 1788s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1788s Selecting previously unselected package librust-typed-arena-dev:s390x. 1788s Preparing to unpack .../135-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 1788s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 1788s Selecting previously unselected package librust-addr2line-dev:s390x. 1788s Preparing to unpack .../136-librust-addr2line-dev_0.24.2-2_s390x.deb ... 1788s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 1788s Selecting previously unselected package librust-aho-corasick-dev:s390x. 1788s Preparing to unpack .../137-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 1788s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 1788s Selecting previously unselected package librust-autocfg-dev:s390x. 1788s Preparing to unpack .../138-librust-autocfg-dev_1.1.0-1_s390x.deb ... 1788s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 1788s Selecting previously unselected package librust-backtrace-dev:s390x. 1788s Preparing to unpack .../139-librust-backtrace-dev_0.3.74-3_s390x.deb ... 1788s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 1788s Selecting previously unselected package librust-bumpalo-dev:s390x. 1788s Preparing to unpack .../140-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 1788s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 1788s Selecting previously unselected package librust-bytes-dev:s390x. 1788s Preparing to unpack .../141-librust-bytes-dev_1.9.0-1_s390x.deb ... 1788s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 1788s Selecting previously unselected package librust-jobserver-dev:s390x. 1788s Preparing to unpack .../142-librust-jobserver-dev_0.1.32-1_s390x.deb ... 1788s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 1788s Selecting previously unselected package librust-shlex-dev:s390x. 1788s Preparing to unpack .../143-librust-shlex-dev_1.3.0-1_s390x.deb ... 1788s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 1788s Selecting previously unselected package librust-cc-dev:s390x. 1788s Preparing to unpack .../144-librust-cc-dev_1.1.14-1_s390x.deb ... 1788s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 1788s Selecting previously unselected package librust-cpufeatures-dev:s390x. 1788s Preparing to unpack .../145-librust-cpufeatures-dev_0.2.16-1_s390x.deb ... 1788s Unpacking librust-cpufeatures-dev:s390x (0.2.16-1) ... 1788s Selecting previously unselected package librust-encoding-rs-dev:s390x. 1788s Preparing to unpack .../146-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 1788s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 1788s Selecting previously unselected package librust-hex-dev:s390x. 1788s Preparing to unpack .../147-librust-hex-dev_0.4.3-2_s390x.deb ... 1788s Unpacking librust-hex-dev:s390x (0.4.3-2) ... 1788s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 1788s Preparing to unpack .../148-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 1788s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1788s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 1788s Preparing to unpack .../149-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 1788s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1788s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 1788s Preparing to unpack .../150-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 1788s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1788s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 1788s Preparing to unpack .../151-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 1788s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1788s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 1788s Preparing to unpack .../152-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 1788s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1788s Selecting previously unselected package librust-js-sys-dev:s390x. 1788s Preparing to unpack .../153-librust-js-sys-dev_0.3.64-1_s390x.deb ... 1788s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 1788s Selecting previously unselected package librust-mio-dev:s390x. 1788s Preparing to unpack .../154-librust-mio-dev_1.0.2-3_s390x.deb ... 1788s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 1788s Selecting previously unselected package librust-owning-ref-dev:s390x. 1788s Preparing to unpack .../155-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 1788s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 1788s Selecting previously unselected package librust-scopeguard-dev:s390x. 1788s Preparing to unpack .../156-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 1788s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 1788s Selecting previously unselected package librust-lock-api-dev:s390x. 1788s Preparing to unpack .../157-librust-lock-api-dev_0.4.12-1_s390x.deb ... 1788s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 1788s Selecting previously unselected package librust-parking-lot-dev:s390x. 1788s Preparing to unpack .../158-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 1788s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 1788s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 1788s Preparing to unpack .../159-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 1788s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1788s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 1788s Preparing to unpack .../160-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 1788s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1788s Selecting previously unselected package librust-socket2-dev:s390x. 1788s Preparing to unpack .../161-librust-socket2-dev_0.5.8-1_s390x.deb ... 1788s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 1788s Selecting previously unselected package librust-tokio-macros-dev:s390x. 1788s Preparing to unpack .../162-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 1788s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 1788s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 1788s Preparing to unpack .../163-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 1788s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1788s Selecting previously unselected package librust-syn-1-dev:s390x. 1788s Preparing to unpack .../164-librust-syn-1-dev_1.0.109-3_s390x.deb ... 1788s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 1789s Selecting previously unselected package librust-valuable-derive-dev:s390x. 1789s Preparing to unpack .../165-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 1789s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 1789s Selecting previously unselected package librust-valuable-dev:s390x. 1789s Preparing to unpack .../166-librust-valuable-dev_0.1.0-4_s390x.deb ... 1789s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 1789s Selecting previously unselected package librust-tracing-core-dev:s390x. 1789s Preparing to unpack .../167-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 1789s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 1789s Selecting previously unselected package librust-tracing-dev:s390x. 1789s Preparing to unpack .../168-librust-tracing-dev_0.1.40-1_s390x.deb ... 1789s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 1789s Selecting previously unselected package librust-tokio-dev:s390x. 1789s Preparing to unpack .../169-librust-tokio-dev_1.43.0-1_s390x.deb ... 1789s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 1789s Selecting previously unselected package librust-json-event-parser-dev. 1789s Preparing to unpack .../170-librust-json-event-parser-dev_0.2.0-6_all.deb ... 1789s Unpacking librust-json-event-parser-dev (0.2.0-6) ... 1789s Selecting previously unselected package librust-md5-asm-dev:s390x. 1789s Preparing to unpack .../171-librust-md5-asm-dev_0.5.0-2_s390x.deb ... 1789s Unpacking librust-md5-asm-dev:s390x (0.5.0-2) ... 1789s Selecting previously unselected package librust-md-5-dev:s390x. 1789s Preparing to unpack .../172-librust-md-5-dev_0.10.6-1_s390x.deb ... 1789s Unpacking librust-md-5-dev:s390x (0.10.6-1) ... 1789s Selecting previously unselected package librust-oxilangtag-dev. 1789s Preparing to unpack .../173-librust-oxilangtag-dev_0.1.5-4_all.deb ... 1789s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 1789s Selecting previously unselected package librust-oxiri-dev. 1789s Preparing to unpack .../174-librust-oxiri-dev_0.2.11-2_all.deb ... 1789s Unpacking librust-oxiri-dev (0.2.11-2) ... 1789s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 1789s Preparing to unpack .../175-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 1789s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1789s Selecting previously unselected package librust-thiserror-1-dev:s390x. 1789s Preparing to unpack .../176-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 1789s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 1789s Selecting previously unselected package librust-oxsdatatypes-dev. 1789s Preparing to unpack .../177-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 1789s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1789s Selecting previously unselected package librust-quick-xml-dev:s390x. 1789s Preparing to unpack .../178-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 1789s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 1789s Selecting previously unselected package librust-oxrdf-dev. 1789s Preparing to unpack .../179-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1789s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1789s Selecting previously unselected package librust-peg-runtime-dev. 1789s Preparing to unpack .../180-librust-peg-runtime-dev_0.8.3+0.8.4-3_all.deb ... 1789s Unpacking librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1789s Selecting previously unselected package librust-peg-macros-dev. 1789s Preparing to unpack .../181-librust-peg-macros-dev_0.8.4-3_all.deb ... 1789s Unpacking librust-peg-macros-dev (0.8.4-3) ... 1789s Selecting previously unselected package librust-peg-dev. 1789s Preparing to unpack .../182-librust-peg-dev_0.8.4-3_all.deb ... 1789s Unpacking librust-peg-dev (0.8.4-3) ... 1789s Selecting previously unselected package librust-regex-syntax-dev:s390x. 1789s Preparing to unpack .../183-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 1789s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 1789s Selecting previously unselected package librust-regex-automata-dev:s390x. 1789s Preparing to unpack .../184-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 1789s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 1789s Selecting previously unselected package librust-regex-dev:s390x. 1789s Preparing to unpack .../185-librust-regex-dev_1.11.1-2_s390x.deb ... 1789s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 1789s Selecting previously unselected package librust-rustc-hash-2-dev:s390x. 1789s Preparing to unpack .../186-librust-rustc-hash-2-dev_2.0.0-1_s390x.deb ... 1789s Unpacking librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1789s Selecting previously unselected package librust-sha1-asm-dev:s390x. 1789s Preparing to unpack .../187-librust-sha1-asm-dev_0.5.1-2_s390x.deb ... 1789s Unpacking librust-sha1-asm-dev:s390x (0.5.1-2) ... 1789s Selecting previously unselected package librust-sha1-dev:s390x. 1789s Preparing to unpack .../188-librust-sha1-dev_0.10.6-1_s390x.deb ... 1789s Unpacking librust-sha1-dev:s390x (0.10.6-1) ... 1789s Selecting previously unselected package librust-sha2-asm-dev:s390x. 1789s Preparing to unpack .../189-librust-sha2-asm-dev_0.6.2-2_s390x.deb ... 1789s Unpacking librust-sha2-asm-dev:s390x (0.6.2-2) ... 1789s Selecting previously unselected package librust-sha2-dev:s390x. 1789s Preparing to unpack .../190-librust-sha2-dev_0.10.8-1_s390x.deb ... 1789s Unpacking librust-sha2-dev:s390x (0.10.8-1) ... 1789s Selecting previously unselected package librust-sparesults-dev. 1789s Preparing to unpack .../191-librust-sparesults-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1789s Unpacking librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1789s Selecting previously unselected package librust-spargebra-dev. 1789s Preparing to unpack .../192-librust-spargebra-dev_0.4.0~really0.3.4+0.4.7-4build1_all.deb ... 1789s Unpacking librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1789s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1789s Setting up librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1789s Setting up librust-either-dev:s390x (1.13.0-1) ... 1789s Setting up librust-adler-dev:s390x (1.0.2-2) ... 1789s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 1789s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1789s Setting up libarchive-zip-perl (1.68-1) ... 1789s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 1789s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 1789s Setting up m4 (1.4.19-5) ... 1789s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1789s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1789s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 1789s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 1789s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 1789s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1789s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1789s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1789s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1789s Setting up autotools-dev (20220109.1) ... 1789s Setting up libpkgconf3:s390x (1.8.1-4) ... 1789s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1789s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 1789s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1789s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 1789s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 1789s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1789s Setting up libmpc3:s390x (1.3.1-1build2) ... 1789s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 1789s Setting up autopoint (0.23.1-1) ... 1789s Setting up pkgconf-bin (1.8.1-4) ... 1789s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 1789s Setting up autoconf (2.72-3) ... 1789s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 1789s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1789s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 1789s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 1789s Setting up dwz (0.15-1build6) ... 1789s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 1789s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 1789s Setting up debugedit (1:5.1-2) ... 1789s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 1789s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 1789s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 1789s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 1789s Setting up libisl23:s390x (0.27-1) ... 1789s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1789s Setting up librust-hex-dev:s390x (0.4.3-2) ... 1789s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 1789s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1789s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 1789s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 1789s Setting up automake (1:1.17-3) ... 1789s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 1789s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 1789s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1789s Setting up librust-libc-dev:s390x (0.2.169-1) ... 1789s Setting up gettext (0.23.1-1) ... 1789s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1789s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1789s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 1789s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 1789s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 1789s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 1789s Setting up librust-cpufeatures-dev:s390x (0.2.16-1) ... 1789s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 1789s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 1789s Setting up pkgconf:s390x (1.8.1-4) ... 1789s Setting up intltool-debian (0.35.0+20060710.6) ... 1789s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1789s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1789s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 1789s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1789s Setting up cpp-14 (14.2.0-17ubuntu1) ... 1789s Setting up dh-strip-nondeterminism (1.14.1-2) ... 1789s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 1789s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1789s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1789s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 1789s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 1789s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1789s Setting up po-debconf (1.0.21+nmu1) ... 1789s Setting up librust-quote-dev:s390x (1.0.37-1) ... 1789s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 1789s Setting up librust-syn-dev:s390x (2.0.96-2) ... 1789s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 1789s Setting up librust-peg-macros-dev (0.8.4-3) ... 1789s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1789s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1789s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 1789s Setting up librust-cc-dev:s390x (1.1.14-1) ... 1789s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1789s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 1789s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 1789s Setting up cpp (4:14.2.0-1ubuntu1) ... 1789s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 1789s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1789s Setting up librust-sha1-asm-dev:s390x (0.5.1-2) ... 1789s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 1789s Setting up librust-serde-dev:s390x (1.0.217-1) ... 1789s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1789s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1789s Setting up librust-oxilangtag-dev (0.1.5-4) ... 1789s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 1789s Setting up librust-peg-dev (0.8.4-3) ... 1789s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 1789s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1789s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 1789s Setting up librust-serde-fmt-dev (1.0.3-4) ... 1789s Setting up librust-oxiri-dev (0.2.11-2) ... 1789s Setting up librust-sha2-asm-dev:s390x (0.6.2-2) ... 1789s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 1789s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 1789s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 1789s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 1789s Setting up librust-sval-dev:s390x (2.6.1-2) ... 1789s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 1789s Setting up gcc-14 (14.2.0-17ubuntu1) ... 1789s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 1789s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 1789s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1789s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 1789s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 1789s Setting up librust-md5-asm-dev:s390x (0.5.0-2) ... 1789s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 1789s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 1789s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 1789s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 1789s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 1789s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 1789s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1789s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 1789s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1789s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 1789s Setting up libtool (2.5.4-3build1) ... 1789s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 1789s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 1789s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 1789s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 1789s Setting up gcc (4:14.2.0-1ubuntu1) ... 1789s Setting up dh-autoreconf (20) ... 1789s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 1789s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1789s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 1789s Setting up rustc (1.83.0ubuntu1) ... 1789s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1789s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 1789s Setting up librust-digest-dev:s390x (0.10.7-2) ... 1789s Setting up librust-md-5-dev:s390x (0.10.6-1) ... 1789s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 1789s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 1789s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 1789s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 1789s Setting up librust-sha1-dev:s390x (0.10.6-1) ... 1789s Setting up debhelper (13.24.1ubuntu2) ... 1789s Setting up librust-ahash-dev (0.8.11-9) ... 1789s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 1789s Setting up librust-sha2-dev:s390x (0.10.8-1) ... 1789s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1789s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1789s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 1789s Setting up cargo (1.83.0ubuntu1) ... 1789s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 1789s Setting up dh-rust (0.0.11) ... 1789s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 1789s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 1789s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 1789s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1789s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 1789s Setting up librust-log-dev:s390x (0.4.22-1) ... 1789s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 1789s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 1789s Setting up librust-rand-dev:s390x (0.8.5-1) ... 1789s Setting up librust-mio-dev:s390x (1.0.2-3) ... 1789s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1789s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 1789s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1789s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 1789s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1789s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 1789s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1789s Setting up librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1789s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 1789s Setting up librust-regex-dev:s390x (1.11.1-2) ... 1789s Setting up librust-object-dev:s390x (0.36.5-2) ... 1789s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 1789s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1789s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 1789s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 1789s Setting up librust-json-event-parser-dev (0.2.0-6) ... 1789s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 1789s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1789s Setting up librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1789s Setting up librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1789s Processing triggers for install-info (7.1.1-1) ... 1789s Processing triggers for libc-bin (2.41-1ubuntu1) ... 1789s Processing triggers for man-db (2.13.0-1) ... 1790s autopkgtest: DBG: testbed command exited with code 0 1790s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-sparopt:default-packages.all"], kind short, sout raw, serr pipe, env [] 1790s autopkgtest: DBG: testbed command exited with code 0 1790s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparopt%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-sparopt%3Adefault-packages.all 1791s autopkgtest: DBG: got reply from testbed: ok 1791s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 1791s autopkgtest: DBG: testbed command exited with code 1 1791s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 1791s autopkgtest: DBG: testbed command exited with code 0 1791s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 1794s autopkgtest: DBG: got reply from testbed: ok 1794s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 1794s autopkgtest: DBG: testbed command exited with code 0 1794s autopkgtest [01:56:47]: test rust-sparopt:default: /usr/share/dh-rust/bin/cargo-auto-test sparopt 0.2.0 --all-targets 1794s autopkgtest [01:56:47]: test rust-sparopt:default: [----------------------- 1794s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-sparopt:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-sparopt:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-sparopt:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test sparopt 0.2.0 --all-targets'"], kind test, sout raw, serr raw, env [] 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-sparopt:default-artifacts 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-sparopt:default-stderr 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-sparopt:default-stdout 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test sparopt 0.2.0 --all-targets 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.YBoJhv5Hdw/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-sparopt:default-stdout 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.YBoJhv5Hdw/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-sparopt:default-stdout 1794s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 3090 to /tmp/autopkgtest_script_pid 1794s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1794s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1794s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.IVFsYRIUeN/registry/ 1794s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 1794s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 1794s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 1794s Compiling proc-macro2 v1.0.92 1794s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.IVFsYRIUeN/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn` 1794s Compiling unicode-ident v1.0.13 1794s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn` 1795s Compiling libc v0.2.169 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1795s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=c40548aaa5f2ab95 -C extra-filename=-c40548aaa5f2ab95 --out-dir /tmp/tmp.IVFsYRIUeN/target/release/build/libc-c40548aaa5f2ab95 -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn` 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.IVFsYRIUeN/target/release/deps:/tmp/tmp.IVFsYRIUeN/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.IVFsYRIUeN/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.IVFsYRIUeN/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 1795s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 1795s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 1795s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 1795s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps OUT_DIR=/tmp/tmp.IVFsYRIUeN/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern unicode_ident=/tmp/tmp.IVFsYRIUeN/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1795s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.IVFsYRIUeN/target/release/deps:/tmp/tmp.IVFsYRIUeN/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.IVFsYRIUeN/target/release/build/libc-c40548aaa5f2ab95/build-script-build` 1795s [libc 0.2.169] cargo:rerun-if-changed=build.rs 1795s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 1795s [libc 0.2.169] cargo:rustc-cfg=freebsd11 1795s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 1795s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 1795s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps OUT_DIR=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/build/libc-5db7456cd9e30f06/out rustc --crate-name libc --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=549b899a13007ace -C extra-filename=-549b899a13007ace --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 1795s warning: unused import: `crate::ntptimeval` 1795s --> /tmp/tmp.IVFsYRIUeN/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 1795s | 1795s 5 | use crate::ntptimeval; 1795s | ^^^^^^^^^^^^^^^^^ 1795s | 1795s = note: `#[warn(unused_imports)]` on by default 1795s 1795s Compiling quote v1.0.37 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern proc_macro2=/tmp/tmp.IVFsYRIUeN/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 1795s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 1795s | 1795s = note: this feature is not stably supported; its behavior can change in the future 1795s 1795s warning: `libc` (lib) generated 2 warnings 1795s Compiling byteorder v1.5.0 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1795s Compiling syn v2.0.96 1795s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=25776e54546dab2e -C extra-filename=-25776e54546dab2e --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern proc_macro2=/tmp/tmp.IVFsYRIUeN/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.IVFsYRIUeN/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.IVFsYRIUeN/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 1796s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 1796s Compiling cfg-if v1.0.0 1796s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 1796s parameters. Structured like an if-else chain, the first matching branch is the 1796s item that gets emitted. 1796s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1796s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 1796s Compiling getrandom v0.2.15 1796s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=b6a65cf69d7b414f -C extra-filename=-b6a65cf69d7b414f --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern cfg_if=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1796s warning: unexpected `cfg` condition value: `js` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/getrandom-0.2.15/src/lib.rs:334:25 1796s | 1796s 334 | } else if #[cfg(all(feature = "js", 1796s | ^^^^^^^^^^^^^^ 1796s | 1796s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 1796s = help: consider adding `js` as a feature in `Cargo.toml` 1796s = note: see for more information about checking conditional configuration 1796s = note: `#[warn(unexpected_cfgs)]` on by default 1796s 1796s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 1796s Compiling rand_core v0.6.4 1796s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 1796s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=64f167873ee1d2e1 -C extra-filename=-64f167873ee1d2e1 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern getrandom=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-b6a65cf69d7b414f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1796s warning: unexpected `cfg` condition name: `doc_cfg` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/src/lib.rs:38:13 1796s | 1796s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1796s | ^^^^^^^ 1796s | 1796s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1796s = help: consider using a Cargo feature instead 1796s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1796s [lints.rust] 1796s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1796s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1796s = note: see for more information about checking conditional configuration 1796s = note: `#[warn(unexpected_cfgs)]` on by default 1796s 1796s warning: unexpected `cfg` condition name: `doc_cfg` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/src/error.rs:50:16 1796s | 1796s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1796s | ^^^^^^^ 1796s | 1796s = help: consider using a Cargo feature instead 1796s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1796s [lints.rust] 1796s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1796s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1796s = note: see for more information about checking conditional configuration 1796s 1796s warning: unexpected `cfg` condition name: `doc_cfg` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/src/error.rs:64:16 1796s | 1796s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1796s | ^^^^^^^ 1796s | 1796s = help: consider using a Cargo feature instead 1796s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1796s [lints.rust] 1796s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1796s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1796s = note: see for more information about checking conditional configuration 1796s 1796s warning: unexpected `cfg` condition name: `doc_cfg` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/src/error.rs:75:16 1796s | 1796s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1796s | ^^^^^^^ 1796s | 1796s = help: consider using a Cargo feature instead 1796s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1796s [lints.rust] 1796s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1796s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1796s = note: see for more information about checking conditional configuration 1796s 1796s warning: unexpected `cfg` condition name: `doc_cfg` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/src/os.rs:46:12 1796s | 1796s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1796s | ^^^^^^^ 1796s | 1796s = help: consider using a Cargo feature instead 1796s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1796s [lints.rust] 1796s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1796s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1796s = note: see for more information about checking conditional configuration 1796s 1796s warning: unexpected `cfg` condition name: `doc_cfg` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/rand_core-0.6.4/src/lib.rs:411:16 1796s | 1796s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1796s | ^^^^^^^ 1796s | 1796s = help: consider using a Cargo feature instead 1796s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1796s [lints.rust] 1796s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1796s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1796s = note: see for more information about checking conditional configuration 1796s 1796s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 1796s Compiling thiserror v1.0.69 1796s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.IVFsYRIUeN/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn` 1796s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.IVFsYRIUeN/target/release/deps:/tmp/tmp.IVFsYRIUeN/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.IVFsYRIUeN/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 1796s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 1796s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 1796s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 1796s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 1796s Compiling peg-runtime v0.8.3 1796s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=8060b0318fa1ed9f -C extra-filename=-8060b0318fa1ed9f --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn` 1796s warning: unexpected `cfg` condition value: `unstable` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3/lib.rs:2:13 1796s | 1796s 2 | #![cfg_attr(feature = "unstable", feature(error_in_core))] 1796s | ^^^^^^^^^^^^^^^^^^^^ 1796s | 1796s = note: expected values for `feature` are: `std` 1796s = help: consider adding `unstable` as a feature in `Cargo.toml` 1796s = note: see for more information about checking conditional configuration 1796s = note: `#[warn(unexpected_cfgs)]` on by default 1796s 1796s warning: unexpected `cfg` condition value: `unstable` 1796s --> /tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3/error.rs:66:28 1796s | 1796s 66 | #[cfg(any(feature = "std", feature = "unstable"))] 1796s | ^^^^^^^^^^^^^^^^^^^^ 1796s | 1796s = note: expected values for `feature` are: `std` 1796s = help: consider adding `unstable` as a feature in `Cargo.toml` 1796s = note: see for more information about checking conditional configuration 1796s 1796s warning: `peg-runtime` (lib) generated 2 warnings 1796s Compiling peg-macros v0.8.4 1796s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_macros CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-macros-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/peg-macros-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Procedural macros for rust-peg. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-macros CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-macros-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name peg_macros --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/peg-macros-0.8.4/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("trace"))' -C metadata=39a0290f33394d81 -C extra-filename=-39a0290f33394d81 --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern peg_runtime=/tmp/tmp.IVFsYRIUeN/target/release/deps/libpeg_runtime-8060b0318fa1ed9f.rlib --extern proc_macro2=/tmp/tmp.IVFsYRIUeN/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.IVFsYRIUeN/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern proc_macro --cap-lints warn` 1798s Compiling oxiri v0.2.11 1798s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 1798s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1798s Compiling zerocopy-derive v0.7.34 1798s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ade2215b6e585001 -C extra-filename=-ade2215b6e585001 --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern proc_macro2=/tmp/tmp.IVFsYRIUeN/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.IVFsYRIUeN/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.IVFsYRIUeN/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 1798s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 1798s Compiling thiserror-impl v1.0.69 1798s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=282169f5dfa653c6 -C extra-filename=-282169f5dfa653c6 --out-dir /tmp/tmp.IVFsYRIUeN/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern proc_macro2=/tmp/tmp.IVFsYRIUeN/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.IVFsYRIUeN/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.IVFsYRIUeN/target/release/deps/libsyn-25776e54546dab2e.rlib --extern proc_macro --cap-lints warn` 1799s Compiling zerocopy v0.7.34 1799s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=05091faa96a9c488 -C extra-filename=-05091faa96a9c488 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern byteorder=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.IVFsYRIUeN/target/release/deps/libzerocopy_derive-ade2215b6e585001.so --cap-lints warn -Ctarget-feature=+backchain` 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/util.rs:597:32 1799s | 1799s 597 | let remainder = t.addr() % mem::align_of::(); 1799s | ^^^^^^^^^^^^^^^^^^ 1799s | 1799s note: the lint level is defined here 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:174:5 1799s | 1799s 174 | unused_qualifications, 1799s | ^^^^^^^^^^^^^^^^^^^^^ 1799s help: remove the unnecessary path segments 1799s | 1799s 597 - let remainder = t.addr() % mem::align_of::(); 1799s 597 + let remainder = t.addr() % align_of::(); 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:333:35 1799s | 1799s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1799s | ^^^^^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 1799s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:488:44 1799s | 1799s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 1799s | ^^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 1799s 488 + align: match NonZeroUsize::new(align_of::()) { 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:492:49 1799s | 1799s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 1799s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:511:44 1799s | 1799s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 1799s | ^^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 1799s 511 + align: match NonZeroUsize::new(align_of::()) { 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:517:29 1799s | 1799s 517 | _elem_size: mem::size_of::(), 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 517 - _elem_size: mem::size_of::(), 1799s 517 + _elem_size: size_of::(), 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:1418:19 1799s | 1799s 1418 | let len = mem::size_of_val(self); 1799s | ^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 1418 - let len = mem::size_of_val(self); 1799s 1418 + let len = size_of_val(self); 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:2714:19 1799s | 1799s 2714 | let len = mem::size_of_val(self); 1799s | ^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 2714 - let len = mem::size_of_val(self); 1799s 2714 + let len = size_of_val(self); 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:2789:19 1799s | 1799s 2789 | let len = mem::size_of_val(self); 1799s | ^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 2789 - let len = mem::size_of_val(self); 1799s 2789 + let len = size_of_val(self); 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:2863:27 1799s | 1799s 2863 | if bytes.len() != mem::size_of_val(self) { 1799s | ^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 2863 - if bytes.len() != mem::size_of_val(self) { 1799s 2863 + if bytes.len() != size_of_val(self) { 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:2920:20 1799s | 1799s 2920 | let size = mem::size_of_val(self); 1799s | ^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 2920 - let size = mem::size_of_val(self); 1799s 2920 + let size = size_of_val(self); 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:2981:45 1799s | 1799s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1799s | ^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 1799s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4161:27 1799s | 1799s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1799s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4176:26 1799s | 1799s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1799s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4179:46 1799s | 1799s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 1799s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4194:46 1799s | 1799s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 1799s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4221:26 1799s | 1799s 4221 | .checked_rem(mem::size_of::()) 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4221 - .checked_rem(mem::size_of::()) 1799s 4221 + .checked_rem(size_of::()) 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4243:34 1799s | 1799s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 1799s 4243 + let expected_len = match size_of::().checked_mul(count) { 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4268:34 1799s | 1799s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 1799s 4268 + let expected_len = match size_of::().checked_mul(count) { 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4795:25 1799s | 1799s 4795 | let elem_size = mem::size_of::(); 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4795 - let elem_size = mem::size_of::(); 1799s 4795 + let elem_size = size_of::(); 1799s | 1799s 1799s warning: unnecessary qualification 1799s --> /tmp/tmp.IVFsYRIUeN/registry/zerocopy-0.7.34/src/lib.rs:4825:25 1799s | 1799s 4825 | let elem_size = mem::size_of::(); 1799s | ^^^^^^^^^^^^^^^^^ 1799s | 1799s help: remove the unnecessary path segments 1799s | 1799s 4825 - let elem_size = mem::size_of::(); 1799s 4825 + let elem_size = size_of::(); 1799s | 1799s 1799s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 1799s Compiling ppv-lite86 v0.2.20 1799s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=19f965d8a4b7f765 -C extra-filename=-19f965d8a4b7f765 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern zerocopy=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-05091faa96a9c488.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1799s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps OUT_DIR=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=27dfaf5cbfbe8b32 -C extra-filename=-27dfaf5cbfbe8b32 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern thiserror_impl=/tmp/tmp.IVFsYRIUeN/target/release/deps/libthiserror_impl-282169f5dfa653c6.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 1799s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 1799s Compiling oxilangtag v0.1.5 1799s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 1799s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1799s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 1799s Compiling rand_chacha v0.3.1 1799s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 1799s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=f79f49c44487231e -C extra-filename=-f79f49c44487231e --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern ppv_lite86=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-19f965d8a4b7f765.rmeta --extern rand_core=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1800s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 1800s Compiling rand v0.8.5 1800s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 1800s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=2fe9818164ef43c6 -C extra-filename=-2fe9818164ef43c6 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern libc=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liblibc-549b899a13007ace.rmeta --extern rand_chacha=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-f79f49c44487231e.rmeta --extern rand_core=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/librand_core-64f167873ee1d2e1.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/lib.rs:52:13 1800s | 1800s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s = note: `#[warn(unexpected_cfgs)]` on by default 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/lib.rs:53:13 1800s | 1800s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 1800s | ^^^^^^^ 1800s | 1800s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/lib.rs:181:12 1800s | 1800s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/mod.rs:116:12 1800s | 1800s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `features` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 1800s | 1800s 162 | #[cfg(features = "nightly")] 1800s | ^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: see for more information about checking conditional configuration 1800s help: there is a config with a similar name and value 1800s | 1800s 162 | #[cfg(feature = "nightly")] 1800s | ~~~~~~~ 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:15:7 1800s | 1800s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:156:7 1800s | 1800s 156 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:158:7 1800s | 1800s 158 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:160:7 1800s | 1800s 160 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:162:7 1800s | 1800s 162 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:165:7 1800s | 1800s 165 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:167:7 1800s | 1800s 167 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/float.rs:169:7 1800s | 1800s 169 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:13:32 1800s | 1800s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:15:35 1800s | 1800s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:19:7 1800s | 1800s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:112:7 1800s | 1800s 112 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:142:7 1800s | 1800s 142 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:144:7 1800s | 1800s 144 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:146:7 1800s | 1800s 146 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:148:7 1800s | 1800s 148 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:150:7 1800s | 1800s 150 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:152:7 1800s | 1800s 152 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/integer.rs:155:5 1800s | 1800s 155 | feature = "simd_support", 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:11:7 1800s | 1800s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:144:7 1800s | 1800s 144 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `std` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:235:11 1800s | 1800s 235 | #[cfg(not(std))] 1800s | ^^^ help: found config with similar value: `feature = "std"` 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:363:7 1800s | 1800s 363 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:423:7 1800s | 1800s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 1800s | ^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:424:7 1800s | 1800s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 1800s | ^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:425:7 1800s | 1800s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 1800s | ^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:426:7 1800s | 1800s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 1800s | ^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:427:7 1800s | 1800s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 1800s | ^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:428:7 1800s | 1800s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 1800s | ^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:429:7 1800s | 1800s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 1800s | ^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `std` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1800s | 1800s 291 | #[cfg(not(std))] 1800s | ^^^ help: found config with similar value: `feature = "std"` 1800s ... 1800s 359 | scalar_float_impl!(f32, u32); 1800s | ---------------------------- in this macro invocation 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1800s 1800s warning: unexpected `cfg` condition name: `std` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:291:19 1800s | 1800s 291 | #[cfg(not(std))] 1800s | ^^^ help: found config with similar value: `feature = "std"` 1800s ... 1800s 360 | scalar_float_impl!(f64, u64); 1800s | ---------------------------- in this macro invocation 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 1800s | 1800s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 1800s | 1800s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 1800s | 1800s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 1800s | 1800s 572 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 1800s | 1800s 679 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 1800s | 1800s 687 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 1800s | 1800s 696 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 1800s | 1800s 706 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 1800s | 1800s 1001 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 1800s | 1800s 1003 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 1800s | 1800s 1005 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 1800s | 1800s 1007 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 1800s | 1800s 1010 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 1800s | 1800s 1012 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition value: `simd_support` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 1800s | 1800s 1014 | #[cfg(feature = "simd_support")] 1800s | ^^^^^^^^^^^^^^^^^^^^^^^^ 1800s | 1800s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 1800s = help: consider adding `simd_support` as a feature in `Cargo.toml` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/rng.rs:395:12 1800s | 1800s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/rngs/mod.rs:99:12 1800s | 1800s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/rngs/mod.rs:118:12 1800s | 1800s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/rngs/std.rs:32:12 1800s | 1800s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/rngs/thread.rs:60:12 1800s | 1800s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/rngs/thread.rs:87:12 1800s | 1800s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/mod.rs:29:12 1800s | 1800s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/mod.rs:623:12 1800s | 1800s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/index.rs:276:12 1800s | 1800s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/mod.rs:114:16 1800s | 1800s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/mod.rs:142:16 1800s | 1800s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/mod.rs:170:16 1800s | 1800s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/mod.rs:219:16 1800s | 1800s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: unexpected `cfg` condition name: `doc_cfg` 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/seq/mod.rs:465:16 1800s | 1800s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 1800s | ^^^^^^^ 1800s | 1800s = help: consider using a Cargo feature instead 1800s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 1800s [lints.rust] 1800s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 1800s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 1800s = note: see for more information about checking conditional configuration 1800s 1800s warning: trait `Float` is never used 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:238:18 1800s | 1800s 238 | pub(crate) trait Float: Sized { 1800s | ^^^^^ 1800s | 1800s = note: `#[warn(dead_code)]` on by default 1800s 1800s warning: associated items `lanes`, `extract`, and `replace` are never used 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:247:8 1800s | 1800s 245 | pub(crate) trait FloatAsSIMD: Sized { 1800s | ----------- associated items in this trait 1800s 246 | #[inline(always)] 1800s 247 | fn lanes() -> usize { 1800s | ^^^^^ 1800s ... 1800s 255 | fn extract(self, index: usize) -> Self { 1800s | ^^^^^^^ 1800s ... 1800s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 1800s | ^^^^^^^ 1800s 1800s warning: method `all` is never used 1800s --> /tmp/tmp.IVFsYRIUeN/registry/rand-0.8.5/src/distributions/utils.rs:268:8 1800s | 1800s 266 | pub(crate) trait BoolAsSIMD: Sized { 1800s | ---------- method in this trait 1800s 267 | fn any(self) -> bool; 1800s 268 | fn all(self) -> bool; 1800s | ^^^ 1800s 1801s warning: `rand` (lib) generated 70 warnings (1 duplicate) 1801s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=25bd9d7b1e7b26a9 -C extra-filename=-25bd9d7b1e7b26a9 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 1801s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 1801s Compiling peg v0.8.4 1801s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/peg-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='A simple Parsing Expression Grammar (PEG) parser generator.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION=1.68.0 CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/peg-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name peg --edition=2018 /tmp/tmp.IVFsYRIUeN/registry/peg-0.8.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "trace"))' -C metadata=93f3c4f7744a6516 -C extra-filename=-93f3c4f7744a6516 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern peg_macros=/tmp/tmp.IVFsYRIUeN/target/release/deps/libpeg_macros-39a0290f33394d81.so --extern peg_runtime=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libpeg_runtime-25bd9d7b1e7b26a9.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1801s warning: `peg` (lib) generated 1 warning (1 duplicate) 1801s Compiling oxrdf v0.2.4 1801s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 1801s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=45fd1d95441d822e -C extra-filename=-45fd1d95441d822e --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern oxilangtag=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern rand=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rmeta --extern thiserror=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1801s warning: `peg-runtime` (lib) generated 3 warnings (3 duplicates) 1802s Compiling spargebra v0.3.4 1802s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=spargebra CARGO_MANIFEST_DIR=/tmp/tmp.IVFsYRIUeN/registry/spargebra-0.3.4 CARGO_MANIFEST_PATH=/tmp/tmp.IVFsYRIUeN/registry/spargebra-0.3.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL parser 1802s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spargebra CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.3.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.IVFsYRIUeN/registry/spargebra-0.3.4 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name spargebra --edition=2021 /tmp/tmp.IVFsYRIUeN/registry/spargebra-0.3.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=5f256afbcbc6c286 -C extra-filename=-5f256afbcbc6c286 --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern oxilangtag=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-45fd1d95441d822e.rmeta --extern peg=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libpeg-93f3c4f7744a6516.rmeta --extern rand=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rmeta --extern thiserror=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libthiserror-27dfaf5cbfbe8b32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 1810s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 1819s warning: `spargebra` (lib) generated 1 warning (1 duplicate) 1819s Compiling sparopt v0.2.0 (/usr/share/cargo/registry/sparopt-0.2.0) 1819s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sparopt CARGO_MANIFEST_DIR=/usr/share/cargo/registry/sparopt-0.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/sparopt-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL optimizer 1819s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparopt CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparopt' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/sparopt-0.2.0 LD_LIBRARY_PATH=/tmp/tmp.IVFsYRIUeN/target/release/deps rustc --crate-name sparopt --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=b348a95c9cba873a -C extra-filename=-b348a95c9cba873a --out-dir /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.IVFsYRIUeN/target/release/deps --extern oxrdf=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-45fd1d95441d822e.rlib --extern rand=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/librand-2fe9818164ef43c6.rlib --extern spargebra=/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/libspargebra-5f256afbcbc6c286.rlib -Ctarget-feature=+backchain` 1819s warning: `sparopt` (lib test) generated 1 warning (1 duplicate) 1819s Finished `release` profile [optimized] target(s) in 24.60s 1819s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/sparopt-0.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/sparopt-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL optimizer 1819s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparopt CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparopt' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.IVFsYRIUeN/target/s390x-unknown-linux-gnu/release/deps/sparopt-b348a95c9cba873a` 1819s 1819s running 0 tests 1819s 1819s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 1819s 1819s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 1819s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 1819s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 1819s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 1819s autopkgtest: DBG: testbed command exited with code 0 1819s autopkgtest [01:57:12]: test rust-sparopt:default: -----------------------] 1819s autopkgtest: DBG: testbed executing test finished with exit status 0 1819s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparopt%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-sparopt%3Adefault-stdout 1820s autopkgtest: DBG: got reply from testbed: ok 1820s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparopt%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-sparopt%3Adefault-stderr 1820s autopkgtest: DBG: got reply from testbed: ok 1820s rust-sparopt:default PASS 1820s autopkgtest [01:57:13]: test rust-sparopt:default: - - - - - - - - - - results - - - - - - - - - - 1820s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-sparopt%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 1820s autopkgtest: DBG: got reply from testbed: ok 1820s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-sparopt:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1820s autopkgtest: DBG: testbed command exited with code 0 1820s autopkgtest [01:57:13]: test rust-oxigraph:default: preparing testbed 1820s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-sparopt-0.2+default-dev'], deps_new=['dh-rust', 'librust-cc-1+parallel-dev', 'librust-is-terminal-0.4+default-dev', 'librust-oxigraph-0.4+default-dev'] 1820s autopkgtest: DBG: testbed reset 1820s autopkgtest: DBG: sending command to testbed: revert 1934s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 1934s autopkgtest: DBG: sending command to testbed: print-execute-command 1934s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 1934s autopkgtest: DBG: sending command to testbed: capabilities 1934s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 1934s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 1934s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1934s autopkgtest: DBG: testbed command exited with code 0 1934s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 1935s autopkgtest: DBG: got reply from testbed: ok 1935s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1935s autopkgtest: DBG: testbed command exited with code 0 1935s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1935s autopkgtest: DBG: testbed command exited with code 0 1935s autopkgtest [01:59:08]: testbed dpkg architecture: s390x 1935s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1935s autopkgtest: DBG: testbed command exited with code 0 1935s autopkgtest [01:59:08]: testbed apt version: 2.9.28 1935s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1935s autopkgtest: DBG: testbed command exited with code 0 1935s autopkgtest: DBG: testbed has eatmydata 1935s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1935s autopkgtest: DBG: testbed command exited with code 0 1935s autopkgtest [01:59:08]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1935s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1936s autopkgtest: DBG: testbed command exited with code 0 1936s autopkgtest [01:59:09]: testbed release detected to be: plucky 1936s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 1936s autopkgtest: DBG: testbed command exited with code 0 1936s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 1936s autopkgtest: DBG: testbed command exited with code 0 1936s autopkgtest: DBG: adding APT source: Types: deb deb-src 1936s URIs: http://ftpmaster.internal/ubuntu/ 1936s Suites: plucky-proposed 1936s Components: main restricted universe multiverse 1936s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1936s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 1936s autopkgtest: DBG: testbed command exited with code 0 1936s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1936s Package: * 1936s Pin: release plucky-proposed 1936s Pin-Priority: 500 1936s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 1936s autopkgtest: DBG: testbed command exited with code 0 1936s autopkgtest [01:59:09]: updating testbed package index (apt update) 1936s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1937s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1937s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1937s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1937s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1937s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 1937s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1937s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 1937s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 1937s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 1937s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1937s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 1937s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 1937s Fetched 2083 kB in 1s (1992 kB/s) 1938s Reading package lists... 1938s autopkgtest: DBG: testbed command exited with code 0 1938s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1938s Package: * 1938s Pin: release plucky-proposed 1938s Pin-Priority: 100 1938s 1938s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 1938s Pin: release plucky-proposed 1938s Pin-Priority: 995 1938s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1938s autopkgtest: DBG: testbed command exited with code 0 1938s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1938s autopkgtest: DBG: testbed command exited with code 0 1938s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1939s + lsb_release --codename --short 1939s + RELEASE=plucky 1939s + cat 1939s + [ plucky != trusty ] 1939s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1939s Reading package lists... 1939s Building dependency tree... 1939s Reading state information... 1939s Calculating upgrade... 1939s The following packages were automatically installed and are no longer required: 1939s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1939s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1939s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1939s linux-tools-6.11.0-8-generic 1939s Use 'sudo apt autoremove' to remove them. 1939s The following packages will be upgraded: 1939s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 1939s libxdmcp6 1939s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1939s Need to get 1471 kB of archives. 1939s After this operation, 24.6 kB of additional disk space will be used. 1939s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 1939s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 1939s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 1939s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 1940s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 1940s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 1940s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 1940s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 1940s Preconfiguring packages ... 1940s Fetched 1471 kB in 1s (2090 kB/s) 1940s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1940s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 1940s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 1940s Setting up dash (0.5.12-12ubuntu1) ... 1940s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1940s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 1940s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1940s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 1940s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1940s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 1940s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1940s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 1940s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1940s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 1940s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1940s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 1940s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 1940s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 1940s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1940s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 1940s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 1940s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 1940s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 1940s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 1940s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 1940s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 1940s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 1940s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 1940s Setting up libtasn1-6:s390x (4.20.0-2) ... 1940s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1940s Processing triggers for man-db (2.13.0-1) ... 1941s Processing triggers for debianutils (5.21) ... 1941s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1941s + /usr/lib/apt/apt-helper analyze-pattern ?true 1941s + uname -r 1941s + sed s/\./\\./g 1941s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1941s + apt list ?obsolete 1941s + tail -n+2 1941s + grep -v ^linux-.*6\.12\.0-15-generic.* 1941s + cut -d/ -f1 1941s + true 1941s + obsolete_pkgs= 1941s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1941s Reading package lists... 1941s Building dependency tree... 1941s Reading state information... 1941s The following packages will be REMOVED: 1941s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1941s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1941s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1941s linux-tools-6.11.0-8-generic* 1942s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 1942s After this operation, 167 MB disk space will be freed. 1942s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 1942s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1942s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1942s Removing libpython3.12t64:s390x (3.12.9-1) ... 1942s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1942s Removing libnsl2:s390x (1.3.0-3build3) ... 1942s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1942s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1942s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1942s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1943s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1943s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1943s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1943s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1943s + grep -q trusty /etc/lsb-release 1943s + [ ! -d /usr/share/doc/unattended-upgrades ] 1943s + [ ! -d /usr/share/doc/lxd ] 1943s + [ ! -d /usr/share/doc/lxd-client ] 1943s + [ ! -d /usr/share/doc/snapd ] 1943s + type iptables 1943s + cat 1943s + chmod 755 /etc/rc.local 1943s + . /etc/rc.local 1943s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1943s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1943s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1943s + uname -m 1943s + [ s390x = ppc64le ] 1943s + [ -d /run/systemd/system ] 1943s + systemd-detect-virt --quiet --vm 1943s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1943s + cat 1943s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1943s + echo COMPRESS=lz4 1943s autopkgtest: DBG: testbed command exited with code 0 1943s autopkgtest [01:59:16]: upgrading testbed (apt dist-upgrade and autopurge) 1943s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1943s Reading package lists... 1943s Building dependency tree... 1943s Reading state information... 1943s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1943s Starting 2 pkgProblemResolver with broken count: 0 1943s Done 1943s Entering ResolveByKeep 1944s 1944s The following packages will be upgraded: 1944s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 1944s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1944s Need to get 10.7 MB of archives. 1944s After this operation, 305 kB of additional disk space will be used. 1944s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 1944s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 1945s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 1947s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 1947s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 1947s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1947s Preconfiguring packages ... 1947s Fetched 10.7 MB in 4s (2999 kB/s) 1948s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 1948s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 1948s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1948s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 1948s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1948s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 1948s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1948s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 1948s Checking for services that may need to be restarted... 1948s Checking init scripts... 1948s Checking for services that may need to be restarted... 1948s Checking init scripts... 1948s Stopping some services possibly affected by the upgrade (will be restarted later): 1948s cron: stopping...done. 1948s 1948s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1948s Setting up libc6:s390x (2.41-1ubuntu1) ... 1948s Checking for services that may need to be restarted... 1948s Checking init scripts... 1948s Restarting services possibly affected by the upgrade: 1948s cron: restarting...done. 1948s 1948s Services restarted successfully. 1948s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1948s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 1948s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1948s Setting up libc-bin (2.41-1ubuntu1) ... 1948s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 1948s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1948s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1948s Setting up iproute2 (6.13.0-1ubuntu1) ... 1948s Setting up locales (2.41-1ubuntu1) ... 1948s Installing new version of config file /etc/locale.alias ... 1949s Generating locales (this might take a while)... 1950s en_US.UTF-8... done 1950s Generation complete. 1950s Setting up libc-dev-bin (2.41-1ubuntu1) ... 1950s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 1950s Processing triggers for man-db (2.13.0-1) ... 1951s Processing triggers for systemd (257.2-3ubuntu1) ... 1951s autopkgtest: DBG: testbed command exited with code 0 1951s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1951s Reading package lists... 1951s Building dependency tree... 1951s Reading state information... 1951s Starting pkgProblemResolver with broken count: 0 1951s Starting 2 pkgProblemResolver with broken count: 0 1951s Done 1952s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1952s autopkgtest: DBG: testbed command exited with code 0 1952s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1952s autopkgtest: DBG: testbed command exited with code 1 1952s autopkgtest [01:59:25]: rebooting testbed after setup commands that affected boot 1952s autopkgtest: DBG: sending command to testbed: reboot 1961s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 1968s autopkgtest: DBG: got reply from testbed: ok 1968s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1968s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1968s autopkgtest: DBG: testbed command exited with code 0 1968s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1968s autopkgtest: DBG: got reply from testbed: ok 1968s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1968s autopkgtest: DBG: testbed command exited with code 0 1968s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1969s autopkgtest: DBG: testbed command exited with code 0 1969s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1969s autopkgtest: DBG: testbed command exited with code 0 1969s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1969s autopkgtest: DBG: testbed command exited with code 0 1969s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1969s autopkgtest: DBG: got reply from testbed: ok 1969s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1969s autopkgtest: DBG: testbed command exited with code 0 1969s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1969s autopkgtest: DBG: testbed command exited with code 0 1969s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1970s autopkgtest: DBG: testbed command exited with code 0 1970s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 1970s autopkgtest: DBG: testbed command exited with code 0 1970s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 1970s autopkgtest: DBG: got reply from testbed: ok 1970s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1970s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1970s autopkgtest: DBG: testbed command exited with code 0 1970s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 1970s autopkgtest: DBG: got reply from testbed: ok 1970s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1970s autopkgtest: DBG: testbed command exited with code 0 1970s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1971s autopkgtest: DBG: testbed command exited with code 0 1971s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1971s autopkgtest: DBG: testbed command exited with code 0 1971s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 1971s autopkgtest: DBG: testbed command exited with code 0 1971s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 1971s autopkgtest: DBG: got reply from testbed: ok 1971s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1971s autopkgtest: DBG: testbed command exited with code 0 1971s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1971s autopkgtest: DBG: testbed command exited with code 0 1971s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1972s autopkgtest: DBG: testbed command exited with code 0 1972s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1972s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-cc-1+parallel-dev', 'librust-is-terminal-0.4+default-dev', 'librust-oxigraph-0.4+default-dev'] 1972s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-cc-1+parallel-dev, librust-is-terminal-0.4+default-dev, librust-oxigraph-0.4+default-dev 1972s autopkgtest: DBG: can use apt-get on testbed: True 1972s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-cc-1+parallel-dev, librust-is-terminal-0.4+default-dev, librust-oxigraph-0.4+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1972s Reading package lists... 1972s Building dependency tree... 1972s Reading state information... 1972s Starting pkgProblemResolver with broken count: 0 1972s Starting 2 pkgProblemResolver with broken count: 0 1972s Done 1972s The following NEW packages will be installed: 1972s autoconf automake autopoint autotools-dev cargo cargo-1.83 clang clang-19 1972s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit 1972s dh-autoreconf dh-rust dh-strip-nondeterminism dwz gcc gcc-14 1972s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 1972s libarchive-zip-perl libasan8 libbz2-dev libcc1-0 libclang-19-dev 1972s libclang-common-19-dev libclang-cpp19 libclang-dev libdebhelper-perl 1972s libfile-stripnondeterminism-perl libgc1 libgcc-14-dev libgflags-dev 1972s libgflags2.2 libgit2-1.8 libgomp1 libisl23 libitm1 liblz4-dev libmpc3 1972s libobjc-14-dev libobjc4 libpfm4 libpkgconf3 librocksdb-dev librocksdb9.10 1972s librust-addr2line-dev librust-adler-dev librust-ahash-dev 1972s librust-aho-corasick-dev librust-allocator-api2-dev 1972s librust-annotate-snippets-dev librust-anstream-dev librust-anstyle-dev 1972s librust-anstyle-parse-dev librust-anstyle-query-dev librust-arbitrary-dev 1972s librust-arrayvec-dev librust-autocfg-dev librust-backtrace-dev 1972s librust-base64-dev librust-bindgen-dev librust-bitflags-dev 1972s librust-blobby-dev librust-block-buffer-dev librust-bumpalo-dev 1972s librust-bytemuck-derive-dev librust-bytemuck-dev librust-byteorder-dev 1972s librust-bytes-dev librust-cc-dev librust-cexpr-dev librust-cfg-if-dev 1972s librust-clang-sys-dev librust-clap-builder-dev librust-clap-complete-dev 1972s librust-clap-derive-dev librust-clap-dev librust-clap-lex-dev 1972s librust-colorchoice-dev librust-compiler-builtins+core-dev 1972s librust-compiler-builtins+rustc-dep-of-std-dev librust-compiler-builtins-dev 1972s librust-const-oid-dev librust-const-random-dev 1972s librust-const-random-macro-dev librust-cpp-demangle-dev 1973s librust-cpufeatures-dev librust-crc32fast-dev librust-critical-section-dev 1973s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 1973s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 1973s librust-crypto-common-dev librust-dashmap-dev librust-derive-arbitrary-dev 1973s librust-digest-dev librust-either-dev librust-encoding-rs-dev 1973s librust-equivalent-dev librust-erased-serde-dev librust-errno-dev 1973s librust-fallible-iterator-dev librust-fastrand-dev librust-flate2-dev 1973s librust-foreign-types-0.3-dev librust-foreign-types-shared-0.1-dev 1973s librust-form-urlencoded-dev librust-generic-array-dev librust-getrandom-dev 1973s librust-gimli-dev librust-glob-dev librust-hashbrown-dev librust-heck-dev 1973s librust-hex-dev librust-httparse-dev librust-idna-dev librust-indexmap-dev 1973s librust-is-executable-dev librust-is-terminal-dev librust-itertools-dev 1973s librust-itoa-dev librust-jobserver-dev librust-js-sys-dev 1973s librust-json-event-parser-dev librust-lazy-static-dev librust-libc-dev 1973s librust-libloading-dev librust-libz-sys-dev librust-linux-raw-sys-dev 1973s librust-lock-api-dev librust-log-dev librust-md-5-dev librust-md5-asm-dev 1973s librust-memchr-dev librust-memmap2-dev librust-minimal-lexical-dev 1973s librust-miniz-oxide-dev librust-mio-dev librust-native-tls-dev 1973s librust-no-panic-dev librust-nom+std-dev librust-nom-dev librust-object-dev 1973s librust-once-cell-dev librust-openssl-dev librust-openssl-macros-dev 1973s librust-openssl-probe-dev librust-openssl-sys-dev librust-owning-ref-dev 1973s librust-oxhttp-dev librust-oxigraph-dev librust-oxilangtag-dev 1973s librust-oxiri-dev librust-oxrdf-dev librust-oxrocksdb-sys-dev 1973s librust-oxsdatatypes-dev librust-parking-lot-core-dev 1973s librust-parking-lot-dev librust-peg-dev librust-peg-macros-dev 1973s librust-peg-runtime-dev librust-percent-encoding-dev 1973s librust-pin-project-lite-dev librust-pkg-config-dev 1973s librust-portable-atomic-dev librust-ppv-lite86-dev librust-prettyplease-dev 1973s librust-proc-macro2-dev librust-quick-xml-dev librust-quote-dev 1973s librust-rand-chacha-dev librust-rand-core+getrandom-dev 1973s librust-rand-core+serde-dev librust-rand-core+std-dev librust-rand-core-dev 1973s librust-rand-dev librust-rayon-core-dev librust-rayon-dev 1973s librust-regex-automata-dev librust-regex-dev librust-regex-syntax-dev 1973s librust-ring-dev librust-rustc-demangle-dev librust-rustc-hash-2-dev 1973s librust-rustc-hash-dev librust-rustc-std-workspace-core-dev 1973s librust-rustix-dev librust-rustls-0.21-dev librust-rustls-native-certs-dev 1973s librust-rustls-pemfile-dev librust-rustls-webpki-0.101-dev 1973s librust-ruzstd-dev librust-ryu-dev librust-schannel-dev 1973s librust-scopeguard-dev librust-sct-dev librust-serde-derive-dev 1973s librust-serde-dev librust-serde-fmt-dev librust-serde-json-dev 1973s librust-serde-test-dev librust-sha1-asm-dev librust-sha1-dev 1973s librust-sha2-asm-dev librust-sha2-dev librust-shlex-dev 1973s librust-signal-hook-registry-dev librust-siphasher-dev librust-smallvec-dev 1973s librust-socket2-dev librust-sparesults-dev librust-spargebra-dev 1973s librust-spin-dev librust-stable-deref-trait-dev 1973s librust-static-assertions-dev librust-strsim-dev librust-subtle-dev 1973s librust-sval-buffer-dev librust-sval-derive-dev librust-sval-dev 1973s librust-sval-dynamic-dev librust-sval-fmt-dev librust-sval-ref-dev 1973s librust-sval-serde-dev librust-syn-1-dev librust-syn-dev 1973s librust-tempfile-dev librust-terminal-size-dev librust-thiserror-1-dev 1973s librust-thiserror-impl-1-dev librust-tiny-keccak-dev librust-tokio-dev 1973s librust-tokio-macros-dev librust-tracing-attributes-dev 1973s librust-tracing-core-dev librust-tracing-dev librust-twox-hash-dev 1973s librust-typed-arena-dev librust-typenum-dev librust-unicase-dev 1973s librust-unicode-bidi-dev librust-unicode-ident-dev 1973s librust-unicode-normalization-dev librust-unicode-segmentation-dev 1973s librust-unicode-width-0.1-dev librust-unicode-width-dev 1973s librust-untrusted-dev librust-url-dev librust-utf8parse-dev 1973s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 1973s librust-value-bag-serde1-dev librust-value-bag-sval2-dev librust-vcpkg-dev 1973s librust-version-check-dev librust-wasm-bindgen-backend-dev 1973s librust-wasm-bindgen-dev librust-wasm-bindgen-macro-dev 1973s librust-wasm-bindgen-macro-support-dev librust-wasm-bindgen-shared-dev 1973s librust-winapi-dev librust-winapi-i686-pc-windows-gnu-dev 1973s librust-winapi-x86-64-pc-windows-gnu-dev librust-zerocopy-derive-dev 1973s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 1973s libsnappy-dev libsnappy1v5 libssl-dev libstd-rust-1.83 libstd-rust-1.83-dev 1973s libstdc++-14-dev libtool libubsan1 libxxhash-dev libzstd-dev llvm llvm-19 1973s llvm-19-linker-tools llvm-19-runtime llvm-runtime m4 pkgconf pkgconf-bin 1973s po-debconf rustc rustc-1.83 zlib1g-dev 1973s 0 upgraded, 297 newly installed, 0 to remove and 0 not upgraded. 1973s Need to get 235 MB of archives. 1973s After this operation, 1251 MB of additional disk space will be used. 1973s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 1973s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 1973s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 1973s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 1973s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 1973s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 1973s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 1975s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 1977s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 1977s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 1977s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 1977s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 1977s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 1977s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 1977s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 1977s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 1977s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 1977s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 1977s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 1977s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 1977s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 1978s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 1978s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 1978s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 1978s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 1978s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-cpp19 s390x 1:19.1.7-1ubuntu1 [16.7 MB] 1978s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 1978s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgc1 s390x 1:8.2.8-1 [93.7 kB] 1978s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc4 s390x 14.2.0-17ubuntu1 [49.9 kB] 1978s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc-14-dev s390x 14.2.0-17ubuntu1 [194 kB] 1978s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-common-19-dev s390x 1:19.1.7-1ubuntu1 [742 kB] 1978s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-linker-tools s390x 1:19.1.7-1ubuntu1 [1546 kB] 1979s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x clang-19 s390x 1:19.1.7-1ubuntu1 [79.4 kB] 1979s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x clang s390x 1:19.0-63 [6198 B] 1979s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 1979s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 1979s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 1979s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 1979s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 1979s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 1979s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 1979s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 1979s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 1979s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 1979s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 1979s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 1979s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 1979s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 1979s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 1979s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 1979s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 1979s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-19-dev s390x 1:19.1.7-1ubuntu1 [32.0 MB] 1980s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-dev s390x 1:19.0-63 [5770 B] 1980s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libgflags2.2 s390x 2.2.2-2build1 [71.7 kB] 1980s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libgflags-dev s390x 2.2.2-2build1 [102 kB] 1980s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 1980s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxxhash-dev s390x 0.8.2-2build1 [82.5 kB] 1980s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x liblz4-dev s390x 1.10.0-3 [110 kB] 1980s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 1980s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librocksdb9.10 s390x 9.10.0-1 [3610 kB] 1980s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy-dev s390x 1.2.1-1 [47.7 kB] 1980s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 1980s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 1980s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librocksdb-dev s390x 9.10.0-1 [5916 kB] 1980s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 1980s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 1980s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 1980s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 1980s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 1980s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 1980s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 1980s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 1980s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 1980s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 1980s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 1980s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 1980s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 1980s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 1980s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 1980s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 1980s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 1980s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 1980s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 1980s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 1980s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 1980s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 1980s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 1980s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 1980s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 1980s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 1980s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 1980s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 1980s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 1980s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 1980s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 1980s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 1980s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 1980s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 1980s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 1980s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 1980s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 1981s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 1981s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 1981s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 1981s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 1981s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 1981s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 1981s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 1981s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 1981s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 1981s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 1981s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 1981s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 1981s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 1981s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 1981s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 1981s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 1981s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 1981s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 1981s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 1981s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 1981s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 1981s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 1981s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 1981s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 1981s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 1981s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 1981s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 1981s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 1981s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 1981s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 1981s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 1981s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 1981s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 1981s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 1981s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 1981s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 1981s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 1982s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 1982s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 1982s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 1982s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 1982s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 1982s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 1982s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 1982s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 1982s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 1982s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 1982s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 1982s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 1982s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 1982s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 1982s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 1982s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 1982s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 1982s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 1982s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 1982s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 1982s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 1982s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-dev s390x 1.0.8-1 [16.7 kB] 1982s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-width-0.1-dev s390x 0.1.14-2 [196 kB] 1982s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-annotate-snippets-dev s390x 0.11.4-1 [39.6 kB] 1982s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arrayvec-dev s390x 0.7.6-1 [31.7 kB] 1982s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-utf8parse-dev s390x 0.2.1-1 [15.0 kB] 1982s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-parse-dev s390x 0.2.1-1 [17.1 kB] 1982s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-query-dev s390x 1.0.0-1 [9768 B] 1982s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-colorchoice-dev s390x 1.0.0-1 [8338 B] 1982s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstream-dev s390x 0.6.15-1 [25.7 kB] 1982s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 1982s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 1982s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-base64-dev s390x 0.22.1-1 [64.2 kB] 1982s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-derive-dev s390x 1.5.0-2 [18.7 kB] 1982s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-dev s390x 1.21.0-1 [48.9 kB] 1982s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-dev s390x 2.8.0-1 [43.5 kB] 1982s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-minimal-lexical-dev s390x 0.2.1-2 [87.0 kB] 1982s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom-dev s390x 7.1.3-1 [93.9 kB] 1982s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom+std-dev s390x 7.1.3-1 [1084 B] 1982s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cexpr-dev s390x 0.6.0-2 [19.6 kB] 1982s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-glob-dev s390x 0.3.2-1 [22.2 kB] 1982s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libloading-dev s390x 0.8.5-1 [29.2 kB] 1982s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-runtime s390x 1:19.1.7-1ubuntu1 [623 kB] 1982s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-runtime s390x 1:19.0-63 [5834 B] 1982s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x libpfm4 s390x 4.13.0+git83-g91970fe-1 [37.3 kB] 1982s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19 s390x 1:19.1.7-1ubuntu1 [21.1 MB] 1984s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm s390x 1:19.0-63 [4144 B] 1984s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clang-sys-dev s390x 1.8.1-3 [42.9 kB] 1984s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-lex-dev s390x 0.7.4-1 [14.7 kB] 1984s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-strsim-dev s390x 0.11.1-1 [15.9 kB] 1984s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+core-dev s390x 0.1.139-1 [1096 B] 1984s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+rustc-dep-of-std-dev s390x 0.1.139-1 [1106 B] 1984s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-errno-dev s390x 0.3.8-1 [13.0 kB] 1984s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-linux-raw-sys-dev s390x 0.4.14-1 [138 kB] 1984s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustix-dev s390x 0.38.37-1 [272 kB] 1984s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-terminal-size-dev s390x 0.3.0-2 [12.6 kB] 1984s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicase-dev s390x 2.8.0-1 [19.3 kB] 1984s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-width-dev s390x 0.2.0-1 [194 kB] 1984s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-builder-dev s390x 4.5.23-1 [136 kB] 1984s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-segmentation-dev s390x 1.12.0-1 [77.3 kB] 1984s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-heck-dev s390x 0.4.1-1 [13.3 kB] 1984s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-derive-dev s390x 4.5.18-1 [29.5 kB] 1984s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-dev s390x 4.5.23-1 [53.7 kB] 1985s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-i686-pc-windows-gnu-dev s390x 0.4.0-1 [3652 B] 1985s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-x86-64-pc-windows-gnu-dev s390x 0.4.0-1 [3660 B] 1985s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-dev s390x 0.3.9-1 [953 kB] 1985s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-is-executable-dev s390x 1.0.1-3 [11.7 kB] 1985s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 1985s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-complete-dev s390x 4.5.40-1 [40.5 kB] 1985s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itertools-dev s390x 0.13.0-3 [123 kB] 1985s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-prettyplease-dev s390x 0.2.6-1 [45.4 kB] 1985s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 1985s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 1985s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 1985s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hash-dev s390x 1.1.0-1 [10.8 kB] 1985s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bindgen-dev s390x 0.71.1-4 [195 kB] 1985s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 1985s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 1985s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 1985s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 1985s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpufeatures-dev s390x 0.2.16-1 [15.5 kB] 1985s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 1985s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 1985s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 1985s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dashmap-dev s390x 6.1.0-1 [24.5 kB] 1985s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 1985s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fastrand-dev s390x 2.1.1-1 [17.8 kB] 1985s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-foreign-types-shared-0.1-dev s390x 0.1.1-2 [7484 B] 1985s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-foreign-types-0.3-dev s390x 0.3.2-2 [9330 B] 1985s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-percent-encoding-dev s390x 2.3.1-1 [11.9 kB] 1985s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-form-urlencoded-dev s390x 1.2.1-1 [10.8 kB] 1985s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hex-dev s390x 0.4.3-2 [15.7 kB] 1985s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-httparse-dev s390x 1.8.0-1 [30.3 kB] 1985s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-bidi-dev s390x 0.3.17-1 [47.5 kB] 1985s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-normalization-dev s390x 0.1.22-1 [104 kB] 1985s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-idna-dev s390x 0.4.0-1 [222 kB] 1985s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-is-terminal-dev s390x 0.4.13-1 [8266 B] 1986s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 1986s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 1986s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 1986s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 1986s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 1986s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 1986s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 1986s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 1986s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 1986s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 1986s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 1986s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 1986s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 1986s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 1986s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 1986s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 1986s Get:252 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 1986s Get:253 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 1986s Get:254 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 1986s Get:255 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-json-event-parser-dev all 0.2.0-6 [16.6 kB] 1986s Get:256 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spin-dev s390x 0.9.8-4 [33.4 kB] 1986s Get:257 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lazy-static-dev s390x 1.5.0-1 [14.2 kB] 1986s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md5-asm-dev s390x 0.5.0-2 [7516 B] 1986s Get:259 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md-5-dev s390x 0.10.6-1 [17.5 kB] 1986s Get:260 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-openssl-macros-dev s390x 0.1.1-1 [7424 B] 1986s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-vcpkg-dev s390x 0.2.8-1 [12.8 kB] 1986s Get:262 http://ftpmaster.internal/ubuntu plucky/main s390x libssl-dev s390x 3.4.0-1ubuntu2 [2427 kB] 1986s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-openssl-sys-dev s390x 0.9.105-1 [68.0 kB] 1986s Get:264 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-openssl-dev s390x 0.10.70-1 [220 kB] 1986s Get:265 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-openssl-probe-dev s390x 0.1.2-1 [8028 B] 1986s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-schannel-dev s390x 0.1.19-1 [39.5 kB] 1986s Get:267 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tempfile-dev s390x 3.15.0-1 [36.0 kB] 1986s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-native-tls-dev s390x 0.2.13-1 [42.0 kB] 1986s Get:269 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-untrusted-dev s390x 0.9.0-2 [16.1 kB] 1986s Get:270 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ring-dev s390x 0.17.8-2 [3485 kB] 1987s Get:271 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustls-webpki-0.101-dev all 0.101.7-7 [157 kB] 1987s Get:272 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sct-dev s390x 0.7.1-3 [29.7 kB] 1987s Get:273 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustls-0.21-dev all 0.21.12-12 [360 kB] 1987s Get:274 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustls-pemfile-dev s390x 1.0.3-2 [22.2 kB] 1987s Get:275 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustls-native-certs-dev all 0.6.3-4 [14.6 kB] 1987s Get:276 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-url-dev s390x 2.5.2-1 [70.8 kB] 1987s Get:277 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxhttp-dev all 0.2.7-3 [29.2 kB] 1987s Get:278 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxiri-dev all 0.2.11-2 [20.9 kB] 1987s Get:279 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxilangtag-dev all 0.1.5-4 [16.2 kB] 1987s Get:280 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 1987s Get:281 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 1987s Get:282 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxsdatatypes-dev all 0.4.0~really0.2.2+0.4.7-4build1 [30.5 kB] 1987s Get:283 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 1987s Get:284 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrdf-dev all 0.4.0~really0.2.4+0.4.7-4build1 [76.1 kB] 1987s Get:285 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrocksdb-sys-dev all 0.4.7-4build1 [11.4 kB] 1987s Get:286 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hash-2-dev s390x 2.0.0-1 [14.4 kB] 1987s Get:287 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-siphasher-dev s390x 1.0.1-1 [12.5 kB] 1987s Get:288 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sparesults-dev all 0.4.0~really0.2.4+0.4.7-4build1 [27.4 kB] 1987s Get:289 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-runtime-dev all 0.8.3+0.8.4-3 [7008 B] 1987s Get:290 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-macros-dev all 0.8.4-3 [24.4 kB] 1987s Get:291 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-peg-dev all 0.8.4-3 [21.0 kB] 1988s Get:292 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-asm-dev s390x 0.5.1-2 [8060 B] 1988s Get:293 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-dev s390x 0.10.6-1 [16.0 kB] 1988s Get:294 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-asm-dev s390x 0.6.2-2 [14.4 kB] 1988s Get:295 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-dev s390x 0.10.8-1 [25.6 kB] 1988s Get:296 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spargebra-dev all 0.4.0~really0.3.4+0.4.7-4build1 [75.0 kB] 1988s Get:297 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxigraph-dev all 0.4.7-4build1 [64.8 kB] 1988s Fetched 235 MB in 15s (15.6 MB/s) 1988s Selecting previously unselected package m4. 1988s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 1988s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 1988s Unpacking m4 (1.4.19-5) ... 1988s Selecting previously unselected package autoconf. 1988s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 1988s Unpacking autoconf (2.72-3) ... 1989s Selecting previously unselected package autotools-dev. 1989s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 1989s Unpacking autotools-dev (20220109.1) ... 1989s Selecting previously unselected package automake. 1989s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 1989s Unpacking automake (1:1.17-3) ... 1989s Selecting previously unselected package autopoint. 1989s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 1989s Unpacking autopoint (0.23.1-1) ... 1989s Selecting previously unselected package libgit2-1.8:s390x. 1989s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 1989s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1989s Selecting previously unselected package libstd-rust-1.83:s390x. 1989s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1989s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1989s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 1989s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1989s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1990s Selecting previously unselected package libisl23:s390x. 1990s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 1990s Unpacking libisl23:s390x (0.27-1) ... 1990s Selecting previously unselected package libmpc3:s390x. 1990s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 1990s Unpacking libmpc3:s390x (1.3.1-1build2) ... 1990s Selecting previously unselected package cpp-14-s390x-linux-gnu. 1990s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package cpp-14. 1990s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package cpp-s390x-linux-gnu. 1990s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1990s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1990s Selecting previously unselected package cpp. 1990s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 1990s Unpacking cpp (4:14.2.0-1ubuntu1) ... 1990s Selecting previously unselected package libcc1-0:s390x. 1990s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package libgomp1:s390x. 1990s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package libitm1:s390x. 1990s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package libasan8:s390x. 1990s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package libubsan1:s390x. 1990s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package libgcc-14-dev:s390x. 1990s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package gcc-14-s390x-linux-gnu. 1990s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package gcc-14. 1990s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 1990s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 1990s Selecting previously unselected package gcc-s390x-linux-gnu. 1990s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1990s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1990s Selecting previously unselected package gcc. 1990s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 1990s Unpacking gcc (4:14.2.0-1ubuntu1) ... 1990s Selecting previously unselected package rustc-1.83. 1990s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1990s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1991s Selecting previously unselected package libclang-cpp19. 1991s Preparing to unpack .../025-libclang-cpp19_1%3a19.1.7-1ubuntu1_s390x.deb ... 1991s Unpacking libclang-cpp19 (1:19.1.7-1ubuntu1) ... 1991s Selecting previously unselected package libstdc++-14-dev:s390x. 1991s Preparing to unpack .../026-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1991s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 1991s Selecting previously unselected package libgc1:s390x. 1991s Preparing to unpack .../027-libgc1_1%3a8.2.8-1_s390x.deb ... 1991s Unpacking libgc1:s390x (1:8.2.8-1) ... 1991s Selecting previously unselected package libobjc4:s390x. 1991s Preparing to unpack .../028-libobjc4_14.2.0-17ubuntu1_s390x.deb ... 1991s Unpacking libobjc4:s390x (14.2.0-17ubuntu1) ... 1991s Selecting previously unselected package libobjc-14-dev:s390x. 1991s Preparing to unpack .../029-libobjc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1991s Unpacking libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 1991s Selecting previously unselected package libclang-common-19-dev:s390x. 1991s Preparing to unpack .../030-libclang-common-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 1991s Unpacking libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 1991s Selecting previously unselected package llvm-19-linker-tools. 1991s Preparing to unpack .../031-llvm-19-linker-tools_1%3a19.1.7-1ubuntu1_s390x.deb ... 1991s Unpacking llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 1991s Selecting previously unselected package clang-19. 1991s Preparing to unpack .../032-clang-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 1991s Unpacking clang-19 (1:19.1.7-1ubuntu1) ... 1991s Selecting previously unselected package clang. 1991s Preparing to unpack .../033-clang_1%3a19.0-63_s390x.deb ... 1991s Unpacking clang (1:19.0-63) ... 1991s Selecting previously unselected package cargo-1.83. 1991s Preparing to unpack .../034-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 1991s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1991s Selecting previously unselected package libdebhelper-perl. 1991s Preparing to unpack .../035-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 1991s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 1991s Selecting previously unselected package libtool. 1991s Preparing to unpack .../036-libtool_2.5.4-3build1_all.deb ... 1991s Unpacking libtool (2.5.4-3build1) ... 1991s Selecting previously unselected package dh-autoreconf. 1991s Preparing to unpack .../037-dh-autoreconf_20_all.deb ... 1991s Unpacking dh-autoreconf (20) ... 1991s Selecting previously unselected package libarchive-zip-perl. 1991s Preparing to unpack .../038-libarchive-zip-perl_1.68-1_all.deb ... 1991s Unpacking libarchive-zip-perl (1.68-1) ... 1991s Selecting previously unselected package libfile-stripnondeterminism-perl. 1991s Preparing to unpack .../039-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 1991s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 1991s Selecting previously unselected package dh-strip-nondeterminism. 1991s Preparing to unpack .../040-dh-strip-nondeterminism_1.14.1-2_all.deb ... 1991s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 1991s Selecting previously unselected package debugedit. 1991s Preparing to unpack .../041-debugedit_1%3a5.1-2_s390x.deb ... 1991s Unpacking debugedit (1:5.1-2) ... 1991s Selecting previously unselected package dwz. 1991s Preparing to unpack .../042-dwz_0.15-1build6_s390x.deb ... 1991s Unpacking dwz (0.15-1build6) ... 1991s Selecting previously unselected package gettext. 1991s Preparing to unpack .../043-gettext_0.23.1-1_s390x.deb ... 1991s Unpacking gettext (0.23.1-1) ... 1991s Selecting previously unselected package intltool-debian. 1991s Preparing to unpack .../044-intltool-debian_0.35.0+20060710.6_all.deb ... 1991s Unpacking intltool-debian (0.35.0+20060710.6) ... 1991s Selecting previously unselected package po-debconf. 1991s Preparing to unpack .../045-po-debconf_1.0.21+nmu1_all.deb ... 1991s Unpacking po-debconf (1.0.21+nmu1) ... 1991s Selecting previously unselected package debhelper. 1991s Preparing to unpack .../046-debhelper_13.24.1ubuntu2_all.deb ... 1991s Unpacking debhelper (13.24.1ubuntu2) ... 1991s Selecting previously unselected package rustc. 1991s Preparing to unpack .../047-rustc_1.83.0ubuntu1_s390x.deb ... 1991s Unpacking rustc (1.83.0ubuntu1) ... 1991s Selecting previously unselected package cargo. 1991s Preparing to unpack .../048-cargo_1.83.0ubuntu1_s390x.deb ... 1991s Unpacking cargo (1.83.0ubuntu1) ... 1991s Selecting previously unselected package dh-rust. 1991s Preparing to unpack .../049-dh-rust_0.0.11_all.deb ... 1991s Unpacking dh-rust (0.0.11) ... 1991s Selecting previously unselected package libbz2-dev:s390x. 1991s Preparing to unpack .../050-libbz2-dev_1.0.8-6_s390x.deb ... 1991s Unpacking libbz2-dev:s390x (1.0.8-6) ... 1991s Selecting previously unselected package libclang-19-dev. 1992s Preparing to unpack .../051-libclang-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 1992s Unpacking libclang-19-dev (1:19.1.7-1ubuntu1) ... 1993s Selecting previously unselected package libclang-dev. 1993s Preparing to unpack .../052-libclang-dev_1%3a19.0-63_s390x.deb ... 1993s Unpacking libclang-dev (1:19.0-63) ... 1993s Selecting previously unselected package libgflags2.2. 1993s Preparing to unpack .../053-libgflags2.2_2.2.2-2build1_s390x.deb ... 1993s Unpacking libgflags2.2 (2.2.2-2build1) ... 1993s Selecting previously unselected package libgflags-dev. 1993s Preparing to unpack .../054-libgflags-dev_2.2.2-2build1_s390x.deb ... 1993s Unpacking libgflags-dev (2.2.2-2build1) ... 1993s Selecting previously unselected package libpkgconf3:s390x. 1993s Preparing to unpack .../055-libpkgconf3_1.8.1-4_s390x.deb ... 1993s Unpacking libpkgconf3:s390x (1.8.1-4) ... 1993s Selecting previously unselected package libxxhash-dev:s390x. 1993s Preparing to unpack .../056-libxxhash-dev_0.8.2-2build1_s390x.deb ... 1993s Unpacking libxxhash-dev:s390x (0.8.2-2build1) ... 1993s Selecting previously unselected package liblz4-dev:s390x. 1993s Preparing to unpack .../057-liblz4-dev_1.10.0-3_s390x.deb ... 1993s Unpacking liblz4-dev:s390x (1.10.0-3) ... 1993s Selecting previously unselected package libsnappy1v5:s390x. 1993s Preparing to unpack .../058-libsnappy1v5_1.2.1-1_s390x.deb ... 1993s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 1993s Selecting previously unselected package librocksdb9.10. 1993s Preparing to unpack .../059-librocksdb9.10_9.10.0-1_s390x.deb ... 1993s Unpacking librocksdb9.10 (9.10.0-1) ... 1993s Selecting previously unselected package libsnappy-dev:s390x. 1993s Preparing to unpack .../060-libsnappy-dev_1.2.1-1_s390x.deb ... 1993s Unpacking libsnappy-dev:s390x (1.2.1-1) ... 1993s Selecting previously unselected package libzstd-dev:s390x. 1993s Preparing to unpack .../061-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 1993s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 1993s Selecting previously unselected package zlib1g-dev:s390x. 1993s Preparing to unpack .../062-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 1993s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1993s Selecting previously unselected package librocksdb-dev. 1993s Preparing to unpack .../063-librocksdb-dev_9.10.0-1_s390x.deb ... 1993s Unpacking librocksdb-dev (9.10.0-1) ... 1993s Selecting previously unselected package librust-cfg-if-dev:s390x. 1993s Preparing to unpack .../064-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 1993s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 1993s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 1993s Preparing to unpack .../065-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 1993s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1993s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 1993s Preparing to unpack .../066-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 1993s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1993s Selecting previously unselected package librust-unicode-ident-dev:s390x. 1993s Preparing to unpack .../067-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 1993s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 1993s Selecting previously unselected package librust-proc-macro2-dev:s390x. 1993s Preparing to unpack .../068-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 1993s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 1993s Selecting previously unselected package librust-quote-dev:s390x. 1993s Preparing to unpack .../069-librust-quote-dev_1.0.37-1_s390x.deb ... 1993s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 1993s Selecting previously unselected package librust-syn-dev:s390x. 1993s Preparing to unpack .../070-librust-syn-dev_2.0.96-2_s390x.deb ... 1993s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 1993s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 1993s Preparing to unpack .../071-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 1993s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1993s Selecting previously unselected package librust-arbitrary-dev:s390x. 1993s Preparing to unpack .../072-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 1993s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 1993s Selecting previously unselected package librust-equivalent-dev:s390x. 1993s Preparing to unpack .../073-librust-equivalent-dev_1.0.1-1_s390x.deb ... 1993s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 1993s Selecting previously unselected package librust-critical-section-dev:s390x. 1993s Preparing to unpack .../074-librust-critical-section-dev_1.2.0-1_s390x.deb ... 1993s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 1993s Selecting previously unselected package librust-serde-derive-dev:s390x. 1993s Preparing to unpack .../075-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 1993s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 1993s Selecting previously unselected package librust-serde-dev:s390x. 1993s Preparing to unpack .../076-librust-serde-dev_1.0.217-1_s390x.deb ... 1993s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 1993s Selecting previously unselected package librust-portable-atomic-dev:s390x. 1993s Preparing to unpack .../077-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 1993s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 1993s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 1993s Preparing to unpack .../078-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 1993s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1993s Selecting previously unselected package librust-libc-dev:s390x. 1993s Preparing to unpack .../079-librust-libc-dev_0.2.169-1_s390x.deb ... 1993s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 1993s Selecting previously unselected package librust-getrandom-dev:s390x. 1993s Preparing to unpack .../080-librust-getrandom-dev_0.2.15-1_s390x.deb ... 1993s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 1993s Selecting previously unselected package librust-smallvec-dev:s390x. 1993s Preparing to unpack .../081-librust-smallvec-dev_1.13.2-1_s390x.deb ... 1993s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 1993s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 1993s Preparing to unpack .../082-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 1993s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1993s Selecting previously unselected package librust-once-cell-dev:s390x. 1993s Preparing to unpack .../083-librust-once-cell-dev_1.20.2-1_s390x.deb ... 1993s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 1993s Selecting previously unselected package librust-crunchy-dev:s390x. 1993s Preparing to unpack .../084-librust-crunchy-dev_0.2.2-1_s390x.deb ... 1993s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 1993s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 1993s Preparing to unpack .../085-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 1993s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1993s Selecting previously unselected package librust-const-random-macro-dev:s390x. 1993s Preparing to unpack .../086-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 1993s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 1993s Selecting previously unselected package librust-const-random-dev:s390x. 1993s Preparing to unpack .../087-librust-const-random-dev_0.1.17-2_s390x.deb ... 1993s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 1993s Selecting previously unselected package librust-version-check-dev:s390x. 1993s Preparing to unpack .../088-librust-version-check-dev_0.9.5-1_s390x.deb ... 1993s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 1993s Selecting previously unselected package librust-byteorder-dev:s390x. 1993s Preparing to unpack .../089-librust-byteorder-dev_1.5.0-1_s390x.deb ... 1993s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 1993s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 1993s Preparing to unpack .../090-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 1993s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1993s Selecting previously unselected package librust-zerocopy-dev:s390x. 1993s Preparing to unpack .../091-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 1993s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 1993s Selecting previously unselected package librust-ahash-dev. 1993s Preparing to unpack .../092-librust-ahash-dev_0.8.11-9_all.deb ... 1993s Unpacking librust-ahash-dev (0.8.11-9) ... 1993s Selecting previously unselected package librust-allocator-api2-dev:s390x. 1993s Preparing to unpack .../093-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 1993s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 1993s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 1993s Preparing to unpack .../094-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 1993s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1993s Selecting previously unselected package librust-either-dev:s390x. 1993s Preparing to unpack .../095-librust-either-dev_1.13.0-1_s390x.deb ... 1993s Unpacking librust-either-dev:s390x (1.13.0-1) ... 1993s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 1993s Preparing to unpack .../096-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 1993s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1993s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 1993s Preparing to unpack .../097-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 1993s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1993s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 1993s Preparing to unpack .../098-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 1993s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1993s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 1993s Preparing to unpack .../099-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 1993s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1993s Selecting previously unselected package librust-rayon-core-dev:s390x. 1993s Preparing to unpack .../100-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 1993s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 1993s Selecting previously unselected package librust-rayon-dev:s390x. 1993s Preparing to unpack .../101-librust-rayon-dev_1.10.0-1_s390x.deb ... 1993s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 1993s Selecting previously unselected package librust-hashbrown-dev:s390x. 1993s Preparing to unpack .../102-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 1993s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 1993s Selecting previously unselected package librust-indexmap-dev:s390x. 1994s Preparing to unpack .../103-librust-indexmap-dev_2.7.0-1_s390x.deb ... 1994s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 1994s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 1994s Preparing to unpack .../104-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 1994s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1994s Selecting previously unselected package librust-gimli-dev:s390x. 1994s Preparing to unpack .../105-librust-gimli-dev_0.31.1-2_s390x.deb ... 1994s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 1994s Selecting previously unselected package librust-memmap2-dev:s390x. 1994s Preparing to unpack .../106-librust-memmap2-dev_0.9.5-1_s390x.deb ... 1994s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 1994s Selecting previously unselected package librust-crc32fast-dev:s390x. 1994s Preparing to unpack .../107-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 1994s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 1994s Selecting previously unselected package pkgconf-bin. 1994s Preparing to unpack .../108-pkgconf-bin_1.8.1-4_s390x.deb ... 1994s Unpacking pkgconf-bin (1.8.1-4) ... 1994s Selecting previously unselected package pkgconf:s390x. 1994s Preparing to unpack .../109-pkgconf_1.8.1-4_s390x.deb ... 1994s Unpacking pkgconf:s390x (1.8.1-4) ... 1994s Selecting previously unselected package librust-pkg-config-dev:s390x. 1994s Preparing to unpack .../110-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 1994s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 1994s Selecting previously unselected package librust-libz-sys-dev:s390x. 1994s Preparing to unpack .../111-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 1994s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 1994s Selecting previously unselected package librust-adler-dev:s390x. 1994s Preparing to unpack .../112-librust-adler-dev_1.0.2-2_s390x.deb ... 1994s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 1994s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 1994s Preparing to unpack .../113-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 1994s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1994s Selecting previously unselected package librust-flate2-dev:s390x. 1994s Preparing to unpack .../114-librust-flate2-dev_1.0.34-1_s390x.deb ... 1994s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 1994s Selecting previously unselected package librust-sval-derive-dev:s390x. 1994s Preparing to unpack .../115-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 1994s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 1994s Selecting previously unselected package librust-sval-dev:s390x. 1994s Preparing to unpack .../116-librust-sval-dev_2.6.1-2_s390x.deb ... 1994s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 1994s Selecting previously unselected package librust-sval-ref-dev:s390x. 1994s Preparing to unpack .../117-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 1994s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 1994s Selecting previously unselected package librust-erased-serde-dev:s390x. 1994s Preparing to unpack .../118-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 1994s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 1994s Selecting previously unselected package librust-serde-fmt-dev. 1994s Preparing to unpack .../119-librust-serde-fmt-dev_1.0.3-4_all.deb ... 1994s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 1994s Selecting previously unselected package librust-no-panic-dev:s390x. 1994s Preparing to unpack .../120-librust-no-panic-dev_0.1.32-1_s390x.deb ... 1994s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 1994s Selecting previously unselected package librust-itoa-dev:s390x. 1994s Preparing to unpack .../121-librust-itoa-dev_1.0.14-1_s390x.deb ... 1994s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 1994s Selecting previously unselected package librust-ryu-dev:s390x. 1994s Preparing to unpack .../122-librust-ryu-dev_1.0.19-1_s390x.deb ... 1994s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 1994s Selecting previously unselected package librust-serde-json-dev:s390x. 1994s Preparing to unpack .../123-librust-serde-json-dev_1.0.133-1_s390x.deb ... 1994s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 1994s Selecting previously unselected package librust-serde-test-dev:s390x. 1994s Preparing to unpack .../124-librust-serde-test-dev_1.0.171-1_s390x.deb ... 1994s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 1994s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 1994s Preparing to unpack .../125-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 1994s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1994s Selecting previously unselected package librust-sval-buffer-dev:s390x. 1994s Preparing to unpack .../126-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 1994s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 1994s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 1994s Preparing to unpack .../127-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 1994s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1994s Selecting previously unselected package librust-sval-fmt-dev:s390x. 1994s Preparing to unpack .../128-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 1994s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 1994s Selecting previously unselected package librust-sval-serde-dev:s390x. 1994s Preparing to unpack .../129-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 1994s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 1994s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 1994s Preparing to unpack .../130-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 1994s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1994s Selecting previously unselected package librust-value-bag-dev:s390x. 1994s Preparing to unpack .../131-librust-value-bag-dev_1.9.0-1_s390x.deb ... 1994s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 1994s Selecting previously unselected package librust-log-dev:s390x. 1994s Preparing to unpack .../132-librust-log-dev_0.4.22-1_s390x.deb ... 1994s Unpacking librust-log-dev:s390x (0.4.22-1) ... 1994s Selecting previously unselected package librust-memchr-dev:s390x. 1994s Preparing to unpack .../133-librust-memchr-dev_2.7.4-1_s390x.deb ... 1994s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 1994s Selecting previously unselected package librust-blobby-dev:s390x. 1994s Preparing to unpack .../134-librust-blobby-dev_0.3.1-1_s390x.deb ... 1994s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 1994s Selecting previously unselected package librust-typenum-dev:s390x. 1994s Preparing to unpack .../135-librust-typenum-dev_1.17.0-2_s390x.deb ... 1994s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 1994s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 1994s Preparing to unpack .../136-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 1994s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1994s Selecting previously unselected package librust-zeroize-dev:s390x. 1994s Preparing to unpack .../137-librust-zeroize-dev_1.8.1-1_s390x.deb ... 1994s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 1994s Selecting previously unselected package librust-generic-array-dev:s390x. 1994s Preparing to unpack .../138-librust-generic-array-dev_0.14.7-1_s390x.deb ... 1994s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 1994s Selecting previously unselected package librust-block-buffer-dev:s390x. 1994s Preparing to unpack .../139-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 1994s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 1994s Selecting previously unselected package librust-const-oid-dev:s390x. 1994s Preparing to unpack .../140-librust-const-oid-dev_0.9.6-1_s390x.deb ... 1994s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 1994s Selecting previously unselected package librust-rand-core-dev:s390x. 1994s Preparing to unpack .../141-librust-rand-core-dev_0.6.4-2_s390x.deb ... 1994s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 1994s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 1994s Preparing to unpack .../142-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 1994s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1994s Selecting previously unselected package librust-crypto-common-dev:s390x. 1994s Preparing to unpack .../143-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 1994s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 1994s Selecting previously unselected package librust-subtle-dev:s390x. 1994s Preparing to unpack .../144-librust-subtle-dev_2.6.1-1_s390x.deb ... 1994s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 1994s Selecting previously unselected package librust-digest-dev:s390x. 1994s Preparing to unpack .../145-librust-digest-dev_0.10.7-2_s390x.deb ... 1994s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 1994s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 1994s Preparing to unpack .../146-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 1994s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1994s Selecting previously unselected package librust-rand-chacha-dev:s390x. 1994s Preparing to unpack .../147-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 1994s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 1994s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 1994s Preparing to unpack .../148-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 1994s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1994s Selecting previously unselected package librust-rand-core+std-dev:s390x. 1994s Preparing to unpack .../149-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 1994s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 1994s Selecting previously unselected package librust-rand-dev:s390x. 1994s Preparing to unpack .../150-librust-rand-dev_0.8.5-1_s390x.deb ... 1994s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 1994s Selecting previously unselected package librust-static-assertions-dev:s390x. 1994s Preparing to unpack .../151-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 1994s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 1994s Selecting previously unselected package librust-twox-hash-dev:s390x. 1994s Preparing to unpack .../152-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 1994s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 1994s Selecting previously unselected package librust-ruzstd-dev:s390x. 1994s Preparing to unpack .../153-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 1994s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 1994s Selecting previously unselected package librust-object-dev:s390x. 1994s Preparing to unpack .../154-librust-object-dev_0.36.5-2_s390x.deb ... 1994s Unpacking librust-object-dev:s390x (0.36.5-2) ... 1994s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 1994s Preparing to unpack .../155-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 1994s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1994s Selecting previously unselected package librust-typed-arena-dev:s390x. 1994s Preparing to unpack .../156-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 1994s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 1994s Selecting previously unselected package librust-addr2line-dev:s390x. 1994s Preparing to unpack .../157-librust-addr2line-dev_0.24.2-2_s390x.deb ... 1994s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 1994s Selecting previously unselected package librust-aho-corasick-dev:s390x. 1994s Preparing to unpack .../158-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 1994s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 1994s Selecting previously unselected package librust-anstyle-dev:s390x. 1994s Preparing to unpack .../159-librust-anstyle-dev_1.0.8-1_s390x.deb ... 1994s Unpacking librust-anstyle-dev:s390x (1.0.8-1) ... 1994s Selecting previously unselected package librust-unicode-width-0.1-dev:s390x. 1994s Preparing to unpack .../160-librust-unicode-width-0.1-dev_0.1.14-2_s390x.deb ... 1994s Unpacking librust-unicode-width-0.1-dev:s390x (0.1.14-2) ... 1994s Selecting previously unselected package librust-annotate-snippets-dev:s390x. 1994s Preparing to unpack .../161-librust-annotate-snippets-dev_0.11.4-1_s390x.deb ... 1994s Unpacking librust-annotate-snippets-dev:s390x (0.11.4-1) ... 1994s Selecting previously unselected package librust-arrayvec-dev:s390x. 1994s Preparing to unpack .../162-librust-arrayvec-dev_0.7.6-1_s390x.deb ... 1994s Unpacking librust-arrayvec-dev:s390x (0.7.6-1) ... 1994s Selecting previously unselected package librust-utf8parse-dev:s390x. 1994s Preparing to unpack .../163-librust-utf8parse-dev_0.2.1-1_s390x.deb ... 1994s Unpacking librust-utf8parse-dev:s390x (0.2.1-1) ... 1994s Selecting previously unselected package librust-anstyle-parse-dev:s390x. 1994s Preparing to unpack .../164-librust-anstyle-parse-dev_0.2.1-1_s390x.deb ... 1994s Unpacking librust-anstyle-parse-dev:s390x (0.2.1-1) ... 1994s Selecting previously unselected package librust-anstyle-query-dev:s390x. 1994s Preparing to unpack .../165-librust-anstyle-query-dev_1.0.0-1_s390x.deb ... 1994s Unpacking librust-anstyle-query-dev:s390x (1.0.0-1) ... 1994s Selecting previously unselected package librust-colorchoice-dev:s390x. 1994s Preparing to unpack .../166-librust-colorchoice-dev_1.0.0-1_s390x.deb ... 1994s Unpacking librust-colorchoice-dev:s390x (1.0.0-1) ... 1994s Selecting previously unselected package librust-anstream-dev:s390x. 1994s Preparing to unpack .../167-librust-anstream-dev_0.6.15-1_s390x.deb ... 1994s Unpacking librust-anstream-dev:s390x (0.6.15-1) ... 1994s Selecting previously unselected package librust-autocfg-dev:s390x. 1994s Preparing to unpack .../168-librust-autocfg-dev_1.1.0-1_s390x.deb ... 1994s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 1994s Selecting previously unselected package librust-backtrace-dev:s390x. 1994s Preparing to unpack .../169-librust-backtrace-dev_0.3.74-3_s390x.deb ... 1994s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 1994s Selecting previously unselected package librust-base64-dev:s390x. 1994s Preparing to unpack .../170-librust-base64-dev_0.22.1-1_s390x.deb ... 1994s Unpacking librust-base64-dev:s390x (0.22.1-1) ... 1994s Selecting previously unselected package librust-bytemuck-derive-dev:s390x. 1994s Preparing to unpack .../171-librust-bytemuck-derive-dev_1.5.0-2_s390x.deb ... 1994s Unpacking librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 1994s Selecting previously unselected package librust-bytemuck-dev:s390x. 1994s Preparing to unpack .../172-librust-bytemuck-dev_1.21.0-1_s390x.deb ... 1994s Unpacking librust-bytemuck-dev:s390x (1.21.0-1) ... 1994s Selecting previously unselected package librust-bitflags-dev:s390x. 1994s Preparing to unpack .../173-librust-bitflags-dev_2.8.0-1_s390x.deb ... 1994s Unpacking librust-bitflags-dev:s390x (2.8.0-1) ... 1994s Selecting previously unselected package librust-minimal-lexical-dev:s390x. 1994s Preparing to unpack .../174-librust-minimal-lexical-dev_0.2.1-2_s390x.deb ... 1994s Unpacking librust-minimal-lexical-dev:s390x (0.2.1-2) ... 1994s Selecting previously unselected package librust-nom-dev:s390x. 1994s Preparing to unpack .../175-librust-nom-dev_7.1.3-1_s390x.deb ... 1994s Unpacking librust-nom-dev:s390x (7.1.3-1) ... 1994s Selecting previously unselected package librust-nom+std-dev:s390x. 1994s Preparing to unpack .../176-librust-nom+std-dev_7.1.3-1_s390x.deb ... 1994s Unpacking librust-nom+std-dev:s390x (7.1.3-1) ... 1994s Selecting previously unselected package librust-cexpr-dev:s390x. 1994s Preparing to unpack .../177-librust-cexpr-dev_0.6.0-2_s390x.deb ... 1994s Unpacking librust-cexpr-dev:s390x (0.6.0-2) ... 1994s Selecting previously unselected package librust-glob-dev:s390x. 1994s Preparing to unpack .../178-librust-glob-dev_0.3.2-1_s390x.deb ... 1994s Unpacking librust-glob-dev:s390x (0.3.2-1) ... 1994s Selecting previously unselected package librust-libloading-dev:s390x. 1994s Preparing to unpack .../179-librust-libloading-dev_0.8.5-1_s390x.deb ... 1994s Unpacking librust-libloading-dev:s390x (0.8.5-1) ... 1994s Selecting previously unselected package llvm-19-runtime. 1994s Preparing to unpack .../180-llvm-19-runtime_1%3a19.1.7-1ubuntu1_s390x.deb ... 1994s Unpacking llvm-19-runtime (1:19.1.7-1ubuntu1) ... 1994s Selecting previously unselected package llvm-runtime:s390x. 1994s Preparing to unpack .../181-llvm-runtime_1%3a19.0-63_s390x.deb ... 1994s Unpacking llvm-runtime:s390x (1:19.0-63) ... 1994s Selecting previously unselected package libpfm4:s390x. 1994s Preparing to unpack .../182-libpfm4_4.13.0+git83-g91970fe-1_s390x.deb ... 1994s Unpacking libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 1994s Selecting previously unselected package llvm-19. 1994s Preparing to unpack .../183-llvm-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 1994s Unpacking llvm-19 (1:19.1.7-1ubuntu1) ... 1995s Selecting previously unselected package llvm. 1995s Preparing to unpack .../184-llvm_1%3a19.0-63_s390x.deb ... 1995s Unpacking llvm (1:19.0-63) ... 1995s Selecting previously unselected package librust-clang-sys-dev:s390x. 1995s Preparing to unpack .../185-librust-clang-sys-dev_1.8.1-3_s390x.deb ... 1995s Unpacking librust-clang-sys-dev:s390x (1.8.1-3) ... 1995s Selecting previously unselected package librust-clap-lex-dev:s390x. 1995s Preparing to unpack .../186-librust-clap-lex-dev_0.7.4-1_s390x.deb ... 1995s Unpacking librust-clap-lex-dev:s390x (0.7.4-1) ... 1995s Selecting previously unselected package librust-strsim-dev:s390x. 1995s Preparing to unpack .../187-librust-strsim-dev_0.11.1-1_s390x.deb ... 1995s Unpacking librust-strsim-dev:s390x (0.11.1-1) ... 1995s Selecting previously unselected package librust-compiler-builtins+core-dev:s390x. 1995s Preparing to unpack .../188-librust-compiler-builtins+core-dev_0.1.139-1_s390x.deb ... 1995s Unpacking librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 1995s Selecting previously unselected package librust-compiler-builtins+rustc-dep-of-std-dev:s390x. 1995s Preparing to unpack .../189-librust-compiler-builtins+rustc-dep-of-std-dev_0.1.139-1_s390x.deb ... 1995s Unpacking librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 1995s Selecting previously unselected package librust-errno-dev:s390x. 1995s Preparing to unpack .../190-librust-errno-dev_0.3.8-1_s390x.deb ... 1995s Unpacking librust-errno-dev:s390x (0.3.8-1) ... 1995s Selecting previously unselected package librust-linux-raw-sys-dev:s390x. 1995s Preparing to unpack .../191-librust-linux-raw-sys-dev_0.4.14-1_s390x.deb ... 1995s Unpacking librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 1995s Selecting previously unselected package librust-rustix-dev:s390x. 1995s Preparing to unpack .../192-librust-rustix-dev_0.38.37-1_s390x.deb ... 1995s Unpacking librust-rustix-dev:s390x (0.38.37-1) ... 1995s Selecting previously unselected package librust-terminal-size-dev:s390x. 1995s Preparing to unpack .../193-librust-terminal-size-dev_0.3.0-2_s390x.deb ... 1995s Unpacking librust-terminal-size-dev:s390x (0.3.0-2) ... 1995s Selecting previously unselected package librust-unicase-dev:s390x. 1995s Preparing to unpack .../194-librust-unicase-dev_2.8.0-1_s390x.deb ... 1995s Unpacking librust-unicase-dev:s390x (2.8.0-1) ... 1995s Selecting previously unselected package librust-unicode-width-dev:s390x. 1995s Preparing to unpack .../195-librust-unicode-width-dev_0.2.0-1_s390x.deb ... 1995s Unpacking librust-unicode-width-dev:s390x (0.2.0-1) ... 1995s Selecting previously unselected package librust-clap-builder-dev:s390x. 1995s Preparing to unpack .../196-librust-clap-builder-dev_4.5.23-1_s390x.deb ... 1995s Unpacking librust-clap-builder-dev:s390x (4.5.23-1) ... 1995s Selecting previously unselected package librust-unicode-segmentation-dev:s390x. 1995s Preparing to unpack .../197-librust-unicode-segmentation-dev_1.12.0-1_s390x.deb ... 1995s Unpacking librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 1995s Selecting previously unselected package librust-heck-dev:s390x. 1995s Preparing to unpack .../198-librust-heck-dev_0.4.1-1_s390x.deb ... 1995s Unpacking librust-heck-dev:s390x (0.4.1-1) ... 1995s Selecting previously unselected package librust-clap-derive-dev:s390x. 1995s Preparing to unpack .../199-librust-clap-derive-dev_4.5.18-1_s390x.deb ... 1995s Unpacking librust-clap-derive-dev:s390x (4.5.18-1) ... 1995s Selecting previously unselected package librust-clap-dev:s390x. 1995s Preparing to unpack .../200-librust-clap-dev_4.5.23-1_s390x.deb ... 1995s Unpacking librust-clap-dev:s390x (4.5.23-1) ... 1995s Selecting previously unselected package librust-winapi-i686-pc-windows-gnu-dev:s390x. 1995s Preparing to unpack .../201-librust-winapi-i686-pc-windows-gnu-dev_0.4.0-1_s390x.deb ... 1995s Unpacking librust-winapi-i686-pc-windows-gnu-dev:s390x (0.4.0-1) ... 1995s Selecting previously unselected package librust-winapi-x86-64-pc-windows-gnu-dev:s390x. 1995s Preparing to unpack .../202-librust-winapi-x86-64-pc-windows-gnu-dev_0.4.0-1_s390x.deb ... 1995s Unpacking librust-winapi-x86-64-pc-windows-gnu-dev:s390x (0.4.0-1) ... 1995s Selecting previously unselected package librust-winapi-dev:s390x. 1995s Preparing to unpack .../203-librust-winapi-dev_0.3.9-1_s390x.deb ... 1995s Unpacking librust-winapi-dev:s390x (0.3.9-1) ... 1995s Selecting previously unselected package librust-is-executable-dev:s390x. 1995s Preparing to unpack .../204-librust-is-executable-dev_1.0.1-3_s390x.deb ... 1995s Unpacking librust-is-executable-dev:s390x (1.0.1-3) ... 1995s Selecting previously unselected package librust-shlex-dev:s390x. 1995s Preparing to unpack .../205-librust-shlex-dev_1.3.0-1_s390x.deb ... 1995s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 1995s Selecting previously unselected package librust-clap-complete-dev:s390x. 1995s Preparing to unpack .../206-librust-clap-complete-dev_4.5.40-1_s390x.deb ... 1995s Unpacking librust-clap-complete-dev:s390x (4.5.40-1) ... 1995s Selecting previously unselected package librust-itertools-dev:s390x. 1995s Preparing to unpack .../207-librust-itertools-dev_0.13.0-3_s390x.deb ... 1995s Unpacking librust-itertools-dev:s390x (0.13.0-3) ... 1995s Selecting previously unselected package librust-prettyplease-dev:s390x. 1995s Preparing to unpack .../208-librust-prettyplease-dev_0.2.6-1_s390x.deb ... 1995s Unpacking librust-prettyplease-dev:s390x (0.2.6-1) ... 1995s Selecting previously unselected package librust-regex-syntax-dev:s390x. 1995s Preparing to unpack .../209-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 1995s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 1995s Selecting previously unselected package librust-regex-automata-dev:s390x. 1995s Preparing to unpack .../210-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 1995s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 1995s Selecting previously unselected package librust-regex-dev:s390x. 1995s Preparing to unpack .../211-librust-regex-dev_1.11.1-2_s390x.deb ... 1995s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 1995s Selecting previously unselected package librust-rustc-hash-dev:s390x. 1995s Preparing to unpack .../212-librust-rustc-hash-dev_1.1.0-1_s390x.deb ... 1995s Unpacking librust-rustc-hash-dev:s390x (1.1.0-1) ... 1995s Selecting previously unselected package librust-bindgen-dev:s390x. 1995s Preparing to unpack .../213-librust-bindgen-dev_0.71.1-4_s390x.deb ... 1995s Unpacking librust-bindgen-dev:s390x (0.71.1-4) ... 1995s Selecting previously unselected package librust-bumpalo-dev:s390x. 1995s Preparing to unpack .../214-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 1995s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 1995s Selecting previously unselected package librust-bytes-dev:s390x. 1995s Preparing to unpack .../215-librust-bytes-dev_1.9.0-1_s390x.deb ... 1995s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 1995s Selecting previously unselected package librust-jobserver-dev:s390x. 1995s Preparing to unpack .../216-librust-jobserver-dev_0.1.32-1_s390x.deb ... 1995s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 1995s Selecting previously unselected package librust-cc-dev:s390x. 1995s Preparing to unpack .../217-librust-cc-dev_1.1.14-1_s390x.deb ... 1995s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 1995s Selecting previously unselected package librust-cpufeatures-dev:s390x. 1995s Preparing to unpack .../218-librust-cpufeatures-dev_0.2.16-1_s390x.deb ... 1995s Unpacking librust-cpufeatures-dev:s390x (0.2.16-1) ... 1995s Selecting previously unselected package librust-owning-ref-dev:s390x. 1995s Preparing to unpack .../219-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 1995s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 1995s Selecting previously unselected package librust-scopeguard-dev:s390x. 1995s Preparing to unpack .../220-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 1995s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 1995s Selecting previously unselected package librust-lock-api-dev:s390x. 1995s Preparing to unpack .../221-librust-lock-api-dev_0.4.12-1_s390x.deb ... 1995s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 1995s Selecting previously unselected package librust-dashmap-dev:s390x. 1995s Preparing to unpack .../222-librust-dashmap-dev_6.1.0-1_s390x.deb ... 1995s Unpacking librust-dashmap-dev:s390x (6.1.0-1) ... 1995s Selecting previously unselected package librust-encoding-rs-dev:s390x. 1995s Preparing to unpack .../223-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 1995s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 1996s Selecting previously unselected package librust-fastrand-dev:s390x. 1996s Preparing to unpack .../224-librust-fastrand-dev_2.1.1-1_s390x.deb ... 1996s Unpacking librust-fastrand-dev:s390x (2.1.1-1) ... 1996s Selecting previously unselected package librust-foreign-types-shared-0.1-dev:s390x. 1996s Preparing to unpack .../225-librust-foreign-types-shared-0.1-dev_0.1.1-2_s390x.deb ... 1996s Unpacking librust-foreign-types-shared-0.1-dev:s390x (0.1.1-2) ... 1996s Selecting previously unselected package librust-foreign-types-0.3-dev:s390x. 1996s Preparing to unpack .../226-librust-foreign-types-0.3-dev_0.3.2-2_s390x.deb ... 1996s Unpacking librust-foreign-types-0.3-dev:s390x (0.3.2-2) ... 1996s Selecting previously unselected package librust-percent-encoding-dev:s390x. 1996s Preparing to unpack .../227-librust-percent-encoding-dev_2.3.1-1_s390x.deb ... 1996s Unpacking librust-percent-encoding-dev:s390x (2.3.1-1) ... 1996s Selecting previously unselected package librust-form-urlencoded-dev:s390x. 1996s Preparing to unpack .../228-librust-form-urlencoded-dev_1.2.1-1_s390x.deb ... 1996s Unpacking librust-form-urlencoded-dev:s390x (1.2.1-1) ... 1996s Selecting previously unselected package librust-hex-dev:s390x. 1996s Preparing to unpack .../229-librust-hex-dev_0.4.3-2_s390x.deb ... 1996s Unpacking librust-hex-dev:s390x (0.4.3-2) ... 1996s Selecting previously unselected package librust-httparse-dev:s390x. 1996s Preparing to unpack .../230-librust-httparse-dev_1.8.0-1_s390x.deb ... 1996s Unpacking librust-httparse-dev:s390x (1.8.0-1) ... 1996s Selecting previously unselected package librust-unicode-bidi-dev:s390x. 1996s Preparing to unpack .../231-librust-unicode-bidi-dev_0.3.17-1_s390x.deb ... 1996s Unpacking librust-unicode-bidi-dev:s390x (0.3.17-1) ... 1996s Selecting previously unselected package librust-unicode-normalization-dev:s390x. 1996s Preparing to unpack .../232-librust-unicode-normalization-dev_0.1.22-1_s390x.deb ... 1996s Unpacking librust-unicode-normalization-dev:s390x (0.1.22-1) ... 1996s Selecting previously unselected package librust-idna-dev:s390x. 1996s Preparing to unpack .../233-librust-idna-dev_0.4.0-1_s390x.deb ... 1996s Unpacking librust-idna-dev:s390x (0.4.0-1) ... 1996s Selecting previously unselected package librust-is-terminal-dev:s390x. 1996s Preparing to unpack .../234-librust-is-terminal-dev_0.4.13-1_s390x.deb ... 1996s Unpacking librust-is-terminal-dev:s390x (0.4.13-1) ... 1996s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 1996s Preparing to unpack .../235-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 1996s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1996s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 1996s Preparing to unpack .../236-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 1996s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1996s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 1996s Preparing to unpack .../237-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 1996s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1996s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 1996s Preparing to unpack .../238-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 1996s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1996s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 1996s Preparing to unpack .../239-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 1996s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1996s Selecting previously unselected package librust-js-sys-dev:s390x. 1996s Preparing to unpack .../240-librust-js-sys-dev_0.3.64-1_s390x.deb ... 1996s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 1996s Selecting previously unselected package librust-mio-dev:s390x. 1996s Preparing to unpack .../241-librust-mio-dev_1.0.2-3_s390x.deb ... 1996s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 1996s Selecting previously unselected package librust-parking-lot-dev:s390x. 1996s Preparing to unpack .../242-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 1996s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 1996s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 1996s Preparing to unpack .../243-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 1996s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1996s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 1996s Preparing to unpack .../244-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 1996s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1996s Selecting previously unselected package librust-socket2-dev:s390x. 1996s Preparing to unpack .../245-librust-socket2-dev_0.5.8-1_s390x.deb ... 1996s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 1996s Selecting previously unselected package librust-tokio-macros-dev:s390x. 1996s Preparing to unpack .../246-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 1996s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 1996s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 1996s Preparing to unpack .../247-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 1996s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1996s Selecting previously unselected package librust-syn-1-dev:s390x. 1996s Preparing to unpack .../248-librust-syn-1-dev_1.0.109-3_s390x.deb ... 1996s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 1996s Selecting previously unselected package librust-valuable-derive-dev:s390x. 1996s Preparing to unpack .../249-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 1996s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 1996s Selecting previously unselected package librust-valuable-dev:s390x. 1996s Preparing to unpack .../250-librust-valuable-dev_0.1.0-4_s390x.deb ... 1996s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 1996s Selecting previously unselected package librust-tracing-core-dev:s390x. 1996s Preparing to unpack .../251-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 1996s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 1996s Selecting previously unselected package librust-tracing-dev:s390x. 1996s Preparing to unpack .../252-librust-tracing-dev_0.1.40-1_s390x.deb ... 1996s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 1996s Selecting previously unselected package librust-tokio-dev:s390x. 1996s Preparing to unpack .../253-librust-tokio-dev_1.43.0-1_s390x.deb ... 1996s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 1996s Selecting previously unselected package librust-json-event-parser-dev. 1996s Preparing to unpack .../254-librust-json-event-parser-dev_0.2.0-6_all.deb ... 1996s Unpacking librust-json-event-parser-dev (0.2.0-6) ... 1996s Selecting previously unselected package librust-spin-dev:s390x. 1996s Preparing to unpack .../255-librust-spin-dev_0.9.8-4_s390x.deb ... 1996s Unpacking librust-spin-dev:s390x (0.9.8-4) ... 1996s Selecting previously unselected package librust-lazy-static-dev:s390x. 1996s Preparing to unpack .../256-librust-lazy-static-dev_1.5.0-1_s390x.deb ... 1996s Unpacking librust-lazy-static-dev:s390x (1.5.0-1) ... 1996s Selecting previously unselected package librust-md5-asm-dev:s390x. 1996s Preparing to unpack .../257-librust-md5-asm-dev_0.5.0-2_s390x.deb ... 1996s Unpacking librust-md5-asm-dev:s390x (0.5.0-2) ... 1996s Selecting previously unselected package librust-md-5-dev:s390x. 1996s Preparing to unpack .../258-librust-md-5-dev_0.10.6-1_s390x.deb ... 1996s Unpacking librust-md-5-dev:s390x (0.10.6-1) ... 1996s Selecting previously unselected package librust-openssl-macros-dev:s390x. 1996s Preparing to unpack .../259-librust-openssl-macros-dev_0.1.1-1_s390x.deb ... 1996s Unpacking librust-openssl-macros-dev:s390x (0.1.1-1) ... 1996s Selecting previously unselected package librust-vcpkg-dev:s390x. 1996s Preparing to unpack .../260-librust-vcpkg-dev_0.2.8-1_s390x.deb ... 1996s Unpacking librust-vcpkg-dev:s390x (0.2.8-1) ... 1996s Selecting previously unselected package libssl-dev:s390x. 1996s Preparing to unpack .../261-libssl-dev_3.4.0-1ubuntu2_s390x.deb ... 1996s Unpacking libssl-dev:s390x (3.4.0-1ubuntu2) ... 1996s Selecting previously unselected package librust-openssl-sys-dev:s390x. 1996s Preparing to unpack .../262-librust-openssl-sys-dev_0.9.105-1_s390x.deb ... 1996s Unpacking librust-openssl-sys-dev:s390x (0.9.105-1) ... 1996s Selecting previously unselected package librust-openssl-dev:s390x. 1996s Preparing to unpack .../263-librust-openssl-dev_0.10.70-1_s390x.deb ... 1996s Unpacking librust-openssl-dev:s390x (0.10.70-1) ... 1996s Selecting previously unselected package librust-openssl-probe-dev:s390x. 1996s Preparing to unpack .../264-librust-openssl-probe-dev_0.1.2-1_s390x.deb ... 1996s Unpacking librust-openssl-probe-dev:s390x (0.1.2-1) ... 1996s Selecting previously unselected package librust-schannel-dev:s390x. 1996s Preparing to unpack .../265-librust-schannel-dev_0.1.19-1_s390x.deb ... 1996s Unpacking librust-schannel-dev:s390x (0.1.19-1) ... 1996s Selecting previously unselected package librust-tempfile-dev:s390x. 1996s Preparing to unpack .../266-librust-tempfile-dev_3.15.0-1_s390x.deb ... 1996s Unpacking librust-tempfile-dev:s390x (3.15.0-1) ... 1996s Selecting previously unselected package librust-native-tls-dev:s390x. 1996s Preparing to unpack .../267-librust-native-tls-dev_0.2.13-1_s390x.deb ... 1996s Unpacking librust-native-tls-dev:s390x (0.2.13-1) ... 1996s Selecting previously unselected package librust-untrusted-dev:s390x. 1996s Preparing to unpack .../268-librust-untrusted-dev_0.9.0-2_s390x.deb ... 1996s Unpacking librust-untrusted-dev:s390x (0.9.0-2) ... 1996s Selecting previously unselected package librust-ring-dev:s390x. 1996s Preparing to unpack .../269-librust-ring-dev_0.17.8-2_s390x.deb ... 1996s Unpacking librust-ring-dev:s390x (0.17.8-2) ... 1996s Selecting previously unselected package librust-rustls-webpki-0.101-dev. 1996s Preparing to unpack .../270-librust-rustls-webpki-0.101-dev_0.101.7-7_all.deb ... 1996s Unpacking librust-rustls-webpki-0.101-dev (0.101.7-7) ... 1996s Selecting previously unselected package librust-sct-dev:s390x. 1996s Preparing to unpack .../271-librust-sct-dev_0.7.1-3_s390x.deb ... 1996s Unpacking librust-sct-dev:s390x (0.7.1-3) ... 1996s Selecting previously unselected package librust-rustls-0.21-dev. 1996s Preparing to unpack .../272-librust-rustls-0.21-dev_0.21.12-12_all.deb ... 1996s Unpacking librust-rustls-0.21-dev (0.21.12-12) ... 1996s Selecting previously unselected package librust-rustls-pemfile-dev:s390x. 1996s Preparing to unpack .../273-librust-rustls-pemfile-dev_1.0.3-2_s390x.deb ... 1996s Unpacking librust-rustls-pemfile-dev:s390x (1.0.3-2) ... 1996s Selecting previously unselected package librust-rustls-native-certs-dev. 1996s Preparing to unpack .../274-librust-rustls-native-certs-dev_0.6.3-4_all.deb ... 1996s Unpacking librust-rustls-native-certs-dev (0.6.3-4) ... 1996s Selecting previously unselected package librust-url-dev:s390x. 1996s Preparing to unpack .../275-librust-url-dev_2.5.2-1_s390x.deb ... 1996s Unpacking librust-url-dev:s390x (2.5.2-1) ... 1996s Selecting previously unselected package librust-oxhttp-dev. 1996s Preparing to unpack .../276-librust-oxhttp-dev_0.2.7-3_all.deb ... 1996s Unpacking librust-oxhttp-dev (0.2.7-3) ... 1996s Selecting previously unselected package librust-oxiri-dev. 1996s Preparing to unpack .../277-librust-oxiri-dev_0.2.11-2_all.deb ... 1996s Unpacking librust-oxiri-dev (0.2.11-2) ... 1996s Selecting previously unselected package librust-oxilangtag-dev. 1996s Preparing to unpack .../278-librust-oxilangtag-dev_0.1.5-4_all.deb ... 1996s Unpacking librust-oxilangtag-dev (0.1.5-4) ... 1997s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 1997s Preparing to unpack .../279-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 1997s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1997s Selecting previously unselected package librust-thiserror-1-dev:s390x. 1997s Preparing to unpack .../280-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 1997s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 1997s Selecting previously unselected package librust-oxsdatatypes-dev. 1997s Preparing to unpack .../281-librust-oxsdatatypes-dev_0.4.0~really0.2.2+0.4.7-4build1_all.deb ... 1997s Unpacking librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1997s Selecting previously unselected package librust-quick-xml-dev:s390x. 1997s Preparing to unpack .../282-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 1997s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 1997s Selecting previously unselected package librust-oxrdf-dev. 1997s Preparing to unpack .../283-librust-oxrdf-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1997s Unpacking librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1997s Selecting previously unselected package librust-oxrocksdb-sys-dev. 1997s Preparing to unpack .../284-librust-oxrocksdb-sys-dev_0.4.7-4build1_all.deb ... 1997s Unpacking librust-oxrocksdb-sys-dev (0.4.7-4build1) ... 1997s Selecting previously unselected package librust-rustc-hash-2-dev:s390x. 1997s Preparing to unpack .../285-librust-rustc-hash-2-dev_2.0.0-1_s390x.deb ... 1997s Unpacking librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1997s Selecting previously unselected package librust-siphasher-dev:s390x. 1997s Preparing to unpack .../286-librust-siphasher-dev_1.0.1-1_s390x.deb ... 1997s Unpacking librust-siphasher-dev:s390x (1.0.1-1) ... 1997s Selecting previously unselected package librust-sparesults-dev. 1997s Preparing to unpack .../287-librust-sparesults-dev_0.4.0~really0.2.4+0.4.7-4build1_all.deb ... 1997s Unpacking librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1997s Selecting previously unselected package librust-peg-runtime-dev. 1997s Preparing to unpack .../288-librust-peg-runtime-dev_0.8.3+0.8.4-3_all.deb ... 1997s Unpacking librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1997s Selecting previously unselected package librust-peg-macros-dev. 1997s Preparing to unpack .../289-librust-peg-macros-dev_0.8.4-3_all.deb ... 1997s Unpacking librust-peg-macros-dev (0.8.4-3) ... 1997s Selecting previously unselected package librust-peg-dev. 1997s Preparing to unpack .../290-librust-peg-dev_0.8.4-3_all.deb ... 1997s Unpacking librust-peg-dev (0.8.4-3) ... 1997s Selecting previously unselected package librust-sha1-asm-dev:s390x. 1997s Preparing to unpack .../291-librust-sha1-asm-dev_0.5.1-2_s390x.deb ... 1997s Unpacking librust-sha1-asm-dev:s390x (0.5.1-2) ... 1997s Selecting previously unselected package librust-sha1-dev:s390x. 1997s Preparing to unpack .../292-librust-sha1-dev_0.10.6-1_s390x.deb ... 1997s Unpacking librust-sha1-dev:s390x (0.10.6-1) ... 1997s Selecting previously unselected package librust-sha2-asm-dev:s390x. 1997s Preparing to unpack .../293-librust-sha2-asm-dev_0.6.2-2_s390x.deb ... 1997s Unpacking librust-sha2-asm-dev:s390x (0.6.2-2) ... 1997s Selecting previously unselected package librust-sha2-dev:s390x. 1997s Preparing to unpack .../294-librust-sha2-dev_0.10.8-1_s390x.deb ... 1997s Unpacking librust-sha2-dev:s390x (0.10.8-1) ... 1997s Selecting previously unselected package librust-spargebra-dev. 1997s Preparing to unpack .../295-librust-spargebra-dev_0.4.0~really0.3.4+0.4.7-4build1_all.deb ... 1997s Unpacking librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1997s Selecting previously unselected package librust-oxigraph-dev. 1997s Preparing to unpack .../296-librust-oxigraph-dev_0.4.7-4build1_all.deb ... 1997s Unpacking librust-oxigraph-dev (0.4.7-4build1) ... 1997s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 1997s Setting up librust-peg-runtime-dev (0.8.3+0.8.4-3) ... 1997s Setting up librust-foreign-types-shared-0.1-dev:s390x (0.1.1-2) ... 1997s Setting up librust-either-dev:s390x (1.13.0-1) ... 1997s Setting up librust-openssl-probe-dev:s390x (0.1.2-1) ... 1997s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 1997s Setting up librust-adler-dev:s390x (1.0.2-2) ... 1997s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 1997s Setting up librust-base64-dev:s390x (0.22.1-1) ... 1997s Setting up librust-anstyle-dev:s390x (1.0.8-1) ... 1997s Setting up librust-winapi-i686-pc-windows-gnu-dev:s390x (0.4.0-1) ... 1997s Setting up libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 1997s Setting up librust-rustc-hash-dev:s390x (1.1.0-1) ... 1997s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 1997s Setting up libarchive-zip-perl (1.68-1) ... 1997s Setting up librust-colorchoice-dev:s390x (1.0.0-1) ... 1997s Setting up librust-fastrand-dev:s390x (2.1.1-1) ... 1997s Setting up librust-rustls-pemfile-dev:s390x (1.0.3-2) ... 1997s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 1997s Setting up librust-glob-dev:s390x (0.3.2-1) ... 1997s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 1997s Setting up librust-httparse-dev:s390x (1.8.0-1) ... 1997s Setting up librust-strsim-dev:s390x (0.11.1-1) ... 1997s Setting up m4 (1.4.19-5) ... 1997s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 1997s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 1997s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 1997s Setting up librust-anstyle-query-dev:s390x (1.0.0-1) ... 1997s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 1997s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 1997s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 1997s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 1997s Setting up libsnappy1v5:s390x (1.2.1-1) ... 1997s Setting up librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 1997s Setting up librust-unicode-width-0.1-dev:s390x (0.1.14-2) ... 1997s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 1997s Setting up librust-utf8parse-dev:s390x (0.2.1-1) ... 1997s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 1997s Setting up librust-rustls-native-certs-dev (0.6.3-4) ... 1997s Setting up autotools-dev (20220109.1) ... 1997s Setting up libpkgconf3:s390x (1.8.1-4) ... 1997s Setting up libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 1997s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 1997s Setting up librust-vcpkg-dev:s390x (0.2.8-1) ... 1997s Setting up librust-foreign-types-0.3-dev:s390x (0.3.2-2) ... 1997s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 1997s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 1997s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 1997s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 1997s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 1997s Setting up libssl-dev:s390x (3.4.0-1ubuntu2) ... 1997s Setting up libmpc3:s390x (1.3.1-1build2) ... 1997s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 1997s Setting up autopoint (0.23.1-1) ... 1997s Setting up pkgconf-bin (1.8.1-4) ... 1997s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 1997s Setting up libgc1:s390x (1:8.2.8-1) ... 1997s Setting up librust-unicase-dev:s390x (2.8.0-1) ... 1997s Setting up librust-unicode-width-dev:s390x (0.2.0-1) ... 1997s Setting up autoconf (2.72-3) ... 1997s Setting up libxxhash-dev:s390x (0.8.2-2build1) ... 1997s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 1997s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1997s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 1997s Setting up librust-minimal-lexical-dev:s390x (0.2.1-2) ... 1997s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 1997s Setting up dwz (0.15-1build6) ... 1997s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 1997s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 1997s Setting up debugedit (1:5.1-2) ... 1997s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 1997s Setting up llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 1997s Setting up librust-percent-encoding-dev:s390x (2.3.1-1) ... 1997s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 1997s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 1997s Setting up librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 1997s Setting up librust-untrusted-dev:s390x (0.9.0-2) ... 1997s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 1997s Setting up libisl23:s390x (0.27-1) ... 1997s Setting up llvm-19-runtime (1:19.1.7-1ubuntu1) ... 1997s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1997s Setting up librust-hex-dev:s390x (0.4.3-2) ... 1997s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 1997s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 1997s Setting up librust-winapi-x86-64-pc-windows-gnu-dev:s390x (0.4.0-1) ... 1997s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 1997s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 1997s Setting up librust-clap-lex-dev:s390x (0.7.4-1) ... 1997s Setting up libclang-cpp19 (1:19.1.7-1ubuntu1) ... 1997s Setting up libgflags2.2 (2.2.2-2build1) ... 1997s Setting up librust-itertools-dev:s390x (0.13.0-3) ... 1997s Setting up librust-heck-dev:s390x (0.4.1-1) ... 1997s Setting up libbz2-dev:s390x (1.0.8-6) ... 1997s Setting up automake (1:1.17-3) ... 1997s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 1997s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 1997s Setting up librust-annotate-snippets-dev:s390x (0.11.4-1) ... 1997s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 1997s Setting up librust-form-urlencoded-dev:s390x (1.2.1-1) ... 1997s Setting up librust-libc-dev:s390x (0.2.169-1) ... 1997s Setting up librust-is-terminal-dev:s390x (0.4.13-1) ... 1997s Setting up gettext (0.23.1-1) ... 1997s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 1997s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 1997s Setting up librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 1997s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 1997s Setting up librust-libloading-dev:s390x (0.8.5-1) ... 1997s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 1997s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 1997s Setting up libsnappy-dev:s390x (1.2.1-1) ... 1997s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 1997s Setting up librust-cpufeatures-dev:s390x (0.2.16-1) ... 1997s Setting up libobjc4:s390x (14.2.0-17ubuntu1) ... 1997s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 1997s Setting up librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 1997s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 1997s Setting up librust-winapi-dev:s390x (0.3.9-1) ... 1997s Setting up pkgconf:s390x (1.8.1-4) ... 1997s Setting up intltool-debian (0.35.0+20060710.6) ... 1997s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 1997s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 1997s Setting up librust-errno-dev:s390x (0.3.8-1) ... 1997s Setting up llvm-runtime:s390x (1:19.0-63) ... 1997s Setting up libgflags-dev (2.2.2-2build1) ... 1997s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 1997s Setting up liblz4-dev:s390x (1.10.0-3) ... 1997s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1997s Setting up cpp-14 (14.2.0-17ubuntu1) ... 1997s Setting up dh-strip-nondeterminism (1.14.1-2) ... 1997s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 1997s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1997s Setting up llvm-19 (1:19.1.7-1ubuntu1) ... 1997s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1997s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 1997s Setting up librust-is-executable-dev:s390x (1.0.1-3) ... 1997s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 1997s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 1997s Setting up librocksdb9.10 (9.10.0-1) ... 1997s Setting up librocksdb-dev (9.10.0-1) ... 1997s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1997s Setting up po-debconf (1.0.21+nmu1) ... 1997s Setting up librust-quote-dev:s390x (1.0.37-1) ... 1997s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 1997s Setting up librust-syn-dev:s390x (2.0.96-2) ... 1997s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 1997s Setting up libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 1997s Setting up clang-19 (1:19.1.7-1ubuntu1) ... 1997s Setting up librust-peg-macros-dev (0.8.4-3) ... 1997s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1997s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1997s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 1997s Setting up clang (1:19.0-63) ... 1997s Setting up librust-cc-dev:s390x (1.1.14-1) ... 1997s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 1997s Setting up llvm (1:19.0-63) ... 1997s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 1997s Setting up librust-clap-derive-dev:s390x (4.5.18-1) ... 1997s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 1997s Setting up cpp (4:14.2.0-1ubuntu1) ... 1997s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 1997s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 1997s Setting up librust-sha1-asm-dev:s390x (0.5.1-2) ... 1997s Setting up libclang-19-dev (1:19.1.7-1ubuntu1) ... 1997s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 1997s Setting up librust-serde-dev:s390x (1.0.217-1) ... 1997s Setting up librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 1997s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 1997s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 1997s Setting up librust-oxilangtag-dev (0.1.5-4) ... 1997s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 1997s Setting up librust-peg-dev (0.8.4-3) ... 1997s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 1997s Setting up librust-prettyplease-dev:s390x (0.2.6-1) ... 1997s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 1997s Setting up libclang-dev (1:19.0-63) ... 1997s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 1997s Setting up librust-serde-fmt-dev (1.0.3-4) ... 1997s Setting up libtool (2.5.4-3build1) ... 1997s Setting up librust-oxiri-dev (0.2.11-2) ... 1997s Setting up librust-sha2-asm-dev:s390x (0.6.2-2) ... 1997s Setting up librust-openssl-macros-dev:s390x (0.1.1-1) ... 1997s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 1997s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 1997s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 1997s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 1997s Setting up librust-sval-dev:s390x (2.6.1-2) ... 1997s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 1997s Setting up gcc-14 (14.2.0-17ubuntu1) ... 1997s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 1997s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 1997s Setting up dh-autoreconf (20) ... 1997s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 1997s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 1997s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 1997s Setting up librust-md5-asm-dev:s390x (0.5.0-2) ... 1997s Setting up librust-bytemuck-dev:s390x (1.21.0-1) ... 1997s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 1997s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 1997s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 1997s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 1997s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 1997s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 1997s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 1997s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 1997s Setting up librust-clang-sys-dev:s390x (1.8.1-3) ... 1997s Setting up librust-spin-dev:s390x (0.9.8-4) ... 1997s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 1997s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 1997s Setting up librust-lazy-static-dev:s390x (1.5.0-1) ... 1997s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 1997s Setting up librust-arrayvec-dev:s390x (0.7.6-1) ... 1997s Setting up librust-schannel-dev:s390x (0.1.19-1) ... 1997s Setting up debhelper (13.24.1ubuntu2) ... 1997s Setting up librust-ring-dev:s390x (0.17.8-2) ... 1997s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 1997s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 1997s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 1997s Setting up gcc (4:14.2.0-1ubuntu1) ... 1997s Setting up librust-anstyle-parse-dev:s390x (0.2.1-1) ... 1997s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 1997s Setting up librust-unicode-normalization-dev:s390x (0.1.22-1) ... 1997s Setting up librust-anstream-dev:s390x (0.6.15-1) ... 1997s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1997s Setting up librust-bitflags-dev:s390x (2.8.0-1) ... 1997s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 1997s Setting up rustc (1.83.0ubuntu1) ... 1997s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 1997s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 1997s Setting up librust-digest-dev:s390x (0.10.7-2) ... 1997s Setting up librust-md-5-dev:s390x (0.10.6-1) ... 1997s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 1997s Setting up librust-unicode-bidi-dev:s390x (0.3.17-1) ... 1997s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 1997s Setting up librust-rustls-webpki-0.101-dev (0.101.7-7) ... 1997s Setting up librust-sct-dev:s390x (0.7.1-3) ... 1997s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 1997s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 1997s Setting up librust-sha1-dev:s390x (0.10.6-1) ... 1997s Setting up librust-ahash-dev (0.8.11-9) ... 1997s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 1997s Setting up librust-sha2-dev:s390x (0.10.8-1) ... 1997s Setting up librust-idna-dev:s390x (0.4.0-1) ... 1997s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 1997s Setting up librust-rustix-dev:s390x (0.38.37-1) ... 1997s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 1997s Setting up librust-tempfile-dev:s390x (3.15.0-1) ... 1997s Setting up librust-url-dev:s390x (2.5.2-1) ... 1997s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 1997s Setting up cargo (1.83.0ubuntu1) ... 1997s Setting up librust-dashmap-dev:s390x (6.1.0-1) ... 1997s Setting up librust-terminal-size-dev:s390x (0.3.0-2) ... 1997s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 1997s Setting up dh-rust (0.0.11) ... 1997s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 1997s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 1997s Setting up librust-nom-dev:s390x (7.1.3-1) ... 1997s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 1997s Setting up librust-siphasher-dev:s390x (1.0.1-1) ... 1997s Setting up librust-nom+std-dev:s390x (7.1.3-1) ... 1997s Setting up librust-cexpr-dev:s390x (0.6.0-2) ... 1997s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 1997s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 1997s Setting up librust-log-dev:s390x (0.4.22-1) ... 1997s Setting up librust-rustls-0.21-dev (0.21.12-12) ... 1997s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 1997s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 1997s Setting up librust-rand-dev:s390x (0.8.5-1) ... 1997s Setting up librust-mio-dev:s390x (1.0.2-3) ... 1997s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 1997s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 1997s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 1997s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 1997s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 1997s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 1997s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 1997s Setting up librust-rustc-hash-2-dev:s390x (2.0.0-1) ... 1997s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 1997s Setting up librust-regex-dev:s390x (1.11.1-2) ... 1997s Setting up librust-object-dev:s390x (0.36.5-2) ... 1997s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 1997s Setting up librust-oxsdatatypes-dev (0.4.0~really0.2.2+0.4.7-4build1) ... 1997s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 1997s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 1997s Setting up librust-clap-builder-dev:s390x (4.5.23-1) ... 1997s Setting up librust-json-event-parser-dev (0.2.0-6) ... 1997s Setting up librust-clap-dev:s390x (4.5.23-1) ... 1997s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 1997s Setting up librust-clap-complete-dev:s390x (4.5.40-1) ... 1997s Setting up librust-oxrdf-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1997s Setting up librust-bindgen-dev:s390x (0.71.1-4) ... 1997s Setting up librust-sparesults-dev (0.4.0~really0.2.4+0.4.7-4build1) ... 1997s Setting up librust-openssl-sys-dev:s390x (0.9.105-1) ... 1997s Setting up librust-oxrocksdb-sys-dev (0.4.7-4build1) ... 1997s Setting up librust-spargebra-dev (0.4.0~really0.3.4+0.4.7-4build1) ... 1997s Setting up librust-openssl-dev:s390x (0.10.70-1) ... 1997s Setting up librust-native-tls-dev:s390x (0.2.13-1) ... 1997s Setting up librust-oxhttp-dev (0.2.7-3) ... 1997s Setting up librust-oxigraph-dev (0.4.7-4build1) ... 1997s Processing triggers for libc-bin (2.41-1ubuntu1) ... 1997s Processing triggers for systemd (257.2-3ubuntu1) ... 1997s Processing triggers for man-db (2.13.0-1) ... 1997s Processing triggers for install-info (7.1.1-1) ... 1998s autopkgtest: DBG: testbed command exited with code 0 1998s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-oxigraph:default-packages.all"], kind short, sout raw, serr pipe, env [] 1998s autopkgtest: DBG: testbed command exited with code 0 1998s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxigraph%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-oxigraph%3Adefault-packages.all 1998s autopkgtest: DBG: got reply from testbed: ok 1998s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 1998s autopkgtest: DBG: testbed command exited with code 1 1998s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 1998s autopkgtest: DBG: testbed command exited with code 0 1998s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 2002s autopkgtest: DBG: got reply from testbed: ok 2002s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 2002s autopkgtest: DBG: testbed command exited with code 0 2002s autopkgtest [02:00:15]: test rust-oxigraph:default: /usr/share/dh-rust/bin/cargo-auto-test oxigraph 0.4.7 --all-targets --no-fail-fast -- --skip test_backup --skip test_backward_compatibility --skip test_secondary 2002s autopkgtest [02:00:15]: test rust-oxigraph:default: [----------------------- 2002s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-oxigraph:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-oxigraph:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-oxigraph:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test oxigraph 0.4.7 --all-targets --no-fail-fast -- --skip test_backup --skip test_backward_compatibility --skip test_secondary'"], kind test, sout raw, serr raw, env [] 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-oxigraph:default-artifacts 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-oxigraph:default-stderr 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-oxigraph:default-stdout 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test oxigraph 0.4.7 --all-targets --no-fail-fast -- --skip test_backup --skip test_backward_compatibility --skip test_secondary 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.1dfBod5Ke1/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-oxigraph:default-stdout 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.1dfBod5Ke1/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-oxigraph:default-stdout 2003s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 4072 to /tmp/autopkgtest_script_pid 2003s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 2003s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 2003s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.pHZtEBGfiU/registry/ 2003s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 2003s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 2003s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-fail-fast', '--', '--skip', 'test_backup', '--skip', 'test_backward_compatibility', '--skip', 'test_secondary'],) {} 2003s Compiling proc-macro2 v1.0.92 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2003s Compiling unicode-ident v1.0.13 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2003s Compiling libc v0.2.169 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2003s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7e8f0a655396b248 -C extra-filename=-7e8f0a655396b248 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/libc-7e8f0a655396b248 -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 2003s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 2003s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 2003s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 2003s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern unicode_ident=/tmp/tmp.pHZtEBGfiU/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 2003s Compiling cfg-if v1.0.0 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 2003s parameters. Structured like an if-else chain, the first matching branch is the 2003s item that gets emitted. 2003s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=c01f12a529e29af4 -C extra-filename=-c01f12a529e29af4 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2003s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 2003s | 2003s = note: this feature is not stably supported; its behavior can change in the future 2003s 2003s warning: `cfg-if` (lib) generated 1 warning 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2003s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/libc-7e8f0a655396b248/build-script-build` 2003s [libc 0.2.169] cargo:rerun-if-changed=build.rs 2003s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 2003s [libc 0.2.169] cargo:rustc-cfg=freebsd11 2003s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 2003s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 2003s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2003s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out rustc --crate-name libc --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=8a14e953bd95a320 -C extra-filename=-8a14e953bd95a320 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 2004s warning: unused import: `crate::ntptimeval` 2004s --> /tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 2004s | 2004s 5 | use crate::ntptimeval; 2004s | ^^^^^^^^^^^^^^^^^ 2004s | 2004s = note: `#[warn(unused_imports)]` on by default 2004s 2004s Compiling quote v1.0.37 2004s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern proc_macro2=/tmp/tmp.pHZtEBGfiU/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 2004s warning: `libc` (lib) generated 2 warnings (1 duplicate) 2004s Compiling byteorder v1.5.0 2004s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/byteorder-1.5.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=f9422a1230fd9c2f -C extra-filename=-f9422a1230fd9c2f --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2004s Compiling syn v2.0.96 2004s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b868415a27df09e1 -C extra-filename=-b868415a27df09e1 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern proc_macro2=/tmp/tmp.pHZtEBGfiU/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.pHZtEBGfiU/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.pHZtEBGfiU/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 2004s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 2004s Compiling getrandom v0.2.15 2004s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/getrandom-0.2.15 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ba988e775cf5610c -C extra-filename=-ba988e775cf5610c --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern cfg_if=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2004s warning: unexpected `cfg` condition value: `js` 2004s --> /tmp/tmp.pHZtEBGfiU/registry/getrandom-0.2.15/src/lib.rs:334:25 2004s | 2004s 334 | } else if #[cfg(all(feature = "js", 2004s | ^^^^^^^^^^^^^^ 2004s | 2004s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 2004s = help: consider adding `js` as a feature in `Cargo.toml` 2004s = note: see for more information about checking conditional configuration 2004s = note: `#[warn(unexpected_cfgs)]` on by default 2004s 2004s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 2004s Compiling thiserror v1.0.69 2004s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b5d5b5d64849d0f -C extra-filename=-8b5d5b5d64849d0f --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/thiserror-8b5d5b5d64849d0f -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2005s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/thiserror-8b5d5b5d64849d0f/build-script-build` 2005s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 2005s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 2005s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 2005s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 2005s Compiling rand_core v0.6.4 2005s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 2005s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=e3a88b6845e76bea -C extra-filename=-e3a88b6845e76bea --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern getrandom=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libgetrandom-ba988e775cf5610c.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2005s warning: unexpected `cfg` condition name: `doc_cfg` 2005s --> /tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/src/lib.rs:38:13 2005s | 2005s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 2005s | ^^^^^^^ 2005s | 2005s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2005s = help: consider using a Cargo feature instead 2005s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2005s [lints.rust] 2005s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2005s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2005s = note: see for more information about checking conditional configuration 2005s = note: `#[warn(unexpected_cfgs)]` on by default 2005s 2005s warning: unexpected `cfg` condition name: `doc_cfg` 2005s --> /tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/src/error.rs:50:16 2005s | 2005s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 2005s | ^^^^^^^ 2005s | 2005s = help: consider using a Cargo feature instead 2005s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2005s [lints.rust] 2005s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2005s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2005s = note: see for more information about checking conditional configuration 2005s 2005s warning: unexpected `cfg` condition name: `doc_cfg` 2005s --> /tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/src/error.rs:64:16 2005s | 2005s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 2005s | ^^^^^^^ 2005s | 2005s = help: consider using a Cargo feature instead 2005s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2005s [lints.rust] 2005s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2005s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2005s = note: see for more information about checking conditional configuration 2005s 2005s warning: unexpected `cfg` condition name: `doc_cfg` 2005s --> /tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/src/error.rs:75:16 2005s | 2005s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 2005s | ^^^^^^^ 2005s | 2005s = help: consider using a Cargo feature instead 2005s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2005s [lints.rust] 2005s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2005s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2005s = note: see for more information about checking conditional configuration 2005s 2005s warning: unexpected `cfg` condition name: `doc_cfg` 2005s --> /tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/src/os.rs:46:12 2005s | 2005s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 2005s | ^^^^^^^ 2005s | 2005s = help: consider using a Cargo feature instead 2005s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2005s [lints.rust] 2005s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2005s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2005s = note: see for more information about checking conditional configuration 2005s 2005s warning: unexpected `cfg` condition name: `doc_cfg` 2005s --> /tmp/tmp.pHZtEBGfiU/registry/rand_core-0.6.4/src/lib.rs:411:16 2005s | 2005s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 2005s | ^^^^^^^ 2005s | 2005s = help: consider using a Cargo feature instead 2005s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2005s [lints.rust] 2005s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2005s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2005s = note: see for more information about checking conditional configuration 2005s 2005s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 2005s Compiling typenum v1.17.0 2005s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 2005s compile time. It currently supports bits, unsigned integers, and signed 2005s integers. It also provides a type-level array of type-level numbers, but its 2005s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=b385270933b2bdce -C extra-filename=-b385270933b2bdce --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/typenum-b385270933b2bdce -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2005s Compiling version_check v0.9.5 2005s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/version_check-0.9.5/Cargo.toml CARGO_PKG_AUTHORS='Sergio Benitez ' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.9.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/version_check-0.9.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=044ed9e62895a317 -C extra-filename=-044ed9e62895a317 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2005s Compiling generic-array v0.14.7 2005s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=0999e27a4b364dd7 -C extra-filename=-0999e27a4b364dd7 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/generic-array-0999e27a4b364dd7 -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern version_check=/tmp/tmp.pHZtEBGfiU/target/release/deps/libversion_check-044ed9e62895a317.rlib --cap-lints warn` 2006s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 2006s compile time. It currently supports bits, unsigned integers, and signed 2006s integers. It also provides a type-level array of type-level numbers, but its 2006s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/typenum-c0fa606d71e4b853/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/typenum-b385270933b2bdce/build-script-main` 2006s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 2006s Compiling memchr v2.7.4 2006s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 2006s 1, 2 or 3 byte search and single substring search. 2006s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2006s warning: `memchr` (lib) generated 1 warning (1 duplicate) 2006s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/Cargo.toml CARGO_PKG_AUTHORS='Paho Lurie-Gregg :Andre Bogus ' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at 2006s compile time. It currently supports bits, unsigned integers, and signed 2006s integers. It also provides a type-level array of type-level numbers, but its 2006s implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_RUST_VERSION=1.37.0 CARGO_PKG_VERSION=1.17.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/typenum-c0fa606d71e4b853/out rustc --crate-name typenum --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=2ce1dc0d44f236d9 -C extra-filename=-2ce1dc0d44f236d9 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2006s warning: unexpected `cfg` condition value: `cargo-clippy` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/lib.rs:50:5 2006s | 2006s 50 | feature = "cargo-clippy", 2006s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s = note: `#[warn(unexpected_cfgs)]` on by default 2006s 2006s warning: unexpected `cfg` condition value: `cargo-clippy` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/lib.rs:60:13 2006s | 2006s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/lib.rs:119:12 2006s | 2006s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/lib.rs:125:12 2006s | 2006s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/lib.rs:131:12 2006s | 2006s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/bit.rs:19:12 2006s | 2006s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/bit.rs:32:12 2006s | 2006s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition name: `tests` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/bit.rs:187:7 2006s | 2006s 187 | #[cfg(tests)] 2006s | ^^^^^ help: there is a config with a similar name: `test` 2006s | 2006s = help: consider using a Cargo feature instead 2006s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2006s [lints.rust] 2006s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 2006s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/int.rs:41:12 2006s | 2006s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/int.rs:48:12 2006s | 2006s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/int.rs:71:12 2006s | 2006s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/uint.rs:49:12 2006s | 2006s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/uint.rs:147:12 2006s | 2006s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition name: `tests` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/uint.rs:1656:7 2006s | 2006s 1656 | #[cfg(tests)] 2006s | ^^^^^ help: there is a config with a similar name: `test` 2006s | 2006s = help: consider using a Cargo feature instead 2006s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2006s [lints.rust] 2006s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 2006s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `cargo-clippy` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/uint.rs:1709:16 2006s | 2006s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/array.rs:11:12 2006s | 2006s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unexpected `cfg` condition value: `scale_info` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/array.rs:23:12 2006s | 2006s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 2006s | ^^^^^^^^^^^^^^^^^^^^^^ 2006s | 2006s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 2006s = help: consider adding `scale_info` as a feature in `Cargo.toml` 2006s = note: see for more information about checking conditional configuration 2006s 2006s warning: unused import: `*` 2006s --> /tmp/tmp.pHZtEBGfiU/registry/typenum-1.17.0/src/lib.rs:106:25 2006s | 2006s 106 | N1, N2, Z0, P1, P2, *, 2006s | ^ 2006s | 2006s = note: `#[warn(unused_imports)]` on by default 2006s 2007s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 2007s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_MORE_LENGTHS=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/generic-array-7e9a5159722d2a53/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/generic-array-0999e27a4b364dd7/build-script-build` 2007s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 2007s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2007s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/libc-6f469c538341475d/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/libc-7e8f0a655396b248/build-script-build` 2007s [libc 0.2.169] cargo:rerun-if-changed=build.rs 2007s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 2007s [libc 0.2.169] cargo:rustc-cfg=freebsd11 2007s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 2007s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 2007s Compiling oxiri v0.2.11 2007s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxiri CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxiri-0.2.11 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxiri-0.2.11/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of IRI validation and relative IRI resolution 2007s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxiri CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxiri' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxiri-0.2.11 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxiri --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxiri-0.2.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=202e6f360f4df054 -C extra-filename=-202e6f360f4df054 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2007s warning: `oxiri` (lib) generated 1 warning (1 duplicate) 2007s Compiling glob v0.3.2 2007s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=glob CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/glob-0.3.2 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/glob-0.3.2/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Support for matching file paths against Unix shell style patterns. 2007s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/glob' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glob CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/glob' CARGO_PKG_RUST_VERSION=1.23.0 CARGO_PKG_VERSION=0.3.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/glob-0.3.2 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name glob --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/glob-0.3.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9c18cba999f4108b -C extra-filename=-9c18cba999f4108b --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2007s Compiling oxilangtag v0.1.5 2007s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxilangtag CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxilangtag-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxilangtag-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple and fast implementation of language tag normalization and validation 2007s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxilangtag CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxilangtag' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxilangtag-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxilangtag --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxilangtag-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "serialize", "std"))' -C metadata=a8765bb0c7a6b55d -C extra-filename=-a8765bb0c7a6b55d --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2008s warning: `oxilangtag` (lib) generated 1 warning (1 duplicate) 2008s Compiling clang-sys v1.8.1 2008s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/Cargo.toml CARGO_PKG_AUTHORS='Kyle Mayes ' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clang_10_0"' --cfg 'feature="clang_11_0"' --cfg 'feature="clang_3_5"' --cfg 'feature="clang_3_6"' --cfg 'feature="clang_3_7"' --cfg 'feature="clang_3_8"' --cfg 'feature="clang_3_9"' --cfg 'feature="clang_4_0"' --cfg 'feature="clang_5_0"' --cfg 'feature="clang_6_0"' --cfg 'feature="clang_7_0"' --cfg 'feature="clang_8_0"' --cfg 'feature="clang_9_0"' --cfg 'feature="libloading"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clang_10_0", "clang_11_0", "clang_12_0", "clang_13_0", "clang_14_0", "clang_15_0", "clang_16_0", "clang_17_0", "clang_18_0", "clang_3_5", "clang_3_6", "clang_3_7", "clang_3_8", "clang_3_9", "clang_4_0", "clang_5_0", "clang_6_0", "clang_7_0", "clang_8_0", "clang_9_0", "libcpp", "libloading", "runtime", "static"))' -C metadata=23a0f1ab030d2056 -C extra-filename=-23a0f1ab030d2056 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/clang-sys-23a0f1ab030d2056 -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern glob=/tmp/tmp.pHZtEBGfiU/target/release/deps/libglob-9c18cba999f4108b.rlib --cap-lints warn` 2008s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2008s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/libc-6f469c538341475d/out rustc --crate-name libc --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7fc068eb0b53bf93 -C extra-filename=-7fc068eb0b53bf93 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 2009s warning: `libc` (lib) generated 1 warning (1 duplicate) 2009s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/Cargo.toml CARGO_PKG_AUTHORS='Bartłomiej Kamiński :Aaron Trent ' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/generic-array-7e9a5159722d2a53/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="more_lengths"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=8bbf1525649e97f4 -C extra-filename=-8bbf1525649e97f4 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern typenum=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libtypenum-2ce1dc0d44f236d9.rmeta --cap-lints warn -Ctarget-feature=+backchain --cfg relaxed_coherence` 2009s warning: unexpected `cfg` condition name: `relaxed_coherence` 2009s --> /tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/src/impls.rs:136:19 2009s | 2009s 136 | #[cfg(relaxed_coherence)] 2009s | ^^^^^^^^^^^^^^^^^ 2009s ... 2009s 183 | / impl_from! { 2009s 184 | | 1 => ::typenum::U1, 2009s 185 | | 2 => ::typenum::U2, 2009s 186 | | 3 => ::typenum::U3, 2009s ... | 2009s 215 | | 32 => ::typenum::U32 2009s 216 | | } 2009s | |_- in this macro invocation 2009s | 2009s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2009s = help: consider using a Cargo feature instead 2009s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2009s [lints.rust] 2009s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 2009s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 2009s = note: see for more information about checking conditional configuration 2009s = note: `#[warn(unexpected_cfgs)]` on by default 2009s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 2009s 2009s warning: unexpected `cfg` condition name: `relaxed_coherence` 2009s --> /tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/src/impls.rs:158:23 2009s | 2009s 158 | #[cfg(not(relaxed_coherence))] 2009s | ^^^^^^^^^^^^^^^^^ 2009s ... 2009s 183 | / impl_from! { 2009s 184 | | 1 => ::typenum::U1, 2009s 185 | | 2 => ::typenum::U2, 2009s 186 | | 3 => ::typenum::U3, 2009s ... | 2009s 215 | | 32 => ::typenum::U32 2009s 216 | | } 2009s | |_- in this macro invocation 2009s | 2009s = help: consider using a Cargo feature instead 2009s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2009s [lints.rust] 2009s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 2009s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 2009s = note: see for more information about checking conditional configuration 2009s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 2009s 2009s warning: unexpected `cfg` condition name: `relaxed_coherence` 2009s --> /tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/src/impls.rs:136:19 2009s | 2009s 136 | #[cfg(relaxed_coherence)] 2009s | ^^^^^^^^^^^^^^^^^ 2009s ... 2009s 219 | / impl_from! { 2009s 220 | | 33 => ::typenum::U33, 2009s 221 | | 34 => ::typenum::U34, 2009s 222 | | 35 => ::typenum::U35, 2009s ... | 2009s 268 | | 1024 => ::typenum::U1024 2009s 269 | | } 2009s | |_- in this macro invocation 2009s | 2009s = help: consider using a Cargo feature instead 2009s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2009s [lints.rust] 2009s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 2009s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 2009s = note: see for more information about checking conditional configuration 2009s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 2009s 2009s warning: unexpected `cfg` condition name: `relaxed_coherence` 2009s --> /tmp/tmp.pHZtEBGfiU/registry/generic-array-0.14.7/src/impls.rs:158:23 2009s | 2009s 158 | #[cfg(not(relaxed_coherence))] 2009s | ^^^^^^^^^^^^^^^^^ 2009s ... 2009s 219 | / impl_from! { 2009s 220 | | 33 => ::typenum::U33, 2009s 221 | | 34 => ::typenum::U34, 2009s 222 | | 35 => ::typenum::U35, 2009s ... | 2009s 268 | | 1024 => ::typenum::U1024 2009s 269 | | } 2009s | |_- in this macro invocation 2009s | 2009s = help: consider using a Cargo feature instead 2009s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2009s [lints.rust] 2009s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 2009s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 2009s = note: see for more information about checking conditional configuration 2009s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 2009s 2009s Compiling zerocopy-derive v0.7.34 2009s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/zerocopy-derive-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=82ae24a9ddd8c1a7 -C extra-filename=-82ae24a9ddd8c1a7 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern proc_macro2=/tmp/tmp.pHZtEBGfiU/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.pHZtEBGfiU/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.pHZtEBGfiU/target/release/deps/libsyn-b868415a27df09e1.rlib --extern proc_macro --cap-lints warn` 2009s warning: `generic-array` (lib) generated 5 warnings (1 duplicate) 2009s Compiling thiserror-impl v1.0.69 2009s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/thiserror-impl-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e463a6ab03d431f3 -C extra-filename=-e463a6ab03d431f3 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern proc_macro2=/tmp/tmp.pHZtEBGfiU/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.pHZtEBGfiU/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.pHZtEBGfiU/target/release/deps/libsyn-b868415a27df09e1.rlib --extern proc_macro --cap-lints warn` 2010s Compiling zerocopy v0.7.34 2010s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=50482fffe7cf7942 -C extra-filename=-50482fffe7cf7942 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern byteorder=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libbyteorder-f9422a1230fd9c2f.rmeta --extern zerocopy_derive=/tmp/tmp.pHZtEBGfiU/target/release/deps/libzerocopy_derive-82ae24a9ddd8c1a7.so --cap-lints warn -Ctarget-feature=+backchain` 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/util.rs:597:32 2010s | 2010s 597 | let remainder = t.addr() % mem::align_of::(); 2010s | ^^^^^^^^^^^^^^^^^^ 2010s | 2010s note: the lint level is defined here 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:174:5 2010s | 2010s 174 | unused_qualifications, 2010s | ^^^^^^^^^^^^^^^^^^^^^ 2010s help: remove the unnecessary path segments 2010s | 2010s 597 - let remainder = t.addr() % mem::align_of::(); 2010s 597 + let remainder = t.addr() % align_of::(); 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:333:35 2010s | 2010s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 2010s | ^^^^^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 2010s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:488:44 2010s | 2010s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 2010s | ^^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 2010s 488 + align: match NonZeroUsize::new(align_of::()) { 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:492:49 2010s | 2010s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 2010s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:511:44 2010s | 2010s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 2010s | ^^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 2010s 511 + align: match NonZeroUsize::new(align_of::()) { 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:517:29 2010s | 2010s 517 | _elem_size: mem::size_of::(), 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 517 - _elem_size: mem::size_of::(), 2010s 517 + _elem_size: size_of::(), 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:1418:19 2010s | 2010s 1418 | let len = mem::size_of_val(self); 2010s | ^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 1418 - let len = mem::size_of_val(self); 2010s 1418 + let len = size_of_val(self); 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:2714:19 2010s | 2010s 2714 | let len = mem::size_of_val(self); 2010s | ^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 2714 - let len = mem::size_of_val(self); 2010s 2714 + let len = size_of_val(self); 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:2789:19 2010s | 2010s 2789 | let len = mem::size_of_val(self); 2010s | ^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 2789 - let len = mem::size_of_val(self); 2010s 2789 + let len = size_of_val(self); 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:2863:27 2010s | 2010s 2863 | if bytes.len() != mem::size_of_val(self) { 2010s | ^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 2863 - if bytes.len() != mem::size_of_val(self) { 2010s 2863 + if bytes.len() != size_of_val(self) { 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:2920:20 2010s | 2010s 2920 | let size = mem::size_of_val(self); 2010s | ^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 2920 - let size = mem::size_of_val(self); 2010s 2920 + let size = size_of_val(self); 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:2981:45 2010s | 2010s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 2010s | ^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 2010s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4161:27 2010s | 2010s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 2010s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4176:26 2010s | 2010s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 2010s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4179:46 2010s | 2010s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 2010s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4194:46 2010s | 2010s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 2010s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4221:26 2010s | 2010s 4221 | .checked_rem(mem::size_of::()) 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4221 - .checked_rem(mem::size_of::()) 2010s 4221 + .checked_rem(size_of::()) 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4243:34 2010s | 2010s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 2010s 4243 + let expected_len = match size_of::().checked_mul(count) { 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4268:34 2010s | 2010s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 2010s 4268 + let expected_len = match size_of::().checked_mul(count) { 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4795:25 2010s | 2010s 4795 | let elem_size = mem::size_of::(); 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4795 - let elem_size = mem::size_of::(); 2010s 4795 + let elem_size = size_of::(); 2010s | 2010s 2010s warning: unnecessary qualification 2010s --> /tmp/tmp.pHZtEBGfiU/registry/zerocopy-0.7.34/src/lib.rs:4825:25 2010s | 2010s 4825 | let elem_size = mem::size_of::(); 2010s | ^^^^^^^^^^^^^^^^^ 2010s | 2010s help: remove the unnecessary path segments 2010s | 2010s 4825 - let elem_size = mem::size_of::(); 2010s 4825 + let elem_size = size_of::(); 2010s | 2010s 2010s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 2010s Compiling ppv-lite86 v0.2.20 2010s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/ppv-lite86-0.2.20 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=9d8746323ab5c3d9 -C extra-filename=-9d8746323ab5c3d9 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern zerocopy=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libzerocopy-50482fffe7cf7942.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2010s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/thiserror-a03bd85af1c754aa/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5c0f73c3acc6c5a8 -C extra-filename=-5c0f73c3acc6c5a8 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern thiserror_impl=/tmp/tmp.pHZtEBGfiU/target/release/deps/libthiserror_impl-e463a6ab03d431f3.so --cap-lints warn -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 2011s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 2011s Compiling oxsdatatypes v0.2.2 2011s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxsdatatypes CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxsdatatypes-0.2.2 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxsdatatypes-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='An implementation of some XSD datatypes for SPARQL implementations 2011s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxsdatatypes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxsdatatypes' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxsdatatypes-0.2.2 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxsdatatypes --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxsdatatypes-0.2.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("custom-now", "js-sys"))' -C metadata=57ac965a248a3962 -C extra-filename=-57ac965a248a3962 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2011s warning: unexpected `cfg` condition value: `js` 2011s --> /tmp/tmp.pHZtEBGfiU/registry/oxsdatatypes-0.2.2/src/date_time.rs:1879:5 2011s | 2011s 1879 | feature = "js", 2011s | ^^^^^^^^^^^^^^ 2011s | 2011s = note: expected values for `feature` are: `custom-now` and `js-sys` 2011s = help: consider adding `js` as a feature in `Cargo.toml` 2011s = note: see for more information about checking conditional configuration 2011s = note: `#[warn(unexpected_cfgs)]` on by default 2011s 2011s warning: unexpected `cfg` condition value: `js` 2011s --> /tmp/tmp.pHZtEBGfiU/registry/oxsdatatypes-0.2.2/src/date_time.rs:1895:9 2011s | 2011s 1895 | all(feature = "js", target_family = "wasm", target_os = "unknown") 2011s | ^^^^^^^^^^^^^^ 2011s | 2011s = note: expected values for `feature` are: `custom-now` and `js-sys` 2011s = help: consider adding `js` as a feature in `Cargo.toml` 2011s = note: see for more information about checking conditional configuration 2011s 2011s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 2011s Compiling rand_chacha v0.3.1 2011s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 2011s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/rand_chacha-0.3.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=13c3d9b973bde0c9 -C extra-filename=-13c3d9b973bde0c9 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern ppv_lite86=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libppv_lite86-9d8746323ab5c3d9.rmeta --extern rand_core=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand_core-e3a88b6845e76bea.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2012s warning: `oxsdatatypes` (lib) generated 3 warnings (1 duplicate) 2012s Compiling rand v0.8.5 2012s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 2012s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name rand --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --cfg 'feature="std_rng"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=f3c5f220a8fff864 -C extra-filename=-f3c5f220a8fff864 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern libc=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --extern rand_chacha=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand_chacha-13c3d9b973bde0c9.rmeta --extern rand_core=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand_core-e3a88b6845e76bea.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/lib.rs:52:13 2012s | 2012s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s = note: `#[warn(unexpected_cfgs)]` on by default 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/lib.rs:53:13 2012s | 2012s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 2012s | ^^^^^^^ 2012s | 2012s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/lib.rs:181:12 2012s | 2012s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/mod.rs:116:12 2012s | 2012s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `features` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 2012s | 2012s 162 | #[cfg(features = "nightly")] 2012s | ^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: see for more information about checking conditional configuration 2012s help: there is a config with a similar name and value 2012s | 2012s 162 | #[cfg(feature = "nightly")] 2012s | ~~~~~~~ 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:15:7 2012s | 2012s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:156:7 2012s | 2012s 156 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:158:7 2012s | 2012s 158 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:160:7 2012s | 2012s 160 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:162:7 2012s | 2012s 162 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:165:7 2012s | 2012s 165 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:167:7 2012s | 2012s 167 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/float.rs:169:7 2012s | 2012s 169 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:13:32 2012s | 2012s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:15:35 2012s | 2012s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:19:7 2012s | 2012s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:112:7 2012s | 2012s 112 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:142:7 2012s | 2012s 142 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:144:7 2012s | 2012s 144 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:146:7 2012s | 2012s 146 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:148:7 2012s | 2012s 148 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:150:7 2012s | 2012s 150 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:152:7 2012s | 2012s 152 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/integer.rs:155:5 2012s | 2012s 155 | feature = "simd_support", 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:11:7 2012s | 2012s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:144:7 2012s | 2012s 144 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `std` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:235:11 2012s | 2012s 235 | #[cfg(not(std))] 2012s | ^^^ help: found config with similar value: `feature = "std"` 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:363:7 2012s | 2012s 363 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:423:7 2012s | 2012s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 2012s | ^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:424:7 2012s | 2012s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 2012s | ^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:425:7 2012s | 2012s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 2012s | ^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:426:7 2012s | 2012s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 2012s | ^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:427:7 2012s | 2012s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 2012s | ^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:428:7 2012s | 2012s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 2012s | ^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:429:7 2012s | 2012s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 2012s | ^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `std` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:291:19 2012s | 2012s 291 | #[cfg(not(std))] 2012s | ^^^ help: found config with similar value: `feature = "std"` 2012s ... 2012s 359 | scalar_float_impl!(f32, u32); 2012s | ---------------------------- in this macro invocation 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 2012s 2012s warning: unexpected `cfg` condition name: `std` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:291:19 2012s | 2012s 291 | #[cfg(not(std))] 2012s | ^^^ help: found config with similar value: `feature = "std"` 2012s ... 2012s 360 | scalar_float_impl!(f64, u64); 2012s | ---------------------------- in this macro invocation 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 2012s | 2012s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 2012s | 2012s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 2012s | 2012s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 2012s | 2012s 572 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 2012s | 2012s 679 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 2012s | 2012s 687 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 2012s | 2012s 696 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 2012s | 2012s 706 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 2012s | 2012s 1001 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 2012s | 2012s 1003 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 2012s | 2012s 1005 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 2012s | 2012s 1007 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 2012s | 2012s 1010 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 2012s | 2012s 1012 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition value: `simd_support` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 2012s | 2012s 1014 | #[cfg(feature = "simd_support")] 2012s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2012s | 2012s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 2012s = help: consider adding `simd_support` as a feature in `Cargo.toml` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/rng.rs:395:12 2012s | 2012s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/rngs/mod.rs:99:12 2012s | 2012s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/rngs/mod.rs:118:12 2012s | 2012s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/rngs/std.rs:32:12 2012s | 2012s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/rngs/thread.rs:60:12 2012s | 2012s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/rngs/thread.rs:87:12 2012s | 2012s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/mod.rs:29:12 2012s | 2012s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/mod.rs:623:12 2012s | 2012s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/index.rs:276:12 2012s | 2012s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/mod.rs:114:16 2012s | 2012s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/mod.rs:142:16 2012s | 2012s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/mod.rs:170:16 2012s | 2012s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/mod.rs:219:16 2012s | 2012s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: unexpected `cfg` condition name: `doc_cfg` 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/seq/mod.rs:465:16 2012s | 2012s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 2012s | ^^^^^^^ 2012s | 2012s = help: consider using a Cargo feature instead 2012s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2012s [lints.rust] 2012s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 2012s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 2012s = note: see for more information about checking conditional configuration 2012s 2012s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 2012s Compiling prettyplease v0.2.6 2012s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='A minimal `syn` syntax tree pretty-printer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=prettyplease CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/prettyplease' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="verbatim"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("verbatim"))' -C metadata=a49e8000bfcf5139 -C extra-filename=-a49e8000bfcf5139 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/prettyplease-a49e8000bfcf5139 -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2012s warning: trait `Float` is never used 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:238:18 2012s | 2012s 238 | pub(crate) trait Float: Sized { 2012s | ^^^^^ 2012s | 2012s = note: `#[warn(dead_code)]` on by default 2012s 2012s warning: associated items `lanes`, `extract`, and `replace` are never used 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:247:8 2012s | 2012s 245 | pub(crate) trait FloatAsSIMD: Sized { 2012s | ----------- associated items in this trait 2012s 246 | #[inline(always)] 2012s 247 | fn lanes() -> usize { 2012s | ^^^^^ 2012s ... 2012s 255 | fn extract(self, index: usize) -> Self { 2012s | ^^^^^^^ 2012s ... 2012s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 2012s | ^^^^^^^ 2012s 2012s warning: method `all` is never used 2012s --> /tmp/tmp.pHZtEBGfiU/registry/rand-0.8.5/src/distributions/utils.rs:268:8 2012s | 2012s 266 | pub(crate) trait BoolAsSIMD: Sized { 2012s | ---------- method in this trait 2012s 267 | fn any(self) -> bool; 2012s 268 | fn all(self) -> bool; 2012s | ^^^ 2012s 2012s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_VERBATIM=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6 CARGO_MANIFEST_LINKS=prettyplease02 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='A minimal `syn` syntax tree pretty-printer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=prettyplease CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/prettyplease' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/prettyplease-b81aaf3b213cce70/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/prettyplease-a49e8000bfcf5139/build-script-build` 2012s [prettyplease 0.2.6] cargo:rerun-if-changed=build.rs 2012s [prettyplease 0.2.6] cargo:VERSION=0.2.6 2012s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_CLANG_10_0=1 CARGO_FEATURE_CLANG_11_0=1 CARGO_FEATURE_CLANG_3_5=1 CARGO_FEATURE_CLANG_3_6=1 CARGO_FEATURE_CLANG_3_7=1 CARGO_FEATURE_CLANG_3_8=1 CARGO_FEATURE_CLANG_3_9=1 CARGO_FEATURE_CLANG_4_0=1 CARGO_FEATURE_CLANG_5_0=1 CARGO_FEATURE_CLANG_6_0=1 CARGO_FEATURE_CLANG_7_0=1 CARGO_FEATURE_CLANG_8_0=1 CARGO_FEATURE_CLANG_9_0=1 CARGO_FEATURE_LIBLOADING=1 CARGO_FEATURE_RUNTIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1 CARGO_MANIFEST_LINKS=clang CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/Cargo.toml CARGO_PKG_AUTHORS='Kyle Mayes ' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/clang-sys-31a04fb5f4333421/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/clang-sys-23a0f1ab030d2056/build-script-build` 2012s Compiling smallvec v1.13.2 2012s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/smallvec-1.13.2 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=9612ba0112429d24 -C extra-filename=-9612ba0112429d24 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2013s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 2013s Compiling oxrdf v0.2.4 2013s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdf CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrdf-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxrdf-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A library providing basic data structures related to RDF 2013s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrdf-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxrdf --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxrdf-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="oxsdatatypes"' --cfg 'feature="rdf-star"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "oxsdatatypes", "rdf-star"))' -C metadata=4910d0cae443c73e -C extra-filename=-4910d0cae443c73e --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern oxilangtag=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxsdatatypes=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxsdatatypes-57ac965a248a3962.rmeta --extern rand=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand-f3c5f220a8fff864.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2013s warning: `rand` (lib) generated 70 warnings (1 duplicate) 2013s Compiling regex-syntax v0.8.5 2013s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --cfg 'feature="unicode-perl"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=a630f23cdbf4fcef -C extra-filename=-a630f23cdbf4fcef --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2015s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 2015s 1, 2 or 3 byte search and single substring search. 2015s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=dc849ac51320f949 -C extra-filename=-dc849ac51320f949 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2015s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 2015s parameters. Structured like an if-else chain, the first matching branch is the 2015s item that gets emitted. 2015s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ba4496824ad2f0d2 -C extra-filename=-ba4496824ad2f0d2 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2015s Compiling minimal-lexical v0.2.1 2015s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/minimal-lexical-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Huszagh ' CARGO_PKG_DESCRIPTION='Fast float parsing conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=minimal-lexical CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/minimal-lexical' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/minimal-lexical-0.2.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/minimal-lexical-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=e29bf55e0e4fa9f7 -C extra-filename=-e29bf55e0e4fa9f7 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2015s Compiling nom v7.1.3 2015s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/Cargo.toml CARGO_PKG_AUTHORS='contact@geoffroycouprie.com' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=7.1.3 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name nom --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=4898146123cad14b -C extra-filename=-4898146123cad14b --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern memchr=/tmp/tmp.pHZtEBGfiU/target/release/deps/libmemchr-dc849ac51320f949.rmeta --extern minimal_lexical=/tmp/tmp.pHZtEBGfiU/target/release/deps/libminimal_lexical-e29bf55e0e4fa9f7.rmeta --cap-lints warn` 2015s warning: unexpected `cfg` condition value: `cargo-clippy` 2015s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/lib.rs:375:13 2015s | 2015s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 2015s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2015s | 2015s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 2015s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2015s = note: see for more information about checking conditional configuration 2015s = note: `#[warn(unexpected_cfgs)]` on by default 2015s 2015s warning: unexpected `cfg` condition name: `nightly` 2015s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/lib.rs:379:12 2015s | 2015s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2015s | ^^^^^^^ 2015s | 2015s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2015s = help: consider using a Cargo feature instead 2015s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2015s [lints.rust] 2015s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2015s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2015s = note: see for more information about checking conditional configuration 2015s 2015s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/lib.rs:391:12 2016s | 2016s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/lib.rs:418:14 2016s | 2016s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unused import: `self::str::*` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/lib.rs:439:9 2016s | 2016s 439 | pub use self::str::*; 2016s | ^^^^^^^^^^^^ 2016s | 2016s = note: `#[warn(unused_imports)]` on by default 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:49:12 2016s | 2016s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:96:12 2016s | 2016s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:340:12 2016s | 2016s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:357:12 2016s | 2016s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:374:12 2016s | 2016s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:392:12 2016s | 2016s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:409:12 2016s | 2016s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2016s warning: unexpected `cfg` condition name: `nightly` 2016s --> /tmp/tmp.pHZtEBGfiU/registry/nom-7.1.3/src/internal.rs:430:12 2016s | 2016s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2016s | ^^^^^^^ 2016s | 2016s = help: consider using a Cargo feature instead 2016s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2016s [lints.rust] 2016s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2016s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2016s = note: see for more information about checking conditional configuration 2016s 2017s warning: `nom` (lib) generated 13 warnings 2017s Compiling libloading v0.8.5 2017s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libloading CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='Simonas Kazlauskas ' CARGO_PKG_DESCRIPTION='Bindings around the platform'\''s dynamic library loading primitives with greatly improved memory safety.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libloading CARGO_PKG_README=README.mkd CARGO_PKG_REPOSITORY='https://github.com/nagisa/rust_libloading/' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name libloading --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --warn=unexpected_cfgs -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0718efed93de5715 -C extra-filename=-0718efed93de5715 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern cfg_if=/tmp/tmp.pHZtEBGfiU/target/release/deps/libcfg_if-ba4496824ad2f0d2.rmeta --cap-lints warn` 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/lib.rs:39:13 2017s | 2017s 39 | #![cfg_attr(libloading_docs, feature(doc_cfg))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s = note: requested on the command line with `-W unexpected-cfgs` 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/lib.rs:45:26 2017s | 2017s 45 | #[cfg(any(unix, windows, libloading_docs))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/lib.rs:49:26 2017s | 2017s 49 | #[cfg(any(unix, windows, libloading_docs))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/os/mod.rs:20:17 2017s | 2017s 20 | #[cfg(any(unix, libloading_docs))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/os/mod.rs:21:12 2017s | 2017s 21 | #[cfg_attr(libloading_docs, doc(cfg(unix)))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/os/mod.rs:25:20 2017s | 2017s 25 | #[cfg(any(windows, libloading_docs))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/os/unix/mod.rs:3:11 2017s | 2017s 3 | #[cfg(all(libloading_docs, not(unix)))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/os/unix/mod.rs:5:15 2017s | 2017s 5 | #[cfg(any(not(libloading_docs), unix))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/os/unix/consts.rs:46:11 2017s | 2017s 46 | #[cfg(all(libloading_docs, not(unix)))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/os/unix/consts.rs:55:15 2017s | 2017s 55 | #[cfg(any(not(libloading_docs), unix))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/safe.rs:1:7 2017s | 2017s 1 | #[cfg(libloading_docs)] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/safe.rs:3:15 2017s | 2017s 3 | #[cfg(all(not(libloading_docs), unix))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/safe.rs:5:15 2017s | 2017s 5 | #[cfg(all(not(libloading_docs), windows))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/safe.rs:15:12 2017s | 2017s 15 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: unexpected `cfg` condition name: `libloading_docs` 2017s --> /tmp/tmp.pHZtEBGfiU/registry/libloading-0.8.5/src/safe.rs:197:12 2017s | 2017s 197 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 2017s | ^^^^^^^^^^^^^^^ 2017s | 2017s = help: consider using a Cargo feature instead 2017s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2017s [lints.rust] 2017s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2017s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2017s = note: see for more information about checking conditional configuration 2017s 2017s warning: `libloading` (lib) generated 15 warnings 2017s Compiling regex-automata v0.4.9 2017s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_automata CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='Automata construction and matching using regular expressions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-automata CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-automata' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name regex_automata --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="alloc"' --cfg 'feature="meta"' --cfg 'feature="nfa-pikevm"' --cfg 'feature="nfa-thompson"' --cfg 'feature="std"' --cfg 'feature="syntax"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-word-boundary"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "dfa", "dfa-build", "dfa-onepass", "dfa-search", "hybrid", "internal-instrument", "internal-instrument-pikevm", "logging", "meta", "nfa", "nfa-backtrack", "nfa-pikevm", "nfa-thompson", "perf", "perf-inline", "perf-literal", "perf-literal-multisubstring", "perf-literal-substring", "std", "syntax", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unicode-word-boundary"))' -C metadata=1f6aaa6190cd4584 -C extra-filename=-1f6aaa6190cd4584 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern regex_syntax=/tmp/tmp.pHZtEBGfiU/target/release/deps/libregex_syntax-a630f23cdbf4fcef.rmeta --cap-lints warn` 2019s Compiling block-buffer v0.10.2 2019s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/block-buffer-0.10.2 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/block-buffer-0.10.2/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Buffer type for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/block-buffer-0.10.2 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name block_buffer --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/block-buffer-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=10d95f1690973503 -C extra-filename=-10d95f1690973503 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern generic_array=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libgeneric_array-8bbf1525649e97f4.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2019s warning: `block-buffer` (lib) generated 1 warning (1 duplicate) 2019s Compiling crypto-common v0.1.6 2019s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crypto_common CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/crypto-common-0.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/crypto-common-0.1.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Common cryptographic traits' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crypto-common CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/crypto-common-0.1.6 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name crypto_common --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/crypto-common-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("getrandom", "rand_core", "std"))' -C metadata=e0efd4b670f53510 -C extra-filename=-e0efd4b670f53510 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern generic_array=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libgeneric_array-8bbf1525649e97f4.rmeta --extern typenum=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libtypenum-2ce1dc0d44f236d9.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2019s warning: `crypto-common` (lib) generated 1 warning (1 duplicate) 2019s Compiling either v1.13.0 2019s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=either CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/either-1.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/either-1.13.0/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases. 2019s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=either CARGO_PKG_README=README-crates.io.md CARGO_PKG_REPOSITORY='https://github.com/rayon-rs/either' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=1.13.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/either-1.13.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name either --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/either-1.13.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "use_std"))' -C metadata=3baa90745a10b00b -C extra-filename=-3baa90745a10b00b --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2019s Compiling peg-runtime v0.8.3 2019s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=8060b0318fa1ed9f -C extra-filename=-8060b0318fa1ed9f --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2019s warning: unexpected `cfg` condition value: `unstable` 2019s --> /tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3/lib.rs:2:13 2019s | 2019s 2 | #![cfg_attr(feature = "unstable", feature(error_in_core))] 2019s | ^^^^^^^^^^^^^^^^^^^^ 2019s | 2019s = note: expected values for `feature` are: `std` 2019s = help: consider adding `unstable` as a feature in `Cargo.toml` 2019s = note: see for more information about checking conditional configuration 2019s = note: `#[warn(unexpected_cfgs)]` on by default 2019s 2019s warning: unexpected `cfg` condition value: `unstable` 2019s --> /tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3/error.rs:66:28 2019s | 2019s 66 | #[cfg(any(feature = "std", feature = "unstable"))] 2019s | ^^^^^^^^^^^^^^^^^^^^ 2019s | 2019s = note: expected values for `feature` are: `std` 2019s = help: consider adding `unstable` as a feature in `Cargo.toml` 2019s = note: see for more information about checking conditional configuration 2019s 2019s warning: `peg-runtime` (lib) generated 2 warnings 2019s Compiling shlex v1.3.0 2019s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/shlex-1.3.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=29cedd85933b2505 -C extra-filename=-29cedd85933b2505 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2019s warning: unexpected `cfg` condition name: `manual_codegen_check` 2019s --> /tmp/tmp.pHZtEBGfiU/registry/shlex-1.3.0/src/bytes.rs:353:12 2019s | 2019s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 2019s | ^^^^^^^^^^^^^^^^^^^^ 2019s | 2019s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2019s = help: consider using a Cargo feature instead 2019s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2019s [lints.rust] 2019s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 2019s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 2019s = note: see for more information about checking conditional configuration 2019s = note: `#[warn(unexpected_cfgs)]` on by default 2019s 2019s warning: `shlex` (lib) generated 1 warning 2019s Compiling bindgen v0.71.1 2019s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1/Cargo.toml CARGO_PKG_AUTHORS='Jyun-Yan You :Emilio Cobos Álvarez :Nick Fitzgerald :The Servo project developers' CARGO_PKG_DESCRIPTION='Automatically generates Rust FFI bindings to C and C++ libraries.' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/rust-bindgen/' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bindgen CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rust-bindgen' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.71.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=71 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="logging"' --cfg 'feature="prettyplease"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__cli", "__testing_only_extra_assertions", "__testing_only_libclang_16", "__testing_only_libclang_9", "default", "experimental", "logging", "prettyplease", "runtime", "static", "which-rustfmt"))' -C metadata=ada8a76aeec31bfc -C extra-filename=-ada8a76aeec31bfc --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/bindgen-ada8a76aeec31bfc -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2020s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_LOGGING=1 CARGO_FEATURE_PRETTYPLEASE=1 CARGO_FEATURE_RUNTIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1/Cargo.toml CARGO_PKG_AUTHORS='Jyun-Yan You :Emilio Cobos Álvarez :Nick Fitzgerald :The Servo project developers' CARGO_PKG_DESCRIPTION='Automatically generates Rust FFI bindings to C and C++ libraries.' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/rust-bindgen/' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bindgen CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rust-bindgen' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.71.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=71 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DEBUG=false DEP_PRETTYPLEASE02_VERSION=0.2.6 HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/bindgen-fa0eb79cabbdd003/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/bindgen-ada8a76aeec31bfc/build-script-build` 2020s [bindgen 0.71.1] cargo:rerun-if-env-changed=LLVM_CONFIG_PATH 2020s [bindgen 0.71.1] cargo:rerun-if-env-changed=LIBCLANG_PATH 2020s [bindgen 0.71.1] cargo:rerun-if-env-changed=LIBCLANG_STATIC_PATH 2020s [bindgen 0.71.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS 2020s [bindgen 0.71.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS_s390x-unknown-linux-gnu 2020s [bindgen 0.71.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS_s390x_unknown_linux_gnu 2020s Compiling peg-macros v0.8.4 2020s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_macros CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-macros-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/peg-macros-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Procedural macros for rust-peg. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-macros CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-macros-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name peg_macros --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/peg-macros-0.8.4/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("trace"))' -C metadata=39a0290f33394d81 -C extra-filename=-39a0290f33394d81 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern peg_runtime=/tmp/tmp.pHZtEBGfiU/target/release/deps/libpeg_runtime-8060b0318fa1ed9f.rlib --extern proc_macro2=/tmp/tmp.pHZtEBGfiU/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.pHZtEBGfiU/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern proc_macro --cap-lints warn` 2021s Compiling itertools v0.13.0 2021s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=itertools CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/itertools-0.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/itertools-0.13.0/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='Extra iterator adaptors, iterator methods, free functions, and macros.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=itertools CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-itertools/itertools' CARGO_PKG_RUST_VERSION=1.43.1 CARGO_PKG_VERSION=0.13.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/itertools-0.13.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name itertools --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/itertools-0.13.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "use_alloc", "use_std"))' -C metadata=f4fde6d665ca6d4d -C extra-filename=-f4fde6d665ca6d4d --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern either=/tmp/tmp.pHZtEBGfiU/target/release/deps/libeither-3baa90745a10b00b.rmeta --cap-lints warn` 2022s Compiling digest v0.10.7 2022s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/digest-0.10.7 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/digest-0.10.7/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions and message authentication codes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/digest-0.10.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name digest --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/digest-0.10.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="block-buffer"' --cfg 'feature="core-api"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "blobby", "block-buffer", "const-oid", "core-api", "default", "dev", "mac", "oid", "rand_core", "std", "subtle"))' -C metadata=7688db376baeb482 -C extra-filename=-7688db376baeb482 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern block_buffer=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libblock_buffer-10d95f1690973503.rmeta --extern crypto_common=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcrypto_common-e0efd4b670f53510.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2024s warning: `digest` (lib) generated 1 warning (1 duplicate) 2024s Compiling regex v1.11.1 2024s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='An implementation of regular expressions for Rust. This implementation uses 2024s finite automata and guarantees linear time matching on all inputs. 2024s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/regex' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.11.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name regex --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --cfg 'feature="unicode-perl"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "logging", "pattern", "perf", "perf-backtrack", "perf-cache", "perf-dfa", "perf-dfa-full", "perf-inline", "perf-literal", "perf-onepass", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unstable", "use_std"))' -C metadata=e387da69055f672d -C extra-filename=-e387da69055f672d --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern regex_automata=/tmp/tmp.pHZtEBGfiU/target/release/deps/libregex_automata-1f6aaa6190cd4584.rmeta --extern regex_syntax=/tmp/tmp.pHZtEBGfiU/target/release/deps/libregex_syntax-a630f23cdbf4fcef.rmeta --cap-lints warn` 2024s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=clang_sys CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/Cargo.toml CARGO_PKG_AUTHORS='Kyle Mayes ' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/clang-sys-31a04fb5f4333421/out rustc --crate-name clang_sys --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clang_10_0"' --cfg 'feature="clang_11_0"' --cfg 'feature="clang_3_5"' --cfg 'feature="clang_3_6"' --cfg 'feature="clang_3_7"' --cfg 'feature="clang_3_8"' --cfg 'feature="clang_3_9"' --cfg 'feature="clang_4_0"' --cfg 'feature="clang_5_0"' --cfg 'feature="clang_6_0"' --cfg 'feature="clang_7_0"' --cfg 'feature="clang_8_0"' --cfg 'feature="clang_9_0"' --cfg 'feature="libloading"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clang_10_0", "clang_11_0", "clang_12_0", "clang_13_0", "clang_14_0", "clang_15_0", "clang_16_0", "clang_17_0", "clang_18_0", "clang_3_5", "clang_3_6", "clang_3_7", "clang_3_8", "clang_3_9", "clang_4_0", "clang_5_0", "clang_6_0", "clang_7_0", "clang_8_0", "clang_9_0", "libcpp", "libloading", "runtime", "static"))' -C metadata=c8514f3987dadd22 -C extra-filename=-c8514f3987dadd22 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern glob=/tmp/tmp.pHZtEBGfiU/target/release/deps/libglob-9c18cba999f4108b.rmeta --extern libc=/tmp/tmp.pHZtEBGfiU/target/release/deps/liblibc-7fc068eb0b53bf93.rmeta --extern libloading=/tmp/tmp.pHZtEBGfiU/target/release/deps/liblibloading-0718efed93de5715.rmeta --cap-lints warn` 2024s warning: unexpected `cfg` condition value: `cargo-clippy` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/src/lib.rs:23:13 2024s | 2024s 23 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::unreadable_literal))] 2024s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2024s | 2024s = note: expected values for `feature` are: `clang_10_0`, `clang_11_0`, `clang_12_0`, `clang_13_0`, `clang_14_0`, `clang_15_0`, `clang_16_0`, `clang_17_0`, `clang_18_0`, `clang_3_5`, `clang_3_6`, `clang_3_7`, `clang_3_8`, `clang_3_9`, `clang_4_0`, `clang_5_0`, `clang_6_0`, `clang_7_0`, `clang_8_0`, `clang_9_0`, `libcpp`, `libloading`, `runtime`, and `static` 2024s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2024s = note: see for more information about checking conditional configuration 2024s = note: `#[warn(unexpected_cfgs)]` on by default 2024s 2024s warning: unexpected `cfg` condition value: `cargo-clippy` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/src/link.rs:173:24 2024s | 2024s 173 | #[cfg_attr(feature="cargo-clippy", allow(clippy::missing_safety_doc))] 2024s | ^^^^^^^^^^^^^^^^^^^^^^ 2024s | 2024s ::: /tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/src/lib.rs:1859:1 2024s | 2024s 1859 | / link! { 2024s 1860 | | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2024s 1861 | | pub fn clang_CXCursorSet_insert(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2024s 1862 | | pub fn clang_CXIndex_getGlobalOptions(index: CXIndex) -> CXGlobalOptFlags; 2024s ... | 2024s 2432 | | pub fn clang_VerbatimLineComment_getText(comment: CXComment) -> CXString; 2024s 2433 | | } 2024s | |_- in this macro invocation 2024s | 2024s = note: expected values for `feature` are: `clang_10_0`, `clang_11_0`, `clang_12_0`, `clang_13_0`, `clang_14_0`, `clang_15_0`, `clang_16_0`, `clang_17_0`, `clang_18_0`, `clang_3_5`, `clang_3_6`, `clang_3_7`, `clang_3_8`, `clang_3_9`, `clang_4_0`, `clang_5_0`, `clang_6_0`, `clang_7_0`, `clang_8_0`, `clang_9_0`, `libcpp`, `libloading`, `runtime`, and `static` 2024s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2024s = note: see for more information about checking conditional configuration 2024s = note: this warning originates in the macro `link` (in Nightly builds, run with -Z macro-backtrace for more info) 2024s 2024s warning: unexpected `cfg` condition value: `cargo-clippy` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/src/link.rs:174:24 2024s | 2024s 174 | #[cfg_attr(feature="cargo-clippy", allow(clippy::too_many_arguments))] 2024s | ^^^^^^^^^^^^^^^^^^^^^^ 2024s | 2024s ::: /tmp/tmp.pHZtEBGfiU/registry/clang-sys-1.8.1/src/lib.rs:1859:1 2024s | 2024s 1859 | / link! { 2024s 1860 | | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2024s 1861 | | pub fn clang_CXCursorSet_insert(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2024s 1862 | | pub fn clang_CXIndex_getGlobalOptions(index: CXIndex) -> CXGlobalOptFlags; 2024s ... | 2024s 2432 | | pub fn clang_VerbatimLineComment_getText(comment: CXComment) -> CXString; 2024s 2433 | | } 2024s | |_- in this macro invocation 2024s | 2024s = note: expected values for `feature` are: `clang_10_0`, `clang_11_0`, `clang_12_0`, `clang_13_0`, `clang_14_0`, `clang_15_0`, `clang_16_0`, `clang_17_0`, `clang_18_0`, `clang_3_5`, `clang_3_6`, `clang_3_7`, `clang_3_8`, `clang_3_9`, `clang_4_0`, `clang_5_0`, `clang_6_0`, `clang_7_0`, `clang_8_0`, `clang_9_0`, `libcpp`, `libloading`, `runtime`, and `static` 2024s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2024s = note: see for more information about checking conditional configuration 2024s = note: this warning originates in the macro `link` (in Nightly builds, run with -Z macro-backtrace for more info) 2024s 2024s warning: `oxrdf` (lib) generated 1 warning (1 duplicate) 2024s Compiling cexpr v0.6.0 2024s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cexpr CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/cexpr-0.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/cexpr-0.6.0/Cargo.toml CARGO_PKG_AUTHORS='Jethro Beekman ' CARGO_PKG_DESCRIPTION='A C expression parser and evaluator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cexpr CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/jethrogb/rust-cexpr' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/cexpr-0.6.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name cexpr --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/cexpr-0.6.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f233f43409dbbb4c -C extra-filename=-f233f43409dbbb4c --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern nom=/tmp/tmp.pHZtEBGfiU/target/release/deps/libnom-4898146123cad14b.rmeta --cap-lints warn` 2024s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=prettyplease CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='A minimal `syn` syntax tree pretty-printer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=prettyplease CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/prettyplease' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/prettyplease-b81aaf3b213cce70/out rustc --crate-name prettyplease --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="verbatim"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("verbatim"))' -C metadata=8f278d520784d3d1 -C extra-filename=-8f278d520784d3d1 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern proc_macro2=/tmp/tmp.pHZtEBGfiU/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern syn=/tmp/tmp.pHZtEBGfiU/target/release/deps/libsyn-b868415a27df09e1.rmeta --cap-lints warn` 2024s warning: unexpected `cfg` condition name: `exhaustive` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/lib.rs:342:23 2024s | 2024s 342 | #![cfg_attr(all(test, exhaustive), feature(non_exhaustive_omitted_patterns_lint))] 2024s | ^^^^^^^^^^ 2024s | 2024s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2024s = help: consider using a Cargo feature instead 2024s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2024s [lints.rust] 2024s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2024s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2024s = note: see for more information about checking conditional configuration 2024s = note: `#[warn(unexpected_cfgs)]` on by default 2024s 2024s warning: unexpected `cfg` condition name: `prettyplease_debug` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/algorithm.rs:287:17 2024s | 2024s 287 | if cfg!(prettyplease_debug) { 2024s | ^^^^^^^^^^^^^^^^^^ 2024s | 2024s = help: consider using a Cargo feature instead 2024s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2024s [lints.rust] 2024s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2024s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2024s = note: see for more information about checking conditional configuration 2024s 2024s warning: unexpected `cfg` condition name: `prettyplease_debug_indent` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/algorithm.rs:292:21 2024s | 2024s 292 | if cfg!(prettyplease_debug_indent) { 2024s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 2024s | 2024s = help: consider using a Cargo feature instead 2024s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2024s [lints.rust] 2024s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug_indent)'] } 2024s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug_indent)");` to the top of the `build.rs` 2024s = note: see for more information about checking conditional configuration 2024s 2024s warning: unexpected `cfg` condition name: `prettyplease_debug` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/algorithm.rs:319:17 2024s | 2024s 319 | if cfg!(prettyplease_debug) { 2024s | ^^^^^^^^^^^^^^^^^^ 2024s | 2024s = help: consider using a Cargo feature instead 2024s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2024s [lints.rust] 2024s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2024s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2024s = note: see for more information about checking conditional configuration 2024s 2024s warning: unexpected `cfg` condition name: `prettyplease_debug` 2024s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/algorithm.rs:341:21 2024s | 2024s 341 | if cfg!(prettyplease_debug) { 2024s | ^^^^^^^^^^^^^^^^^^ 2024s | 2024s = help: consider using a Cargo feature instead 2024s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2024s [lints.rust] 2024s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2024s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2024s = note: see for more information about checking conditional configuration 2024s 2025s warning: unexpected `cfg` condition name: `prettyplease_debug` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/algorithm.rs:349:21 2025s | 2025s 349 | if cfg!(prettyplease_debug) { 2025s | ^^^^^^^^^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/expr.rs:61:34 2025s | 2025s 61 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/expr.rs:951:34 2025s | 2025s 951 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/expr.rs:961:34 2025s | 2025s 961 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/expr.rs:1017:30 2025s | 2025s 1017 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/expr.rs:1077:30 2025s | 2025s 1077 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/expr.rs:1130:30 2025s | 2025s 1130 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/expr.rs:1190:30 2025s | 2025s 1190 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/generics.rs:112:34 2025s | 2025s 112 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/generics.rs:282:34 2025s | 2025s 282 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/item.rs:34:34 2025s | 2025s 34 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/item.rs:775:34 2025s | 2025s 775 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/item.rs:909:34 2025s | 2025s 909 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/item.rs:1084:34 2025s | 2025s 1084 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/item.rs:1328:34 2025s | 2025s 1328 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/lit.rs:16:34 2025s | 2025s 16 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/pat.rs:31:34 2025s | 2025s 31 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/path.rs:68:34 2025s | 2025s 68 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/path.rs:104:38 2025s | 2025s 104 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/stmt.rs:147:30 2025s | 2025s 147 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/stmt.rs:109:34 2025s | 2025s 109 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/stmt.rs:206:30 2025s | 2025s 206 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: unexpected `cfg` condition name: `exhaustive` 2025s --> /tmp/tmp.pHZtEBGfiU/registry/prettyplease-0.2.6/src/ty.rs:30:34 2025s | 2025s 30 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2025s | ^^^^^^^^^^ 2025s | 2025s = help: consider using a Cargo feature instead 2025s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2025s [lints.rust] 2025s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2025s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2025s = note: see for more information about checking conditional configuration 2025s 2025s warning: `prettyplease` (lib) generated 28 warnings 2025s Compiling jobserver v0.1.32 2025s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=jobserver CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/jobserver-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/jobserver-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='An implementation of the GNU Make jobserver for Rust. 2025s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/jobserver-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=jobserver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/jobserver-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/jobserver-0.1.32 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name jobserver --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/jobserver-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=222b608f71294456 -C extra-filename=-222b608f71294456 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern libc=/tmp/tmp.pHZtEBGfiU/target/release/deps/liblibc-7fc068eb0b53bf93.rmeta --cap-lints warn` 2026s Compiling quick-xml v0.36.1 2026s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/quick-xml-0.36.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=759ace41c505d51b -C extra-filename=-759ace41c505d51b --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern memchr=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2026s warning: unexpected `cfg` condition value: `document-features` 2026s --> /tmp/tmp.pHZtEBGfiU/registry/quick-xml-0.36.1/src/lib.rs:42:5 2026s | 2026s 42 | feature = "document-features", 2026s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2026s | 2026s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 2026s = help: consider adding `document-features` as a feature in `Cargo.toml` 2026s = note: see for more information about checking conditional configuration 2026s = note: `#[warn(unexpected_cfgs)]` on by default 2026s 2026s warning: elided lifetime has a name 2026s --> /tmp/tmp.pHZtEBGfiU/registry/quick-xml-0.36.1/src/writer.rs:146:73 2026s | 2026s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 2026s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 2026s | 2026s = note: `#[warn(elided_named_lifetimes)]` on by default 2026s 2027s warning: `clang-sys` (lib) generated 3 warnings 2027s Compiling rustc-hash v1.1.0 2027s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rustc_hash CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/rustc-hash-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/rustc-hash-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='speed, non-cryptographic hash used in rustc' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustc-hash CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/rustc-hash' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/rustc-hash-1.1.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name rustc_hash --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/rustc-hash-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=7b9521b213bce408 -C extra-filename=-7b9521b213bce408 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2027s Compiling bitflags v2.8.0 2027s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 2027s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/bitflags-2.8.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=90275ba1d39e3b0d -C extra-filename=-90275ba1d39e3b0d --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2027s Compiling log v0.4.22 2027s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 2027s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/log-0.4.22 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name log --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/log-0.4.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=7ec1294a8735a48e -C extra-filename=-7ec1294a8735a48e --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2027s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg_runtime CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg-runtime CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name peg_runtime --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/peg-runtime-0.8.3/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=25bd9d7b1e7b26a9 -C extra-filename=-25bd9d7b1e7b26a9 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2028s warning: `peg-runtime` (lib) generated 3 warnings (3 duplicates) 2028s Compiling autocfg v1.1.0 2028s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/autocfg-1.1.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ace755378c606d29 -C extra-filename=-ace755378c606d29 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2028s warning: `quick-xml` (lib) generated 3 warnings (1 duplicate) 2028s Compiling peg v0.8.4 2028s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=peg CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-0.8.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/peg-0.8.4/Cargo.toml CARGO_PKG_AUTHORS='Kevin Mehall ' CARGO_PKG_DESCRIPTION='A simple Parsing Expression Grammar (PEG) parser generator.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=peg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/kevinmehall/rust-peg' CARGO_PKG_RUST_VERSION=1.68.0 CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/peg-0.8.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name peg --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/peg-0.8.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "trace"))' -C metadata=93f3c4f7744a6516 -C extra-filename=-93f3c4f7744a6516 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern peg_macros=/tmp/tmp.pHZtEBGfiU/target/release/deps/libpeg_macros-39a0290f33394d81.so --extern peg_runtime=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libpeg_runtime-25bd9d7b1e7b26a9.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2028s warning: `peg` (lib) generated 1 warning (1 duplicate) 2028s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=bindgen CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1/Cargo.toml CARGO_PKG_AUTHORS='Jyun-Yan You :Emilio Cobos Álvarez :Nick Fitzgerald :The Servo project developers' CARGO_PKG_DESCRIPTION='Automatically generates Rust FFI bindings to C and C++ libraries.' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/rust-bindgen/' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bindgen CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rust-bindgen' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.71.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=71 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/release/build/bindgen-fa0eb79cabbdd003/out rustc --crate-name bindgen --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/bindgen-0.71.1/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="logging"' --cfg 'feature="prettyplease"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__cli", "__testing_only_extra_assertions", "__testing_only_libclang_16", "__testing_only_libclang_9", "default", "experimental", "logging", "prettyplease", "runtime", "static", "which-rustfmt"))' -C metadata=72a3f7c27547311c -C extra-filename=-72a3f7c27547311c --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern bitflags=/tmp/tmp.pHZtEBGfiU/target/release/deps/libbitflags-90275ba1d39e3b0d.rmeta --extern cexpr=/tmp/tmp.pHZtEBGfiU/target/release/deps/libcexpr-f233f43409dbbb4c.rmeta --extern clang_sys=/tmp/tmp.pHZtEBGfiU/target/release/deps/libclang_sys-c8514f3987dadd22.rmeta --extern itertools=/tmp/tmp.pHZtEBGfiU/target/release/deps/libitertools-f4fde6d665ca6d4d.rmeta --extern log=/tmp/tmp.pHZtEBGfiU/target/release/deps/liblog-7ec1294a8735a48e.rmeta --extern prettyplease=/tmp/tmp.pHZtEBGfiU/target/release/deps/libprettyplease-8f278d520784d3d1.rmeta --extern proc_macro2=/tmp/tmp.pHZtEBGfiU/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.pHZtEBGfiU/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern regex=/tmp/tmp.pHZtEBGfiU/target/release/deps/libregex-e387da69055f672d.rmeta --extern rustc_hash=/tmp/tmp.pHZtEBGfiU/target/release/deps/librustc_hash-7b9521b213bce408.rmeta --extern shlex=/tmp/tmp.pHZtEBGfiU/target/release/deps/libshlex-29cedd85933b2505.rmeta --extern syn=/tmp/tmp.pHZtEBGfiU/target/release/deps/libsyn-b868415a27df09e1.rmeta --cap-lints warn` 2028s Compiling lock_api v0.4.12 2028s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lock_api CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.4.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="atomic_usize"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arc_lock", "atomic_usize", "default", "nightly", "owning_ref", "serde"))' -C metadata=144b797a048670cb -C extra-filename=-144b797a048670cb --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/lock_api-144b797a048670cb -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern autocfg=/tmp/tmp.pHZtEBGfiU/target/release/deps/libautocfg-ace755378c606d29.rlib --cap-lints warn` 2028s Compiling cc v1.1.14 2028s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 2028s C compiler to compile native C code into a static archive to be linked into Rust 2028s code. 2028s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/cc-1.1.14 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name cc --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="parallel"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=d1c2fe57af7587a3 -C extra-filename=-d1c2fe57af7587a3 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern jobserver=/tmp/tmp.pHZtEBGfiU/target/release/deps/libjobserver-222b608f71294456.rmeta --extern libc=/tmp/tmp.pHZtEBGfiU/target/release/deps/liblibc-7fc068eb0b53bf93.rmeta --extern shlex=/tmp/tmp.pHZtEBGfiU/target/release/deps/libshlex-29cedd85933b2505.rmeta --cap-lints warn` 2029s Compiling aho-corasick v1.1.3 2029s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=aho_corasick CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/aho-corasick-1.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/aho-corasick-1.1.3/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Fast multiple substring searching.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=aho-corasick CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=1.1.3 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/aho-corasick-1.1.3 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name aho_corasick --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/aho-corasick-1.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="perf-literal"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "logging", "perf-literal", "std"))' -C metadata=52117c57b0af9707 -C extra-filename=-52117c57b0af9707 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern memchr=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2030s warning: method `cmpeq` is never used 2030s --> /tmp/tmp.pHZtEBGfiU/registry/aho-corasick-1.1.3/src/packed/vector.rs:74:15 2030s | 2030s 28 | pub(crate) trait Vector: 2030s | ------ method in this trait 2030s ... 2030s 74 | unsafe fn cmpeq(self, vector2: Self) -> Self; 2030s | ^^^^^ 2030s | 2030s = note: `#[warn(dead_code)]` on by default 2030s 2034s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=6567aabee58c85ec -C extra-filename=-6567aabee58c85ec --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2034s warning: `aho-corasick` (lib) generated 2 warnings (1 duplicate) 2034s Compiling pkg-config v0.3.31 2034s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 2034s Cargo build scripts. 2034s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/pkg-config-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=2f5d9cafbf4df355 -C extra-filename=-2f5d9cafbf4df355 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2034s warning: unreachable expression 2034s --> /tmp/tmp.pHZtEBGfiU/registry/pkg-config-0.3.31/src/lib.rs:596:9 2034s | 2034s 592 | return true; 2034s | ----------- any code following this expression is unreachable 2034s ... 2034s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 2034s 597 | | // don't use pkg-config if explicitly disabled 2034s 598 | | Some(ref val) if val == "0" => false, 2034s 599 | | Some(_) => true, 2034s ... | 2034s 605 | | } 2034s 606 | | } 2034s | |_________^ unreachable expression 2034s | 2034s = note: `#[warn(unreachable_code)]` on by default 2034s 2034s warning: `pkg-config` (lib) generated 1 warning 2034s Compiling parking_lot_core v0.9.10 2034s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='An advanced API for creating custom synchronization primitives.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking_lot_core CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.9.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=123bab652ea7836d -C extra-filename=-123bab652ea7836d --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/parking_lot_core-123bab652ea7836d -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2034s Compiling crossbeam-utils v0.8.19 2034s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=1f3354439ba4c53e -C extra-filename=-1f3354439ba4c53e --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/crossbeam-utils-1f3354439ba4c53e -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2035s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-df64111c15a3dde2/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/crossbeam-utils-1f3354439ba4c53e/build-script-build` 2035s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 2035s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='An advanced API for creating custom synchronization primitives.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking_lot_core CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.9.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/parking_lot_core-deb01cb672c187e9/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/parking_lot_core-123bab652ea7836d/build-script-build` 2035s [parking_lot_core 0.9.10] cargo:rerun-if-changed=build.rs 2035s Compiling oxrocksdb-sys v0.4.7 2035s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Rust bindings for RocksDB for Oxigraph usage. 2035s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-2.0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrocksdb-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="pkg-config"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "pkg-config"))' -C metadata=c3288aa7e0f32030 -C extra-filename=-c3288aa7e0f32030 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/oxrocksdb-sys-c3288aa7e0f32030 -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern bindgen=/tmp/tmp.pHZtEBGfiU/target/release/deps/libbindgen-72a3f7c27547311c.rlib --extern cc=/tmp/tmp.pHZtEBGfiU/target/release/deps/libcc-d1c2fe57af7587a3.rlib --extern pkg_config=/tmp/tmp.pHZtEBGfiU/target/release/deps/libpkg_config-2f5d9cafbf4df355.rlib --cap-lints warn` 2035s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_ATOMIC_USIZE=1 CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lock_api CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.4.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/lock_api-b67cd9063cd365d0/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/lock_api-144b797a048670cb/build-script-build` 2035s [lock_api 0.4.12] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 2035s [lock_api 0.4.12] | 2035s [lock_api 0.4.12] = note: this feature is not stably supported; its behavior can change in the future 2035s [lock_api 0.4.12] 2035s [lock_api 0.4.12] warning: 1 warning emitted 2035s [lock_api 0.4.12] 2035s [lock_api 0.4.12] cargo:rustc-cfg=has_const_fn_trait_bound 2035s Compiling spargebra v0.3.4 2035s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=spargebra CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/spargebra-0.3.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/spargebra-0.3.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL parser 2035s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spargebra CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.3.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/spargebra-0.3.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name spargebra --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/spargebra-0.3.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="rdf-star"' --cfg 'feature="sep-0002"' --cfg 'feature="sep-0006"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=a7b9da5e0f31eabe -C extra-filename=-a7b9da5e0f31eabe --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern oxilangtag=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern peg=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libpeg-93f3c4f7744a6516.rmeta --extern rand=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand-f3c5f220a8fff864.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2044s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 2044s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_automata CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='Automata construction and matching using regular expressions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-automata CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-automata' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name regex_automata --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/regex-automata-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="dfa-onepass"' --cfg 'feature="hybrid"' --cfg 'feature="meta"' --cfg 'feature="nfa-backtrack"' --cfg 'feature="nfa-pikevm"' --cfg 'feature="nfa-thompson"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-literal-multisubstring"' --cfg 'feature="perf-literal-substring"' --cfg 'feature="std"' --cfg 'feature="syntax"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --cfg 'feature="unicode-word-boundary"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "dfa", "dfa-build", "dfa-onepass", "dfa-search", "hybrid", "internal-instrument", "internal-instrument-pikevm", "logging", "meta", "nfa", "nfa-backtrack", "nfa-pikevm", "nfa-thompson", "perf", "perf-inline", "perf-literal", "perf-literal-multisubstring", "perf-literal-substring", "std", "syntax", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unicode-word-boundary"))' -C metadata=3bc1cb87bf58d89a -C extra-filename=-3bc1cb87bf58d89a --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern aho_corasick=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libaho_corasick-52117c57b0af9707.rmeta --extern memchr=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern regex_syntax=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libregex_syntax-6567aabee58c85ec.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2057s warning: `spargebra` (lib) generated 1 warning (1 duplicate) 2057s Compiling unicode-normalization v0.1.22 2057s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_normalization CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/unicode-normalization-0.1.22 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/unicode-normalization-0.1.22/Cargo.toml CARGO_PKG_AUTHORS='kwantam :Manish Goregaokar ' CARGO_PKG_DESCRIPTION='This crate provides functions for normalization of 2057s Unicode strings, including Canonical and Compatible 2057s Decomposition and Recomposition, as described in 2057s Unicode Standard Annex #15. 2057s ' CARGO_PKG_HOMEPAGE='https://github.com/unicode-rs/unicode-normalization' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-normalization CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/unicode-rs/unicode-normalization' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/unicode-normalization-0.1.22 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name unicode_normalization --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/unicode-normalization-0.1.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=5b77d9ae7a69363f -C extra-filename=-5b77d9ae7a69363f --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern smallvec=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsmallvec-9612ba0112429d24.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2058s warning: `unicode-normalization` (lib) generated 1 warning (1 duplicate) 2058s Compiling httparse v1.8.0 2058s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/Cargo.toml CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='A tiny, safe, speedy, zero-copy HTTP/1.x parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=httparse CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/httparse' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=b59561e9dab81332 -C extra-filename=-b59561e9dab81332 --out-dir /tmp/tmp.pHZtEBGfiU/target/release/build/httparse-b59561e9dab81332 -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn` 2058s Compiling unicode-bidi v0.3.17 2058s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_bidi CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION='Implementation of the Unicode Bidirectional Algorithm' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-bidi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/unicode-bidi' CARGO_PKG_RUST_VERSION=1.47.0 CARGO_PKG_VERSION=0.3.17 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=17 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name unicode_bidi --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="hardcoded-data"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bench_it", "default", "hardcoded-data", "serde", "smallvec", "std", "unstable", "with_serde"))' -C metadata=f97ce21286c2fc63 -C extra-filename=-f97ce21286c2fc63 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:1232:12 2058s | 2058s 1232 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s = note: `#[warn(unexpected_cfgs)]` on by default 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:1263:12 2058s | 2058s 1263 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:54:16 2058s | 2058s 54 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:69:16 2058s | 2058s 69 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:101:16 2058s | 2058s 101 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:161:16 2058s | 2058s 161 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:176:16 2058s | 2058s 176 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:225:16 2058s | 2058s 225 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:253:16 2058s | 2058s 253 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:269:16 2058s | 2058s 269 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:313:16 2058s | 2058s 313 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:343:16 2058s | 2058s 343 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:396:16 2058s | 2058s 396 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:409:16 2058s | 2058s 409 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:458:16 2058s | 2058s 458 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:484:16 2058s | 2058s 484 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:495:16 2058s | 2058s 495 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:507:16 2058s | 2058s 507 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/utf16.rs:520:16 2058s | 2058s 520 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/explicit.rs:33:12 2058s | 2058s 33 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/implicit.rs:26:12 2058s | 2058s 26 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/implicit.rs:262:12 2058s | 2058s 262 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/implicit.rs:581:12 2058s | 2058s 581 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/prepare.rs:53:12 2058s | 2058s 53 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:218:16 2058s | 2058s 218 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:233:16 2058s | 2058s 233 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:271:16 2058s | 2058s 271 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:335:11 2058s | 2058s 335 | #[cfg(feature = "flame_it")] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:436:11 2058s | 2058s 436 | #[cfg(feature = "flame_it")] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:341:15 2058s | 2058s 341 | #[cfg(feature = "flame_it")] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:347:15 2058s | 2058s 347 | #[cfg(feature = "flame_it")] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:481:16 2058s | 2058s 481 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:496:16 2058s | 2058s 496 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:545:16 2058s | 2058s 545 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:577:16 2058s | 2058s 577 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:593:16 2058s | 2058s 593 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:637:16 2058s | 2058s 637 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:667:16 2058s | 2058s 667 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:720:16 2058s | 2058s 720 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:733:16 2058s | 2058s 733 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:782:16 2058s | 2058s 782 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:808:16 2058s | 2058s 808 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:819:16 2058s | 2058s 819 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:833:16 2058s | 2058s 833 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2058s warning: unexpected `cfg` condition value: `flame_it` 2058s --> /tmp/tmp.pHZtEBGfiU/registry/unicode-bidi-0.3.17/src/lib.rs:846:16 2058s | 2058s 846 | #[cfg_attr(feature = "flame_it", flamer::flame)] 2058s | ^^^^^^^^^^^^^^^^^^^^ 2058s | 2058s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 2058s = help: consider adding `flame_it` as a feature in `Cargo.toml` 2058s = note: see for more information about checking conditional configuration 2058s 2059s warning: `regex-automata` (lib) generated 1 warning (1 duplicate) 2059s Compiling percent-encoding v2.3.1 2059s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=percent_encoding CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/percent-encoding-2.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/percent-encoding-2.3.1/Cargo.toml CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='Percent encoding and decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=percent-encoding CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url/' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.3.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/percent-encoding-2.3.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name percent_encoding --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/percent-encoding-2.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=df8b2cf42e028998 -C extra-filename=-df8b2cf42e028998 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2059s warning: ambiguous wide pointer comparison, the comparison includes metadata which may not be expected 2059s --> /tmp/tmp.pHZtEBGfiU/registry/percent-encoding-2.3.1/src/lib.rs:466:35 2059s | 2059s 466 | debug_assert!(raw_utf8 == &*bytes as *const [u8]); 2059s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2059s | 2059s = note: `#[warn(ambiguous_wide_pointer_comparisons)]` on by default 2059s help: use `std::ptr::addr_eq` or untyped pointers to only compare their addresses 2059s | 2059s 466 | debug_assert!(std::ptr::addr_eq(raw_utf8, &*bytes as *const [u8])); 2059s | ++++++++++++++++++ ~ + 2059s help: use explicit `std::ptr::eq` method to compare metadata and addresses 2059s | 2059s 466 | debug_assert!(std::ptr::eq(raw_utf8, &*bytes as *const [u8])); 2059s | +++++++++++++ ~ + 2059s 2059s warning: `percent-encoding` (lib) generated 2 warnings (1 duplicate) 2059s Compiling json-event-parser v0.2.0 2059s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=json_event_parser CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/json-event-parser-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/json-event-parser-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A JSON event parser and serializer 2059s ' CARGO_PKG_HOMEPAGE='https://github.com/oxigraph/json-event-parser' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=json-event-parser CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/json-event-parser' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/json-event-parser-0.2.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name json_event_parser --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/json-event-parser-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio"))' -C metadata=5c64a36fa2d34345 -C extra-filename=-5c64a36fa2d34345 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2060s warning: `unicode-bidi` (lib) generated 46 warnings (1 duplicate) 2060s Compiling scopeguard v1.2.0 2060s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=scopeguard CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/scopeguard-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/scopeguard-1.2.0/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='A RAII scope guard that will run a given closure when it goes out of scope, 2060s even if the code between panics (assuming unwinding panic). 2060s 2060s Defines the macros `defer'\!'`, `defer_on_unwind'\!'`, `defer_on_success'\!'` as 2060s shorthands for guards with one of the implemented strategies. 2060s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=scopeguard CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bluss/scopeguard' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/scopeguard-1.2.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name scopeguard --edition=2015 /tmp/tmp.pHZtEBGfiU/registry/scopeguard-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "use_std"))' -C metadata=43edfa24f3da147b -C extra-filename=-43edfa24f3da147b --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2060s warning: `json-event-parser` (lib) generated 1 warning (1 duplicate) 2060s Compiling sparesults v0.2.4 2060s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sparesults CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/sparesults-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/sparesults-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='SPARQL query results formats parsers and serializers 2060s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparesults CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparesults' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/sparesults-0.2.4 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name sparesults --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/sparesults-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="rdf-star"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=af77e067d0f92d0d -C extra-filename=-af77e067d0f92d0d --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern json_event_parser=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libjson_event_parser-5c64a36fa2d34345.rmeta --extern memchr=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern quick_xml=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libquick_xml-759ace41c505d51b.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2060s warning: `scopeguard` (lib) generated 1 warning (1 duplicate) 2060s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=lock_api CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lock_api CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.4.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/lock_api-b67cd9063cd365d0/out rustc --crate-name lock_api --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="atomic_usize"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arc_lock", "atomic_usize", "default", "nightly", "owning_ref", "serde"))' -C metadata=90846c5d31d7a981 -C extra-filename=-90846c5d31d7a981 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern scopeguard=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libscopeguard-43edfa24f3da147b.rmeta --cap-lints warn -Ctarget-feature=+backchain --cfg has_const_fn_trait_bound` 2060s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 2060s --> /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/mutex.rs:148:11 2060s | 2060s 148 | #[cfg(has_const_fn_trait_bound)] 2060s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2060s | 2060s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2060s = help: consider using a Cargo feature instead 2060s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2060s [lints.rust] 2060s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 2060s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 2060s = note: see for more information about checking conditional configuration 2060s = note: `#[warn(unexpected_cfgs)]` on by default 2060s 2060s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 2060s --> /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/mutex.rs:158:15 2060s | 2060s 158 | #[cfg(not(has_const_fn_trait_bound))] 2060s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2060s | 2060s = help: consider using a Cargo feature instead 2060s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2060s [lints.rust] 2060s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 2060s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 2060s = note: see for more information about checking conditional configuration 2060s 2060s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 2060s --> /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/remutex.rs:232:11 2060s | 2060s 232 | #[cfg(has_const_fn_trait_bound)] 2060s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2060s | 2060s = help: consider using a Cargo feature instead 2060s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2060s [lints.rust] 2060s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 2060s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 2060s = note: see for more information about checking conditional configuration 2060s 2060s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 2060s --> /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/remutex.rs:247:15 2060s | 2060s 247 | #[cfg(not(has_const_fn_trait_bound))] 2060s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2060s | 2060s = help: consider using a Cargo feature instead 2060s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2060s [lints.rust] 2060s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 2060s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 2060s = note: see for more information about checking conditional configuration 2060s 2060s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 2060s --> /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/rwlock.rs:369:11 2060s | 2060s 369 | #[cfg(has_const_fn_trait_bound)] 2060s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2060s | 2060s = help: consider using a Cargo feature instead 2060s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2060s [lints.rust] 2060s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 2060s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 2060s = note: see for more information about checking conditional configuration 2060s 2060s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 2060s --> /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/rwlock.rs:379:15 2060s | 2060s 379 | #[cfg(not(has_const_fn_trait_bound))] 2060s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2060s | 2060s = help: consider using a Cargo feature instead 2060s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2060s [lints.rust] 2060s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 2060s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 2060s = note: see for more information about checking conditional configuration 2060s 2060s warning: field `0` is never read 2060s --> /tmp/tmp.pHZtEBGfiU/registry/lock_api-0.4.12/src/lib.rs:103:24 2060s | 2060s 103 | pub struct GuardNoSend(*mut ()); 2060s | ----------- ^^^^^^^ 2060s | | 2060s | field in this struct 2060s | 2060s = help: consider removing this field 2060s = note: `#[warn(dead_code)]` on by default 2060s 2060s warning: `lock_api` (lib) generated 8 warnings (1 duplicate) 2060s Compiling form_urlencoded v1.2.1 2060s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=form_urlencoded CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/form_urlencoded-1.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/form_urlencoded-1.2.1/Cargo.toml CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=form_urlencoded CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=1.2.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/form_urlencoded-1.2.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name form_urlencoded --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/form_urlencoded-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b2b8514ab6b5fa4b -C extra-filename=-b2b8514ab6b5fa4b --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern percent_encoding=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libpercent_encoding-df8b2cf42e028998.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2060s warning: ambiguous wide pointer comparison, the comparison includes metadata which may not be expected 2060s --> /tmp/tmp.pHZtEBGfiU/registry/form_urlencoded-1.2.1/src/lib.rs:414:35 2060s | 2060s 414 | debug_assert!(raw_utf8 == &*bytes as *const [u8]); 2060s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2060s | 2060s = note: `#[warn(ambiguous_wide_pointer_comparisons)]` on by default 2060s help: use `std::ptr::addr_eq` or untyped pointers to only compare their addresses 2060s | 2060s 414 | debug_assert!(std::ptr::addr_eq(raw_utf8, &*bytes as *const [u8])); 2060s | ++++++++++++++++++ ~ + 2060s help: use explicit `std::ptr::eq` method to compare metadata and addresses 2060s | 2060s 414 | debug_assert!(std::ptr::eq(raw_utf8, &*bytes as *const [u8])); 2060s | +++++++++++++ ~ + 2060s 2060s warning: `form_urlencoded` (lib) generated 2 warnings (1 duplicate) 2060s Compiling idna v0.4.0 2060s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=idna CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/idna-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/idna-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='IDNA (Internationalizing Domain Names in Applications) and Punycode.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=idna CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url/' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/idna-0.4.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name idna --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/idna-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=dfd955956c1b01ed -C extra-filename=-dfd955956c1b01ed --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern unicode_bidi=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libunicode_bidi-f97ce21286c2fc63.rmeta --extern unicode_normalization=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libunicode_normalization-5b77d9ae7a69363f.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2063s warning: `idna` (lib) generated 1 warning (1 duplicate) 2063s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/Cargo.toml CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='A tiny, safe, speedy, zero-copy HTTP/1.x parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=httparse CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/httparse' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/httparse-48785035139af8b6/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/httparse-b59561e9dab81332/build-script-build` 2063s [httparse 1.8.0] cargo:rustc-cfg=httparse_simd 2063s [httparse 1.8.0] cargo:warning=CARGO_CFG_TARGET_FEATURE was not set 2063s warning: httparse@1.8.0: CARGO_CFG_TARGET_FEATURE was not set 2063s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='An implementation of regular expressions for Rust. This implementation uses 2063s finite automata and guarantees linear time matching on all inputs. 2063s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/regex' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.11.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name regex --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/regex-1.11.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="perf"' --cfg 'feature="perf-backtrack"' --cfg 'feature="perf-cache"' --cfg 'feature="perf-dfa"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-onepass"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "logging", "pattern", "perf", "perf-backtrack", "perf-cache", "perf-dfa", "perf-dfa-full", "perf-inline", "perf-literal", "perf-onepass", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unstable", "use_std"))' -C metadata=0d5684cef6c234d2 -C extra-filename=-0d5684cef6c234d2 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern aho_corasick=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libaho_corasick-52117c57b0af9707.rmeta --extern memchr=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern regex_automata=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libregex_automata-3bc1cb87bf58d89a.rmeta --extern regex_syntax=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libregex_syntax-6567aabee58c85ec.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2065s warning: `regex` (lib) generated 1 warning (1 duplicate) 2065s Compiling sparopt v0.2.0 2065s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sparopt CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/sparopt-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/sparopt-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL optimizer 2065s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sparopt CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/sparopt' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/sparopt-0.2.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name sparopt --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/sparopt-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="rdf-star"' --cfg 'feature="sep-0002"' --cfg 'feature="sep-0006"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=62cf5a7e46e2ad6f -C extra-filename=-62cf5a7e46e2ad6f --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern rand=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand-f3c5f220a8fff864.rmeta --extern spargebra=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspargebra-a7b9da5e0f31eabe.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2065s warning: `sparesults` (lib) generated 1 warning (1 duplicate) 2065s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PKG_CONFIG=1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7 CARGO_MANIFEST_LINKS=rocksdb CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Rust bindings for RocksDB for Oxigraph usage. 2065s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-2.0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrocksdb-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/release/deps:/tmp/tmp.pHZtEBGfiU/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.pHZtEBGfiU/target/release/build/oxrocksdb-sys-c3288aa7e0f32030/build-script-build` 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_NO_PKG_CONFIG 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_STATIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_DYNAMIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=SYSROOT 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_STATIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_DYNAMIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 2065s [oxrocksdb-sys 0.4.7] cargo:rustc-link-search=native=/usr/lib/s390x-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rustc-link-lib=rocksdb 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_STATIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_DYNAMIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 2065s [oxrocksdb-sys 0.4.7] OUT_DIR = Some(/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out) 2065s [oxrocksdb-sys 0.4.7] TARGET = Some(s390x-unknown-linux-gnu) 2065s [oxrocksdb-sys 0.4.7] OPT_LEVEL = Some(3) 2065s [oxrocksdb-sys 0.4.7] HOST = Some(s390x-unknown-linux-gnu) 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXX_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] CXX_s390x-unknown-linux-gnu = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXX_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] CXX_s390x_unknown_linux_gnu = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_CXX 2065s [oxrocksdb-sys 0.4.7] HOST_CXX = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXX 2065s [oxrocksdb-sys 0.4.7] CXX = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT 2065s [oxrocksdb-sys 0.4.7] RUSTC_WRAPPER = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS 2065s [oxrocksdb-sys 0.4.7] CRATE_CC_NO_DEFAULTS = None 2065s [oxrocksdb-sys 0.4.7] DEBUG = Some(false) 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXFLAGS_s390x-unknown-linux-gnu 2065s [oxrocksdb-sys 0.4.7] CXXFLAGS_s390x-unknown-linux-gnu = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXFLAGS_s390x_unknown_linux_gnu 2065s [oxrocksdb-sys 0.4.7] CXXFLAGS_s390x_unknown_linux_gnu = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS 2065s [oxrocksdb-sys 0.4.7] HOST_CXXFLAGS = None 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXFLAGS 2065s [oxrocksdb-sys 0.4.7] CXXFLAGS = Some(-g -O2 -mbackchain -ffile-prefix-map=/usr/share/cargo/registry/oxigraph-0.4.7=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection) 2065s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CC_SHELL_ESCAPED_FLAGS 2065s [oxrocksdb-sys 0.4.7] CC_SHELL_ESCAPED_FLAGS = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=AR_s390x-unknown-linux-gnu 2067s [oxrocksdb-sys 0.4.7] AR_s390x-unknown-linux-gnu = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=AR_s390x_unknown_linux_gnu 2067s [oxrocksdb-sys 0.4.7] AR_s390x_unknown_linux_gnu = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_AR 2067s [oxrocksdb-sys 0.4.7] HOST_AR = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=AR 2067s [oxrocksdb-sys 0.4.7] AR = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ARFLAGS_s390x-unknown-linux-gnu 2067s [oxrocksdb-sys 0.4.7] ARFLAGS_s390x-unknown-linux-gnu = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ARFLAGS_s390x_unknown_linux_gnu 2067s [oxrocksdb-sys 0.4.7] ARFLAGS_s390x_unknown_linux_gnu = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_ARFLAGS 2067s [oxrocksdb-sys 0.4.7] HOST_ARFLAGS = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ARFLAGS 2067s [oxrocksdb-sys 0.4.7] ARFLAGS = None 2067s [oxrocksdb-sys 0.4.7] cargo:rustc-link-lib=static=oxrocksdb_api 2067s [oxrocksdb-sys 0.4.7] cargo:rustc-link-search=native=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXSTDLIB_s390x-unknown-linux-gnu 2067s [oxrocksdb-sys 0.4.7] CXXSTDLIB_s390x-unknown-linux-gnu = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXSTDLIB_s390x_unknown_linux_gnu 2067s [oxrocksdb-sys 0.4.7] CXXSTDLIB_s390x_unknown_linux_gnu = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_CXXSTDLIB 2067s [oxrocksdb-sys 0.4.7] HOST_CXXSTDLIB = None 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXSTDLIB 2067s [oxrocksdb-sys 0.4.7] CXXSTDLIB = None 2067s [oxrocksdb-sys 0.4.7] cargo:rustc-link-lib=stdc++ 2067s [oxrocksdb-sys 0.4.7] cargo:rerun-if-changed=api/ 2067s [oxrocksdb-sys 0.4.7] dh-cargo:deb-built-using=oxrocksdb_api=0=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7 2068s [oxrocksdb-sys 0.4.7] Failed to run rustfmt: No such file or directory (os error 2) (non-fatal, continuing) 2068s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=parking_lot_core CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='An advanced API for creating custom synchronization primitives.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking_lot_core CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.9.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/parking_lot_core-deb01cb672c187e9/out rustc --crate-name parking_lot_core --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=2120f763556e43e4 -C extra-filename=-2120f763556e43e4 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern cfg_if=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern libc=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --extern smallvec=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsmallvec-9612ba0112429d24.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1148:7 2068s | 2068s 1148 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s = note: `#[warn(unexpected_cfgs)]` on by default 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:171:11 2068s | 2068s 171 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:189:19 2068s | 2068s 189 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1099:11 2068s | 2068s 1099 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1102:11 2068s | 2068s 1102 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1135:11 2068s | 2068s 1135 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1113:15 2068s | 2068s 1113 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1129:15 2068s | 2068s 1129 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition value: `deadlock_detection` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1143:15 2068s | 2068s 1143 | #[cfg(feature = "deadlock_detection")] 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = note: expected values for `feature` are: `nightly` 2068s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unused import: `UnparkHandle` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/thread_parker/mod.rs:85:49 2068s | 2068s 85 | pub use self::imp::{thread_yield, ThreadParker, UnparkHandle}; 2068s | ^^^^^^^^^^^^ 2068s | 2068s = note: `#[warn(unused_imports)]` on by default 2068s 2068s warning: unexpected `cfg` condition name: `tsan_enabled` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/parking_lot_core-0.9.10/src/word_lock.rs:293:13 2068s | 2068s 293 | if cfg!(tsan_enabled) { 2068s | ^^^^^^^^^^^^ 2068s | 2068s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tsan_enabled)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tsan_enabled)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: `parking_lot_core` (lib) generated 12 warnings (1 duplicate) 2068s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-df64111c15a3dde2/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=9f1f74ec648708fe -C extra-filename=-9f1f74ec648708fe --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 2068s | 2068s 42 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: `#[warn(unexpected_cfgs)]` on by default 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 2068s | 2068s 65 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/lib.rs:106:11 2068s | 2068s 106 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 2068s | 2068s 74 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 2068s | 2068s 78 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 2068s | 2068s 81 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 2068s | 2068s 7 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 2068s | 2068s 25 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 2068s | 2068s 28 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 2068s | 2068s 1 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 2068s | 2068s 27 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 2068s | 2068s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 2068s | 2068s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 2068s | 2068s 50 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 2068s | 2068s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 2068s | 2068s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 2068s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 2068s | 2068s 101 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 2068s | 2068s 107 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 79 | impl_atomic!(AtomicBool, bool); 2068s | ------------------------------ in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 79 | impl_atomic!(AtomicBool, bool); 2068s | ------------------------------ in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 80 | impl_atomic!(AtomicUsize, usize); 2068s | -------------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 80 | impl_atomic!(AtomicUsize, usize); 2068s | -------------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 81 | impl_atomic!(AtomicIsize, isize); 2068s | -------------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 81 | impl_atomic!(AtomicIsize, isize); 2068s | -------------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 82 | impl_atomic!(AtomicU8, u8); 2068s | -------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 82 | impl_atomic!(AtomicU8, u8); 2068s | -------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 83 | impl_atomic!(AtomicI8, i8); 2068s | -------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 83 | impl_atomic!(AtomicI8, i8); 2068s | -------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 84 | impl_atomic!(AtomicU16, u16); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 84 | impl_atomic!(AtomicU16, u16); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 85 | impl_atomic!(AtomicI16, i16); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 85 | impl_atomic!(AtomicI16, i16); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 87 | impl_atomic!(AtomicU32, u32); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 87 | impl_atomic!(AtomicU32, u32); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 89 | impl_atomic!(AtomicI32, i32); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 89 | impl_atomic!(AtomicI32, i32); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 94 | impl_atomic!(AtomicU64, u64); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 94 | impl_atomic!(AtomicU64, u64); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 2068s | 2068s 66 | #[cfg(not(crossbeam_no_atomic))] 2068s | ^^^^^^^^^^^^^^^^^^^ 2068s ... 2068s 99 | impl_atomic!(AtomicI64, i64); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 2068s | 2068s 71 | #[cfg(crossbeam_loom)] 2068s | ^^^^^^^^^^^^^^ 2068s ... 2068s 99 | impl_atomic!(AtomicI64, i64); 2068s | ---------------------------- in this macro invocation 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:7:11 2068s | 2068s 7 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:10:11 2068s | 2068s 10 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2068s warning: unexpected `cfg` condition name: `crossbeam_loom` 2068s --> /tmp/tmp.pHZtEBGfiU/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:15:11 2068s | 2068s 15 | #[cfg(not(crossbeam_loom))] 2068s | ^^^^^^^^^^^^^^ 2068s | 2068s = help: consider using a Cargo feature instead 2068s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2068s [lints.rust] 2068s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 2068s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 2068s = note: see for more information about checking conditional configuration 2068s 2069s warning: `crossbeam-utils` (lib) generated 44 warnings (1 duplicate) 2069s Compiling oxrdfxml v0.1.5 2069s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdfxml CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrdfxml-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxrdfxml-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for the RDF/XML format 2069s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdfxml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrdfxml-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxrdfxml --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxrdfxml-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default"))' -C metadata=df6716e0d9106818 -C extra-filename=-df6716e0d9106818 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern oxilangtag=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern quick_xml=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libquick_xml-759ace41c505d51b.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2074s warning: `sparopt` (lib) generated 1 warning (1 duplicate) 2074s Compiling sha1 v0.10.6 2074s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/sha1-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/sha1-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/sha1-0.10.6 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name sha1 --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/sha1-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha1-asm", "std"))' -C metadata=bea7321f5e13a666 -C extra-filename=-bea7321f5e13a666 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern cfg_if=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern digest=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libdigest-7688db376baeb482.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2074s warning: `sha1` (lib) generated 1 warning (1 duplicate) 2074s Compiling sha2 v0.10.8 2074s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=sha2 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/sha2-0.10.8 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/sha2-0.10.8/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Pure Rust implementation of the SHA-2 hash function family 2074s including SHA-224, SHA-256, SHA-384, and SHA-512. 2074s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/sha2-0.10.8 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name sha2 --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/sha2-0.10.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "asm-aarch64", "compress", "default", "force-soft", "loongarch64_asm", "oid", "sha2-asm", "std"))' -C metadata=0010511a0e536ab6 -C extra-filename=-0010511a0e536ab6 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern cfg_if=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern digest=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libdigest-7688db376baeb482.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2075s warning: `sha2` (lib) generated 1 warning (1 duplicate) 2075s Compiling md-5 v0.10.6 2075s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=md5 CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/md-5-0.10.6 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/md-5-0.10.6/Cargo.toml CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='MD5 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=md-5 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/md-5-0.10.6 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name md5 --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/md-5-0.10.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("asm", "default", "force-soft", "loongarch64_asm", "md5-asm", "oid", "std"))' -C metadata=18dd741326d002b4 -C extra-filename=-18dd741326d002b4 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern cfg_if=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern digest=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libdigest-7688db376baeb482.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2075s warning: `md-5` (lib) generated 1 warning (1 duplicate) 2075s Compiling oxttl v0.1.5 2075s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxttl CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxttl-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxttl-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for languages related to RDF Turtle (N-Triples, N-Quads, Turtle, TriG and N3) 2075s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxttl CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxttl' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxttl-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxttl --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxttl-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="rdf-star"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=2cbdf5904ea59050 -C extra-filename=-2cbdf5904ea59050 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern memchr=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern oxilangtag=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxilangtag-a8765bb0c7a6b55d.rmeta --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2076s warning: `oxrdfxml` (lib) generated 1 warning (1 duplicate) 2076s Compiling rustc-hash v2.0.0 2076s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rustc_hash CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/rustc-hash-2.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/rustc-hash-2.0.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A speedy, non-cryptographic hashing algorithm used by rustc' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustc-hash CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rustc-hash' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/rustc-hash-2.0.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name rustc_hash --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/rustc-hash-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "rand", "std"))' -C metadata=9ef5c632ac123a78 -C extra-filename=-9ef5c632ac123a78 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2076s warning: `rustc-hash` (lib) generated 1 warning (1 duplicate) 2076s Compiling hex v0.4.3 2076s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=hex CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/hex-0.4.3 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/hex-0.4.3/Cargo.toml CARGO_PKG_AUTHORS='KokaKiwi ' CARGO_PKG_DESCRIPTION='Encoding and decoding data into/from hexadecimal representation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KokaKiwi/rust-hex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/hex-0.4.3 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name hex --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/hex-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "serde", "std"))' -C metadata=328358867b286e55 -C extra-filename=-328358867b286e55 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2076s warning: `hex` (lib) generated 1 warning (1 duplicate) 2076s Compiling hashbrown v0.14.5 2076s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="raw"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=56b8763f5c046ddc -C extra-filename=-56b8763f5c046ddc --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/lib.rs:14:5 2076s | 2076s 14 | feature = "nightly", 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s = note: `#[warn(unexpected_cfgs)]` on by default 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/lib.rs:39:13 2076s | 2076s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/lib.rs:40:13 2076s | 2076s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/lib.rs:49:7 2076s | 2076s 49 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/macros.rs:59:7 2076s | 2076s 59 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/macros.rs:65:11 2076s | 2076s 65 | #[cfg(not(feature = "nightly"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 2076s | 2076s 53 | #[cfg(not(feature = "nightly"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 2076s | 2076s 55 | #[cfg(not(feature = "nightly"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 2076s | 2076s 57 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 2076s | 2076s 3549 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 2076s | 2076s 3661 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 2076s | 2076s 3678 | #[cfg(not(feature = "nightly"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 2076s | 2076s 4304 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 2076s | 2076s 4319 | #[cfg(not(feature = "nightly"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 2076s | 2076s 7 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 2076s | 2076s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 2076s | 2076s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 2076s | 2076s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `rkyv` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 2076s | 2076s 3 | #[cfg(feature = "rkyv")] 2076s | ^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `rkyv` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:242:11 2076s | 2076s 242 | #[cfg(not(feature = "nightly"))] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:255:7 2076s | 2076s 255 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:6517:11 2076s | 2076s 6517 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:6523:11 2076s | 2076s 6523 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:6591:11 2076s | 2076s 6591 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:6597:11 2076s | 2076s 6597 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:6651:11 2076s | 2076s 6651 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/map.rs:6657:11 2076s | 2076s 6657 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/set.rs:1359:11 2076s | 2076s 1359 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/set.rs:1365:11 2076s | 2076s 1365 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/set.rs:1383:11 2076s | 2076s 1383 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: unexpected `cfg` condition value: `nightly` 2076s --> /tmp/tmp.pHZtEBGfiU/registry/hashbrown-0.14.5/src/set.rs:1389:11 2076s | 2076s 1389 | #[cfg(feature = "nightly")] 2076s | ^^^^^^^^^^^^^^^^^^^ 2076s | 2076s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 2076s = help: consider adding `nightly` as a feature in `Cargo.toml` 2076s = note: see for more information about checking conditional configuration 2076s 2076s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 2076s Compiling once_cell v1.20.2 2076s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/once_cell-1.20.2 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=ced3f9f212eac15d -C extra-filename=-ced3f9f212eac15d --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2077s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 2077s Compiling dashmap v6.1.0 2077s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=dashmap CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/dashmap-6.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/dashmap-6.1.0/Cargo.toml CARGO_PKG_AUTHORS='Acrimon ' CARGO_PKG_DESCRIPTION='Blazing fast concurrent HashMap for Rust.' CARGO_PKG_HOMEPAGE='https://github.com/xacrimon/dashmap' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dashmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/xacrimon/dashmap' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=6.1.0 CARGO_PKG_VERSION_MAJOR=6 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/dashmap-6.1.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name dashmap --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/dashmap-6.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "inline", "raw-api", "rayon", "serde"))' -C metadata=ee1c8e8eec8eebd4 -C extra-filename=-ee1c8e8eec8eebd4 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern cfg_if=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcfg_if-c01f12a529e29af4.rmeta --extern crossbeam_utils=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-9f1f74ec648708fe.rmeta --extern hashbrown=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libhashbrown-56b8763f5c046ddc.rmeta --extern lock_api=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblock_api-90846c5d31d7a981.rmeta --extern once_cell=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libonce_cell-ced3f9f212eac15d.rmeta --extern parking_lot_core=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libparking_lot_core-2120f763556e43e4.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2077s warning: unexpected `cfg` condition value: `typesize` 2077s --> /tmp/tmp.pHZtEBGfiU/registry/dashmap-6.1.0/src/lib.rs:1349:7 2077s | 2077s 1349 | #[cfg(feature = "typesize")] 2077s | ^^^^^^^^^^^^^^^^^^^^ 2077s | 2077s = note: expected values for `feature` are: `arbitrary`, `inline`, `raw-api`, `rayon`, and `serde` 2077s = help: consider adding `typesize` as a feature in `Cargo.toml` 2077s = note: see for more information about checking conditional configuration 2077s = note: `#[warn(unexpected_cfgs)]` on by default 2077s 2077s warning: unexpected `cfg` condition value: `typesize` 2077s --> /tmp/tmp.pHZtEBGfiU/registry/dashmap-6.1.0/src/set.rs:418:7 2077s | 2077s 418 | #[cfg(feature = "typesize")] 2077s | ^^^^^^^^^^^^^^^^^^^^ 2077s | 2077s = note: expected values for `feature` are: `arbitrary`, `inline`, `raw-api`, `rayon`, and `serde` 2077s = help: consider adding `typesize` as a feature in `Cargo.toml` 2077s = note: see for more information about checking conditional configuration 2077s 2077s warning: `dashmap` (lib) generated 3 warnings (1 duplicate) 2077s Compiling oxrdfio v0.1.5 2077s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrdfio CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrdfio-0.1.5 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxrdfio-0.1.5/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Parser and serializer for various RDF formats 2077s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrdfio CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrdfio-0.1.5 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxrdfio --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxrdfio-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="rdf-star"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-tokio", "default", "rdf-star"))' -C metadata=ab20538037175c1a -C extra-filename=-ab20538037175c1a --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern oxrdfxml=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdfxml-df6716e0d9106818.rmeta --extern oxttl=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxttl-2cbdf5904ea59050.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2079s warning: `oxrdfio` (lib) generated 1 warning (1 duplicate) 2079s Compiling spareval v0.1.1 2079s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=spareval CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/spareval-0.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/spareval-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='A SPARQL evaluator 2079s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spareval CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/spareval' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/spareval-0.1.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name spareval --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/spareval-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="calendar-ext"' --cfg 'feature="default"' --cfg 'feature="rdf-star"' --cfg 'feature="sep-0002"' --cfg 'feature="sep-0006"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("calendar-ext", "default", "rdf-star", "sep-0002", "sep-0006"))' -C metadata=879940ca69e47b7c -C extra-filename=-879940ca69e47b7c --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern hex=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libhex-328358867b286e55.rmeta --extern json_event_parser=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libjson_event_parser-5c64a36fa2d34345.rmeta --extern md5=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libmd5-18dd741326d002b4.rmeta --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern oxsdatatypes=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxsdatatypes-57ac965a248a3962.rmeta --extern rand=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand-f3c5f220a8fff864.rmeta --extern regex=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libregex-0d5684cef6c234d2.rmeta --extern rustc_hash=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librustc_hash-9ef5c632ac123a78.rmeta --extern sha1=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsha1-bea7321f5e13a666.rmeta --extern sha2=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsha2-0010511a0e536ab6.rmeta --extern sparesults=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsparesults-af77e067d0f92d0d.rmeta --extern spargebra=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspargebra-a7b9da5e0f31eabe.rmeta --extern sparopt=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsparopt-62cf5a7e46e2ad6f.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2083s warning: `oxttl` (lib) generated 1 warning (1 duplicate) 2083s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrocksdb_sys CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Rust bindings for RocksDB for Oxigraph usage. 2083s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-2.0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrocksdb-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out rustc --crate-name oxrocksdb_sys --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxrocksdb-sys-0.4.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="pkg-config"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "pkg-config"))' -C metadata=bf8c708d3eeba414 -C extra-filename=-bf8c708d3eeba414 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern libc=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --cap-lints warn -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out -l rocksdb -l static=oxrocksdb_api -l stdc++` 2083s warning: `oxrocksdb-sys` (lib) generated 1 warning (1 duplicate) 2083s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=httparse CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/Cargo.toml CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='A tiny, safe, speedy, zero-copy HTTP/1.x parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=httparse CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/httparse' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps OUT_DIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/httparse-48785035139af8b6/out rustc --crate-name httparse --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=909aa44337add60f -C extra-filename=-909aa44337add60f --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg httparse_simd` 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:2:5 2083s | 2083s 2 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s = note: `#[warn(unexpected_cfgs)]` on by default 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:11:5 2083s | 2083s 11 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:20:5 2083s | 2083s 20 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:29:5 2083s | 2083s 29 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:31:9 2083s | 2083s 31 | httparse_simd_target_feature_avx2, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_sse42` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:32:13 2083s | 2083s 32 | not(httparse_simd_target_feature_sse42), 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_sse42)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_sse42)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:42:5 2083s | 2083s 42 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:50:5 2083s | 2083s 50 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_sse42` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:51:13 2083s | 2083s 51 | any(not(httparse_simd_target_feature_sse42), httparse_simd_target_feature_avx2), 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_sse42)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_sse42)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:51:50 2083s | 2083s 51 | any(not(httparse_simd_target_feature_sse42), httparse_simd_target_feature_avx2), 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:59:5 2083s | 2083s 59 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_sse42` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:61:13 2083s | 2083s 61 | not(httparse_simd_target_feature_sse42), 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_sse42)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_sse42)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:62:9 2083s | 2083s 62 | httparse_simd_target_feature_avx2, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:73:5 2083s | 2083s 73 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:81:5 2083s | 2083s 81 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_sse42` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:83:9 2083s | 2083s 83 | httparse_simd_target_feature_sse42, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_sse42)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_sse42)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:84:9 2083s | 2083s 84 | httparse_simd_target_feature_avx2, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:164:5 2083s | 2083s 164 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_sse42` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:166:9 2083s | 2083s 166 | httparse_simd_target_feature_sse42, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_sse42)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_sse42)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:167:9 2083s | 2083s 167 | httparse_simd_target_feature_avx2, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:177:5 2083s | 2083s 177 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_sse42` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:178:5 2083s | 2083s 178 | httparse_simd_target_feature_sse42, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_sse42)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_sse42)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:179:9 2083s | 2083s 179 | not(httparse_simd_target_feature_avx2), 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:216:5 2083s | 2083s 216 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_sse42` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:217:5 2083s | 2083s 217 | httparse_simd_target_feature_sse42, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_sse42)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_sse42)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:218:9 2083s | 2083s 218 | not(httparse_simd_target_feature_avx2), 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:227:5 2083s | 2083s 227 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:228:5 2083s | 2083s 228 | httparse_simd_target_feature_avx2, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:284:5 2083s | 2083s 284 | httparse_simd, 2083s | ^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2083s warning: unexpected `cfg` condition name: `httparse_simd_target_feature_avx2` 2083s --> /tmp/tmp.pHZtEBGfiU/registry/httparse-1.8.0/src/simd/mod.rs:285:5 2083s | 2083s 285 | httparse_simd_target_feature_avx2, 2083s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2083s | 2083s = help: consider using a Cargo feature instead 2083s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2083s [lints.rust] 2083s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(httparse_simd_target_feature_avx2)'] } 2083s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(httparse_simd_target_feature_avx2)");` to the top of the `build.rs` 2083s = note: see for more information about checking conditional configuration 2083s 2084s warning: `httparse` (lib) generated 31 warnings (1 duplicate) 2084s Compiling url v2.5.2 2084s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=url CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/url-2.5.2 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/url-2.5.2/Cargo.toml CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='URL library for Rust, based on the WHATWG URL Standard' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=url CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=2.5.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/url-2.5.2 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name url --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/url-2.5.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "expose_internals", "serde"))' -C metadata=7b695e1f1271d743 -C extra-filename=-7b695e1f1271d743 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern form_urlencoded=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libform_urlencoded-b2b8514ab6b5fa4b.rmeta --extern idna=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libidna-dfd955956c1b01ed.rmeta --extern percent_encoding=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libpercent_encoding-df8b2cf42e028998.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2084s warning: unexpected `cfg` condition value: `debugger_visualizer` 2084s --> /tmp/tmp.pHZtEBGfiU/registry/url-2.5.2/src/lib.rs:139:5 2084s | 2084s 139 | feature = "debugger_visualizer", 2084s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2084s | 2084s = note: expected values for `feature` are: `default`, `expose_internals`, and `serde` 2084s = help: consider adding `debugger_visualizer` as a feature in `Cargo.toml` 2084s = note: see for more information about checking conditional configuration 2084s = note: `#[warn(unexpected_cfgs)]` on by default 2084s 2084s warning: `spareval` (lib) generated 1 warning (1 duplicate) 2084s Compiling siphasher v1.0.1 2084s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=siphasher CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/siphasher-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/siphasher-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='Frank Denis ' CARGO_PKG_DESCRIPTION='SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust' CARGO_PKG_HOMEPAGE='https://docs.rs/siphasher' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=siphasher CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/jedisct1/rust-siphash' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/siphasher-1.0.1 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name siphasher --edition=2018 /tmp/tmp.pHZtEBGfiU/registry/siphasher-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_json", "serde_no_std", "serde_std", "std"))' -C metadata=895d04d9b68af3f1 -C extra-filename=-895d04d9b68af3f1 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 2085s warning: `siphasher` (lib) generated 1 warning (1 duplicate) 2085s Compiling oxhttp v0.2.7 2085s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxhttp CARGO_MANIFEST_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7 CARGO_MANIFEST_PATH=/tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Simple implementation of HTTP 1.1 (both client and server) 2085s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxhttp CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxhttp' CARGO_PKG_RUST_VERSION=1.74 CARGO_PKG_VERSION=0.2.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxhttp --edition=2021 /tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="client"' --cfg 'feature="default"' --cfg 'feature="server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "default", "flate2", "native-tls", "rustls", "rustls-aws-lc-native", "rustls-aws-lc-platform-verifier", "rustls-aws-lc-webpki", "rustls-native-certs", "rustls-ring-native", "rustls-ring-platform-verifier", "rustls-ring-webpki", "server"))' -C metadata=2e1996ac46a887d8 -C extra-filename=-2e1996ac46a887d8 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern httparse=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libhttparse-909aa44337add60f.rmeta --extern url=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liburl-7b695e1f1271d743.rmeta --cap-lints warn -Ctarget-feature=+backchain` 2085s warning: unexpected `cfg` condition value: `webpki-roots` 2085s --> /tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7/src/client.rs:10:31 2085s | 2085s 10 | #[cfg(all(feature = "rustls", feature = "webpki-roots"))] 2085s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2085s | 2085s = note: expected values for `feature` are: `client`, `default`, `flate2`, `native-tls`, `rustls`, `rustls-aws-lc-native`, `rustls-aws-lc-platform-verifier`, `rustls-aws-lc-webpki`, `rustls-native-certs`, `rustls-ring-native`, `rustls-ring-platform-verifier`, `rustls-ring-webpki`, and `server` 2085s = help: consider adding `webpki-roots` as a feature in `Cargo.toml` 2085s = note: see for more information about checking conditional configuration 2085s = note: `#[warn(unexpected_cfgs)]` on by default 2085s 2085s warning: unexpected `cfg` condition value: `rustls-platform-verifier` 2085s --> /tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7/src/client.rs:15:9 2085s | 2085s 15 | not(feature = "rustls-platform-verifier") 2085s | ^^^^^^^^^^-------------------------- 2085s | | 2085s | help: there is a expected value with a similar name: `"rustls-ring-platform-verifier"` 2085s | 2085s = note: expected values for `feature` are: `client`, `default`, `flate2`, `native-tls`, `rustls`, `rustls-aws-lc-native`, `rustls-aws-lc-platform-verifier`, `rustls-aws-lc-webpki`, `rustls-native-certs`, `rustls-ring-native`, `rustls-ring-platform-verifier`, `rustls-ring-webpki`, and `server` 2085s = help: consider adding `rustls-platform-verifier` as a feature in `Cargo.toml` 2085s = note: see for more information about checking conditional configuration 2085s 2085s warning: unexpected `cfg` condition value: `rustls-platform-verifier` 2085s --> /tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7/src/client.rs:22:9 2085s | 2085s 22 | not(feature = "rustls-platform-verifier"), 2085s | ^^^^^^^^^^-------------------------- 2085s | | 2085s | help: there is a expected value with a similar name: `"rustls-ring-platform-verifier"` 2085s | 2085s = note: expected values for `feature` are: `client`, `default`, `flate2`, `native-tls`, `rustls`, `rustls-aws-lc-native`, `rustls-aws-lc-platform-verifier`, `rustls-aws-lc-webpki`, `rustls-native-certs`, `rustls-ring-native`, `rustls-ring-platform-verifier`, `rustls-ring-webpki`, and `server` 2085s = help: consider adding `rustls-platform-verifier` as a feature in `Cargo.toml` 2085s = note: see for more information about checking conditional configuration 2085s 2085s warning: unexpected `cfg` condition value: `rustls-platform-verifier` 2085s --> /tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7/src/client.rs:28:5 2085s | 2085s 28 | feature = "rustls-platform-verifier", 2085s | ^^^^^^^^^^-------------------------- 2085s | | 2085s | help: there is a expected value with a similar name: `"rustls-ring-platform-verifier"` 2085s | 2085s = note: expected values for `feature` are: `client`, `default`, `flate2`, `native-tls`, `rustls`, `rustls-aws-lc-native`, `rustls-aws-lc-platform-verifier`, `rustls-aws-lc-webpki`, `rustls-native-certs`, `rustls-ring-native`, `rustls-ring-platform-verifier`, `rustls-ring-webpki`, and `server` 2085s = help: consider adding `rustls-platform-verifier` as a feature in `Cargo.toml` 2085s = note: see for more information about checking conditional configuration 2085s 2085s warning: unexpected `cfg` condition value: `webpki-roots` 2085s --> /tmp/tmp.pHZtEBGfiU/registry/oxhttp-0.2.7/src/client.rs:39:11 2085s | 2085s 39 | #[cfg(all(feature = "webpki-roots", not(feature = "rustls-native-certs")))] 2085s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2085s | 2085s = note: expected values for `feature` are: `client`, `default`, `flate2`, `native-tls`, `rustls`, `rustls-aws-lc-native`, `rustls-aws-lc-platform-verifier`, `rustls-aws-lc-webpki`, `rustls-native-certs`, `rustls-ring-native`, `rustls-ring-platform-verifier`, `rustls-ring-webpki`, and `server` 2085s = help: consider adding `webpki-roots` as a feature in `Cargo.toml` 2085s = note: see for more information about checking conditional configuration 2085s 2087s warning: `url` (lib) generated 2 warnings (1 duplicate) 2087s Compiling oxigraph v0.4.7 (/usr/share/cargo/registry/oxigraph-0.4.7) 2087s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxigraph CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxigraph-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='a SPARQL database and RDF toolkit 2087s ' CARGO_PKG_HOMEPAGE='https://oxigraph.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxigraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxigraph' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxigraph --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --cfg 'feature="default"' --cfg 'feature="oxrocksdb-sys"' --cfg 'feature="rocksdb"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "http-client", "http-client-native-tls", "http-client-rustls-native", "js-sys", "oxhttp", "oxrocksdb-sys", "rocksdb", "rocksdb-debug", "rocksdb-pkg-config"))' -C metadata=cb7472e4113d44bb -C extra-filename=-cb7472e4113d44bb --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern dashmap=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libdashmap-ee1c8e8eec8eebd4.rmeta --extern libc=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rmeta --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rmeta --extern oxrdfio=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdfio-ab20538037175c1a.rmeta --extern oxrocksdb_sys=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrocksdb_sys-bf8c708d3eeba414.rmeta --extern oxsdatatypes=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxsdatatypes-57ac965a248a3962.rmeta --extern rand=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand-f3c5f220a8fff864.rmeta --extern rustc_hash=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librustc_hash-9ef5c632ac123a78.rmeta --extern siphasher=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsiphasher-895d04d9b68af3f1.rmeta --extern sparesults=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsparesults-af77e067d0f92d0d.rmeta --extern spareval=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspareval-879940ca69e47b7c.rmeta --extern spargebra=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspargebra-a7b9da5e0f31eabe.rmeta --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rmeta -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out` 2087s warning: `oxhttp` (lib) generated 6 warnings (1 duplicate) 2087s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxigraph CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxigraph-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='a SPARQL database and RDF toolkit 2087s ' CARGO_PKG_HOMEPAGE='https://oxigraph.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxigraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxigraph' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name oxigraph --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --cfg 'feature="oxrocksdb-sys"' --cfg 'feature="rocksdb"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "http-client", "http-client-native-tls", "http-client-rustls-native", "js-sys", "oxhttp", "oxrocksdb-sys", "rocksdb", "rocksdb-debug", "rocksdb-pkg-config"))' -C metadata=11d8fce8916dc8d4 -C extra-filename=-11d8fce8916dc8d4 --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern dashmap=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libdashmap-ee1c8e8eec8eebd4.rlib --extern libc=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rlib --extern oxhttp=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxhttp-2e1996ac46a887d8.rlib --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rlib --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rlib --extern oxrdfio=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdfio-ab20538037175c1a.rlib --extern oxrocksdb_sys=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrocksdb_sys-bf8c708d3eeba414.rlib --extern oxsdatatypes=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxsdatatypes-57ac965a248a3962.rlib --extern rand=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand-f3c5f220a8fff864.rlib --extern rustc_hash=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librustc_hash-9ef5c632ac123a78.rlib --extern siphasher=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsiphasher-895d04d9b68af3f1.rlib --extern sparesults=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsparesults-af77e067d0f92d0d.rlib --extern spareval=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspareval-879940ca69e47b7c.rlib --extern spargebra=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspargebra-a7b9da5e0f31eabe.rlib --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rlib -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out` 2103s warning: `oxigraph` (lib test) generated 1 warning (1 duplicate) 2120s warning: `oxigraph` (lib) generated 1 warning (1 duplicate) 2120s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=store CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxigraph-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='a SPARQL database and RDF toolkit 2120s ' CARGO_PKG_HOMEPAGE='https://oxigraph.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxigraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxigraph' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 CARGO_TARGET_TMPDIR=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.pHZtEBGfiU/target/release/deps rustc --crate-name store --edition=2021 tests/store.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_dependencies' '--warn=clippy::verbose_file_reads' '--warn=clippy::verbose_bit_mask' '--warn=clippy::used_underscore_binding' '--warn=clippy::use_debug' '--warn=clippy::unwrap_in_result' '--warn=clippy::unused_self' '--warn=clippy::unused_result_ok' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unused_import_braces '--warn=clippy::unused_async' '--warn=clippy::unseparated_literal_suffix' '--warn=clippy::unsafe_derive_deserialize' --warn=unsafe_code '--warn=clippy::unreadable_literal' '--warn=clippy::unnested_or_patterns' '--warn=clippy::unneeded_field_pattern' '--warn=clippy::unnecessary_wraps' '--warn=clippy::unnecessary_self_imports' '--warn=clippy::unnecessary_safety_doc' '--warn=clippy::unnecessary_safety_comment' '--warn=clippy::unnecessary_join' '--warn=clippy::unnecessary_box_returns' '--warn=clippy::uninlined_format_args' '--warn=clippy::unimplemented' '--warn=clippy::unicode_not_nfc' '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::unchecked_duration_subtraction' '--warn=clippy::try_err' '--warn=clippy::trivially_copy_pass_by_ref' --warn=trivial_numeric_casts --warn=trivial_casts '--warn=clippy::transmute_ptr_to_ptr' '--warn=clippy::todo' '--warn=clippy::tests_outside_test_module' '--warn=clippy::suspicious_xor_used_as_pow' '--warn=clippy::struct_field_names' '--warn=clippy::struct_excessive_bools' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_chars_any' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::str_split_at_newline' '--warn=clippy::stable_sort_primitive' '--warn=clippy::single_match_else' '--warn=clippy::single_char_pattern' '--warn=clippy::should_panic_without_expect' '--warn=clippy::shadow_same' '--warn=clippy::semicolon_inside_block' '--warn=clippy::same_name_method' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::return_self_not_must_use' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::renamed_function_params' '--warn=clippy::ref_patterns' '--warn=clippy::ref_option_ref' '--warn=clippy::ref_binding_to_reference' '--warn=clippy::ref_as_ptr' '--warn=clippy::redundant_type_annotations' '--warn=clippy::redundant_feature_names' '--warn=clippy::redundant_else' '--warn=clippy::redundant_closure_for_method_calls' '--warn=clippy::rc_mutex' '--warn=clippy::rc_buffer' '--warn=clippy::range_plus_one' '--warn=clippy::range_minus_one' '--warn=clippy::pub_without_shorthand' '--warn=clippy::pub_underscore_fields' '--warn=clippy::ptr_cast_constness' '--warn=clippy::ptr_as_ptr' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::pathbuf_init_then_push' '--warn=clippy::partial_pub_fields' '--warn=clippy::panic_in_result_fn' '--warn=clippy::panic' '--warn=clippy::option_as_ref_cloned' '--warn=clippy::non_ascii_literal' '--warn=clippy::no_mangle_with_rust_abi' '--warn=clippy::no_effect_underscore_binding' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_raw_strings' '--warn=clippy::needless_raw_string_hashes' '--warn=clippy::needless_pass_by_value' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::needless_bitwise_bool' '--warn=clippy::naive_bytecount' '--warn=clippy::mutex_atomic' '--warn=clippy::mut_mut' '--warn=clippy::multiple_inherent_impl' '--warn=clippy::missing_fields_in_debug' '--warn=clippy::missing_asserts_for_indexing' '--warn=clippy::missing_assert_message' '--warn=clippy::mismatching_type_param_order' '--warn=clippy::mem_forget' '--warn=clippy::maybe_infinite_iter' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::match_wild_err_arm' '--warn=clippy::match_same_arms' '--warn=clippy::match_on_vec_items' '--warn=clippy::match_bool' '--warn=clippy::map_unwrap_or' '--warn=clippy::many_single_char_names' '--warn=clippy::manual_string_new' '--warn=clippy::manual_ok_or' '--warn=clippy::manual_let_else' '--warn=clippy::manual_is_variant_and' '--warn=clippy::manual_instant_elapsed' '--warn=clippy::manual_assert' '--warn=clippy::macro_use_imports' --warn=macro_use_extern_crate '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--warn=clippy::let_underscore_untyped' '--warn=clippy::let_underscore_must_use' --warn=let_underscore_drop '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_include_file' '--warn=clippy::large_futures' '--warn=clippy::large_digit_groups' '--warn=clippy::iter_without_into_iter' '--warn=clippy::iter_not_returning_iterator' '--warn=clippy::iter_filter_is_some' '--warn=clippy::iter_filter_is_ok' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::into_iter_without_iter' '--warn=clippy::inline_asm_x86_intel_syntax' '--warn=clippy::inline_asm_x86_att_syntax' '--warn=clippy::inline_always' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::index_refutable_slice' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::implicit_hasher' '--warn=clippy::implicit_clone' '--warn=clippy::ignored_unit_patterns' '--warn=clippy::if_then_some_else_none' '--warn=clippy::if_not_else' '--warn=clippy::host_endian_bytes' '--warn=clippy::get_unwrap' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::format_push_string' '--warn=clippy::fn_to_numeric_cast_any' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::filetype_is_file' '--warn=clippy::field_scoped_visibility_modifiers' --warn=explicit_outlives_requirements '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::expect_used' '--warn=clippy::exit' '--warn=clippy::error_impl_error' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_structs_with_brackets' '--warn=clippy::empty_enum_variants_with_brackets' '--warn=clippy::empty_enum' '--warn=clippy::empty_drop' --warn=elided_lifetimes_in_paths '--warn=clippy::doc_link_with_quotes' '--warn=clippy::disallowed_script_idents' '--warn=clippy::deref_by_slicing' '--warn=clippy::default_union_representation' '--warn=clippy::default_trait_access' '--warn=clippy::decimal_literal_representation' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--warn=clippy::copy_iterator' '--warn=clippy::cloned_instead_of_copied' '--warn=clippy::clone_on_ref_ptr' '--warn=clippy::checked_conversions' '--warn=clippy::cfg_not_test' '--warn=clippy::cast_sign_loss' '--warn=clippy::cast_ptr_alignment' '--warn=clippy::cast_precision_loss' '--warn=clippy::cast_possible_wrap' '--warn=clippy::cast_possible_truncation' '--warn=clippy::cast_lossless' '--warn=clippy::case_sensitive_file_extension_comparisons' '--warn=clippy::borrow_as_ptr' '--warn=clippy::bool_to_int_with_if' '--warn=clippy::assigning_clones' '--warn=clippy::assertions_on_result_states' '--warn=clippy::as_underscore' '--warn=clippy::allow_attributes_without_reason' '--warn=clippy::allow_attributes' --warn=absolute_paths_not_starting_with_crate --test --cfg 'feature="default"' --cfg 'feature="oxrocksdb-sys"' --cfg 'feature="rocksdb"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "http-client", "http-client-native-tls", "http-client-rustls-native", "js-sys", "oxhttp", "oxrocksdb-sys", "rocksdb", "rocksdb-debug", "rocksdb-pkg-config"))' -C metadata=f8df34cf8766b09e -C extra-filename=-f8df34cf8766b09e --out-dir /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.pHZtEBGfiU/target/release/deps --extern dashmap=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libdashmap-ee1c8e8eec8eebd4.rlib --extern libc=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rlib --extern oxhttp=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxhttp-2e1996ac46a887d8.rlib --extern oxigraph=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxigraph-cb7472e4113d44bb.rlib --extern oxiri=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxiri-202e6f360f4df054.rlib --extern oxrdf=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdf-4910d0cae443c73e.rlib --extern oxrdfio=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrdfio-ab20538037175c1a.rlib --extern oxrocksdb_sys=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxrocksdb_sys-bf8c708d3eeba414.rlib --extern oxsdatatypes=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/liboxsdatatypes-57ac965a248a3962.rlib --extern rand=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librand-f3c5f220a8fff864.rlib --extern rustc_hash=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/librustc_hash-9ef5c632ac123a78.rlib --extern siphasher=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsiphasher-895d04d9b68af3f1.rlib --extern sparesults=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libsparesults-af77e067d0f92d0d.rlib --extern spareval=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspareval-879940ca69e47b7c.rlib --extern spargebra=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libspargebra-a7b9da5e0f31eabe.rlib --extern thiserror=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/libthiserror-5c0f73c3acc6c5a8.rlib -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out` 2127s warning: `oxigraph` (test "store") generated 1 warning (1 duplicate) 2127s Finished `release` profile [optimized] target(s) in 2m 04s 2127s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxigraph-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='a SPARQL database and RDF toolkit 2127s ' CARGO_PKG_HOMEPAGE='https://oxigraph.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxigraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxigraph' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out:/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/oxigraph-11d8fce8916dc8d4 --skip test_backup --skip test_backward_compatibility --skip test_secondary` 2127s 2127s running 12 tests 2127s test sparql::model::tests::test_send_sync ... ok 2127s test sparql::algebra::tests::test_send_sync ... ok 2127s test storage::binary_encoder::tests::test_encoding ... ok 2127s test storage::memory::tests::test_range ... ok 2127s test storage::memory::tests::test_rollback ... ok 2127s test sparql::model::tests::test_serialization_roundtrip ... ok 2127s test storage::memory::tests::test_upgrade ... ok 2127s test storage::numeric_encoder::tests::str_hash_stability ... ok 2127s test storage::numeric_encoder::tests::test_size_and_alignment ... ok 2127s test storage::memory::tests::test_transaction ... ok 2127s test store::tests::test_send_sync ... ok 2127s test store::tests::store ... ok 2127s 2127s test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 2127s 2127s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxigraph-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxigraph-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='a SPARQL database and RDF toolkit 2127s ' CARGO_PKG_HOMEPAGE='https://oxigraph.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxigraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/lib/oxigraph' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-5334e0a810b20036/out:/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.pHZtEBGfiU/target/s390x-unknown-linux-gnu/release/deps/store-f8df34cf8766b09e --skip test_backup --skip test_backward_compatibility --skip test_secondary` 2127s 2127s running 20 tests 2127s test test_bad_backup ... ok 2127s test test_bulk_load_dataset ... ok 2127s test test_bulk_load_empty ... ok 2127s test test_bulk_load_graph ... ok 2127s test test_bulk_load_graph_lenient ... ok 2127s test test_bad_stt_open ... ok 2127s test test_bulk_load_on_existing_delete_overrides_the_delete ... ok 2127s test test_bulk_load_graph_on_disk ... ok 2127s test test_dump_dataset ... ok 2127s test test_dump_graph ... ok 2127s test test_load_dataset ... ok 2127s test test_load_graph ... ok 2127s test test_load_graph_generates_new_blank_nodes ... ok 2127s test test_bulk_load_on_existing_delete_overrides_the_delete_on_disk ... ok 2127s test test_open_bad_dir ... ok 2127s test test_open_read_only_bad_dir ... ok 2128s test test_load_graph_on_disk ... ok 2128s test test_snapshot_isolation_iterator ... ok 2128s test test_snapshot_isolation_iterator_on_disk ... ok 2128s test test_read_only ... ok 2128s 2128s test result: ok. 20 passed; 0 failed; 0 ignored; 0 measured; 3 filtered out; finished in 0.51s 2128s 2128s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 2128s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 2128s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 2128s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 2128s autopkgtest: DBG: testbed command exited with code 0 2128s autopkgtest [02:02:21]: test rust-oxigraph:default: -----------------------] 2128s autopkgtest: DBG: testbed executing test finished with exit status 0 2128s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxigraph%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-oxigraph%3Adefault-stdout 2129s autopkgtest: DBG: got reply from testbed: ok 2129s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxigraph%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-oxigraph%3Adefault-stderr 2129s autopkgtest: DBG: got reply from testbed: ok 2129s rust-oxigraph:default PASS 2129s autopkgtest [02:02:22]: test rust-oxigraph:default: - - - - - - - - - - results - - - - - - - - - - 2129s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxigraph%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 2129s autopkgtest: DBG: got reply from testbed: ok 2129s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-oxigraph:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2129s autopkgtest: DBG: testbed command exited with code 0 2129s autopkgtest [02:02:22]: test rust-oxrocksdb-sys:default: preparing testbed 2129s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-cc-1+parallel-dev', 'librust-is-terminal-0.4+default-dev', 'librust-oxigraph-0.4+default-dev'], deps_new=['dh-rust', 'librust-bindgen-dev (<< 0.72)', 'librust-cc-1+default-dev', 'librust-cc-1+parallel-dev', 'librust-oxrocksdb-sys-0.4+default-dev'] 2129s autopkgtest: DBG: testbed reset 2129s autopkgtest: DBG: sending command to testbed: revert 2246s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 2246s autopkgtest: DBG: sending command to testbed: print-execute-command 2246s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 2246s autopkgtest: DBG: sending command to testbed: capabilities 2246s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 2246s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 2246s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2246s autopkgtest: DBG: testbed command exited with code 0 2246s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 2247s autopkgtest: DBG: got reply from testbed: ok 2247s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2247s autopkgtest: DBG: testbed command exited with code 0 2247s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2247s autopkgtest: DBG: testbed command exited with code 0 2247s autopkgtest [02:04:20]: testbed dpkg architecture: s390x 2247s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2247s autopkgtest: DBG: testbed command exited with code 0 2247s autopkgtest [02:04:20]: testbed apt version: 2.9.28 2247s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2247s autopkgtest: DBG: testbed command exited with code 0 2247s autopkgtest: DBG: testbed has eatmydata 2247s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2247s autopkgtest: DBG: testbed command exited with code 0 2247s autopkgtest [02:04:20]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2247s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2248s autopkgtest: DBG: testbed command exited with code 0 2248s autopkgtest [02:04:21]: testbed release detected to be: plucky 2248s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 2248s autopkgtest: DBG: testbed command exited with code 0 2248s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 2248s autopkgtest: DBG: testbed command exited with code 0 2248s autopkgtest: DBG: adding APT source: Types: deb deb-src 2248s URIs: http://ftpmaster.internal/ubuntu/ 2248s Suites: plucky-proposed 2248s Components: main restricted universe multiverse 2248s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2248s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 2248s autopkgtest: DBG: testbed command exited with code 0 2248s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2248s Package: * 2248s Pin: release plucky-proposed 2248s Pin-Priority: 500 2248s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 2248s autopkgtest: DBG: testbed command exited with code 0 2248s autopkgtest [02:04:21]: updating testbed package index (apt update) 2248s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2249s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2249s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2249s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2249s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2249s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2249s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 2249s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 2249s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 2249s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 2249s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2249s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 2249s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 2250s Fetched 2083 kB in 1s (2080 kB/s) 2250s Reading package lists... 2250s autopkgtest: DBG: testbed command exited with code 0 2250s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2250s Package: * 2250s Pin: release plucky-proposed 2250s Pin-Priority: 100 2250s 2250s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 2250s Pin: release plucky-proposed 2250s Pin-Priority: 995 2250s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2250s autopkgtest: DBG: testbed command exited with code 0 2250s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2250s autopkgtest: DBG: testbed command exited with code 0 2250s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2251s + lsb_release --codename --short 2251s + RELEASE=plucky 2251s + cat 2251s + [ plucky != trusty ] 2251s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2251s Reading package lists... 2251s Building dependency tree... 2251s Reading state information... 2251s Calculating upgrade... 2251s The following packages were automatically installed and are no longer required: 2251s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2251s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2251s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2251s linux-tools-6.11.0-8-generic 2251s Use 'sudo apt autoremove' to remove them. 2251s The following packages will be upgraded: 2251s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 2251s libxdmcp6 2251s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2251s Need to get 1471 kB of archives. 2251s After this operation, 24.6 kB of additional disk space will be used. 2251s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 2251s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 2251s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 2251s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 2252s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 2252s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 2252s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 2252s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 2252s Preconfiguring packages ... 2252s Fetched 1471 kB in 1s (2276 kB/s) 2252s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2252s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 2252s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 2252s Setting up dash (0.5.12-12ubuntu1) ... 2252s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2252s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 2252s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2252s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 2252s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2252s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 2252s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2252s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 2252s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2252s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 2252s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2252s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 2252s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2252s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 2252s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2252s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 2252s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 2252s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 2252s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 2252s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 2252s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 2252s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 2252s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 2252s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 2252s Setting up libtasn1-6:s390x (4.20.0-2) ... 2252s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2252s Processing triggers for man-db (2.13.0-1) ... 2253s Processing triggers for debianutils (5.21) ... 2253s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2253s + /usr/lib/apt/apt-helper analyze-pattern ?true 2253s + + uname -r 2253s sed s/\./\\./g 2253s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2253s + apt list ?obsolete 2253s + tail -n+2 2253s + cut -d/ -f1 2253s + grep -v ^linux-.*6\.12\.0-15-generic.* 2253s + true 2253s + obsolete_pkgs= 2253s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2253s Reading package lists... 2253s Building dependency tree... 2253s Reading state information... 2253s The following packages will be REMOVED: 2253s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2253s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2253s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2253s linux-tools-6.11.0-8-generic* 2254s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 2254s After this operation, 167 MB disk space will be freed. 2254s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2254s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2254s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2254s Removing libpython3.12t64:s390x (3.12.9-1) ... 2254s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2254s Removing libnsl2:s390x (1.3.0-3build3) ... 2254s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2254s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2254s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2255s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2255s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2255s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 2255s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2255s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2255s + grep -q trusty /etc/lsb-release 2255s + [ ! -d /usr/share/doc/unattended-upgrades ] 2255s + [ ! -d /usr/share/doc/lxd ] 2255s + [ ! -d /usr/share/doc/lxd-client ] 2255s + [ ! -d /usr/share/doc/snapd ] 2255s + type iptables 2255s + cat 2255s + chmod 755 /etc/rc.local 2255s + . /etc/rc.local 2255s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2255s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2255s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2255s + uname -m 2255s + [ s390x = ppc64le ] 2255s + [ -d /run/systemd/system ] 2255s + systemd-detect-virt --quiet --vm 2255s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2255s + cat 2255s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2255s + echo COMPRESS=lz4 2255s autopkgtest: DBG: testbed command exited with code 0 2255s autopkgtest [02:04:28]: upgrading testbed (apt dist-upgrade and autopurge) 2255s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2255s Reading package lists... 2255s Building dependency tree... 2255s Reading state information... 2255s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2255s Starting 2 pkgProblemResolver with broken count: 0 2255s Done 2256s Entering ResolveByKeep 2256s 2256s The following packages will be upgraded: 2256s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 2256s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2256s Need to get 10.7 MB of archives. 2256s After this operation, 305 kB of additional disk space will be used. 2256s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 2256s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 2256s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 2257s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 2257s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 2257s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2257s Preconfiguring packages ... 2257s Fetched 10.7 MB in 1s (7873 kB/s) 2257s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 2257s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 2257s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2257s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 2257s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2257s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 2257s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2258s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 2258s Checking for services that may need to be restarted... 2258s Checking init scripts... 2258s Checking for services that may need to be restarted... 2258s Checking init scripts... 2258s Stopping some services possibly affected by the upgrade (will be restarted later): 2258s cron: stopping...done. 2258s 2258s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2258s Setting up libc6:s390x (2.41-1ubuntu1) ... 2258s Checking for services that may need to be restarted... 2258s Checking init scripts... 2258s Restarting services possibly affected by the upgrade: 2258s cron: restarting...done. 2258s 2258s Services restarted successfully. 2258s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 2258s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 2258s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2258s Setting up libc-bin (2.41-1ubuntu1) ... 2258s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 2258s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2258s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2258s Setting up iproute2 (6.13.0-1ubuntu1) ... 2258s Setting up locales (2.41-1ubuntu1) ... 2258s Installing new version of config file /etc/locale.alias ... 2259s Generating locales (this might take a while)... 2260s en_US.UTF-8... done 2260s Generation complete. 2260s Setting up libc-dev-bin (2.41-1ubuntu1) ... 2260s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 2260s Processing triggers for man-db (2.13.0-1) ... 2260s Processing triggers for systemd (257.2-3ubuntu1) ... 2261s autopkgtest: DBG: testbed command exited with code 0 2261s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2261s Reading package lists... 2261s Building dependency tree... 2261s Reading state information... 2261s Starting pkgProblemResolver with broken count: 0 2261s Starting 2 pkgProblemResolver with broken count: 0 2261s Done 2262s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2262s autopkgtest: DBG: testbed command exited with code 0 2262s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2262s autopkgtest: DBG: testbed command exited with code 1 2262s autopkgtest [02:04:35]: rebooting testbed after setup commands that affected boot 2262s autopkgtest: DBG: sending command to testbed: reboot 2277s autopkgtest: DBG: got reply from testbed: ok 2277s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2277s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2277s autopkgtest: DBG: testbed command exited with code 0 2277s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 2277s autopkgtest: DBG: got reply from testbed: ok 2277s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2277s autopkgtest: DBG: testbed command exited with code 0 2277s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2278s autopkgtest: DBG: testbed command exited with code 0 2278s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2278s autopkgtest: DBG: testbed command exited with code 0 2278s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2278s autopkgtest: DBG: testbed command exited with code 0 2278s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 2278s autopkgtest: DBG: got reply from testbed: ok 2278s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2278s autopkgtest: DBG: testbed command exited with code 0 2278s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2278s autopkgtest: DBG: testbed command exited with code 0 2278s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2279s autopkgtest: DBG: testbed command exited with code 0 2279s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 2279s autopkgtest: DBG: testbed command exited with code 0 2279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 2279s autopkgtest: DBG: got reply from testbed: ok 2279s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2279s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2279s autopkgtest: DBG: testbed command exited with code 0 2279s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 2279s autopkgtest: DBG: got reply from testbed: ok 2279s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2279s autopkgtest: DBG: testbed command exited with code 0 2279s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2280s autopkgtest: DBG: testbed command exited with code 0 2280s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2280s autopkgtest: DBG: testbed command exited with code 0 2280s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2280s autopkgtest: DBG: testbed command exited with code 0 2280s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 2280s autopkgtest: DBG: got reply from testbed: ok 2280s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2280s autopkgtest: DBG: testbed command exited with code 0 2280s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2280s autopkgtest: DBG: testbed command exited with code 0 2280s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2281s autopkgtest: DBG: testbed command exited with code 0 2281s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2281s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-bindgen-dev (<< 0.72)', 'librust-cc-1+default-dev', 'librust-cc-1+parallel-dev', 'librust-oxrocksdb-sys-0.4+default-dev'] 2281s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-bindgen-dev (<< 0.72), librust-cc-1+default-dev, librust-cc-1+parallel-dev, librust-oxrocksdb-sys-0.4+default-dev 2281s autopkgtest: DBG: can use apt-get on testbed: True 2281s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-bindgen-dev (<< 0.72), librust-cc-1+default-dev, librust-cc-1+parallel-dev, librust-oxrocksdb-sys-0.4+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2281s Reading package lists... 2281s Building dependency tree... 2281s Reading state information... 2281s Starting pkgProblemResolver with broken count: 0 2281s Starting 2 pkgProblemResolver with broken count: 0 2281s Done 2281s The following NEW packages will be installed: 2281s autoconf automake autopoint autotools-dev cargo cargo-1.83 clang clang-19 2281s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit 2281s dh-autoreconf dh-rust dh-strip-nondeterminism dwz gcc gcc-14 2281s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 2281s libarchive-zip-perl libasan8 libbz2-dev libcc1-0 libclang-19-dev 2281s libclang-common-19-dev libclang-cpp19 libclang-dev libdebhelper-perl 2281s libfile-stripnondeterminism-perl libgc1 libgcc-14-dev libgflags-dev 2281s libgflags2.2 libgit2-1.8 libgomp1 libisl23 libitm1 liblz4-dev libmpc3 2281s libobjc-14-dev libobjc4 libpfm4 libpkgconf3 librocksdb-dev librocksdb9.10 2281s librust-addr2line-dev librust-adler-dev librust-ahash-dev 2281s librust-aho-corasick-dev librust-allocator-api2-dev 2281s librust-annotate-snippets-dev librust-anstream-dev librust-anstyle-dev 2281s librust-anstyle-parse-dev librust-anstyle-query-dev librust-arbitrary-dev 2281s librust-arrayvec-dev librust-backtrace-dev librust-bindgen-dev 2281s librust-bitflags-dev librust-blobby-dev librust-block-buffer-dev 2281s librust-bytemuck-derive-dev librust-bytemuck-dev librust-byteorder-dev 2281s librust-cc-dev librust-cexpr-dev librust-cfg-if-dev librust-clang-sys-dev 2281s librust-clap-builder-dev librust-clap-complete-dev librust-clap-derive-dev 2281s librust-clap-dev librust-clap-lex-dev librust-colorchoice-dev 2281s librust-compiler-builtins+core-dev 2281s librust-compiler-builtins+rustc-dep-of-std-dev librust-compiler-builtins-dev 2281s librust-const-oid-dev librust-const-random-dev 2281s librust-const-random-macro-dev librust-cpp-demangle-dev 2281s librust-crc32fast-dev librust-critical-section-dev 2281s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 2281s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 2281s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 2281s librust-either-dev librust-equivalent-dev librust-erased-serde-dev 2281s librust-errno-dev librust-fallible-iterator-dev librust-flate2-dev 2281s librust-generic-array-dev librust-getrandom-dev librust-gimli-dev 2281s librust-glob-dev librust-hashbrown-dev librust-heck-dev librust-indexmap-dev 2281s librust-is-executable-dev librust-itertools-dev librust-itoa-dev 2281s librust-jobserver-dev librust-libc-dev librust-libloading-dev 2281s librust-libz-sys-dev librust-linux-raw-sys-dev librust-log-dev 2281s librust-memchr-dev librust-memmap2-dev librust-minimal-lexical-dev 2281s librust-miniz-oxide-dev librust-no-panic-dev librust-nom+std-dev 2281s librust-nom-dev librust-object-dev librust-once-cell-dev 2281s librust-oxrocksdb-sys-dev librust-parking-lot-core-dev 2281s librust-pkg-config-dev librust-portable-atomic-dev librust-ppv-lite86-dev 2281s librust-prettyplease-dev librust-proc-macro2-dev librust-quote-dev 2281s librust-rand-chacha-dev librust-rand-core+getrandom-dev 2281s librust-rand-core+serde-dev librust-rand-core+std-dev librust-rand-core-dev 2281s librust-rand-dev librust-rayon-core-dev librust-rayon-dev 2281s librust-regex-automata-dev librust-regex-dev librust-regex-syntax-dev 2281s librust-rustc-demangle-dev librust-rustc-hash-dev 2281s librust-rustc-std-workspace-core-dev librust-rustix-dev librust-ruzstd-dev 2281s librust-ryu-dev librust-serde-derive-dev librust-serde-dev 2281s librust-serde-fmt-dev librust-serde-json-dev librust-serde-test-dev 2281s librust-shlex-dev librust-smallvec-dev librust-stable-deref-trait-dev 2281s librust-static-assertions-dev librust-strsim-dev librust-subtle-dev 2281s librust-sval-buffer-dev librust-sval-derive-dev librust-sval-dev 2281s librust-sval-dynamic-dev librust-sval-fmt-dev librust-sval-ref-dev 2281s librust-sval-serde-dev librust-syn-dev librust-terminal-size-dev 2281s librust-tiny-keccak-dev librust-twox-hash-dev librust-typed-arena-dev 2281s librust-typenum-dev librust-unicase-dev librust-unicode-ident-dev 2281s librust-unicode-segmentation-dev librust-unicode-width-0.1-dev 2281s librust-unicode-width-dev librust-utf8parse-dev librust-value-bag-dev 2281s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 2281s librust-version-check-dev librust-winapi-dev 2281s librust-winapi-i686-pc-windows-gnu-dev 2281s librust-winapi-x86-64-pc-windows-gnu-dev librust-zerocopy-derive-dev 2281s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 2281s libsnappy-dev libsnappy1v5 libstd-rust-1.83 libstd-rust-1.83-dev 2281s libstdc++-14-dev libtool libubsan1 libxxhash-dev libzstd-dev llvm llvm-19 2281s llvm-19-linker-tools llvm-19-runtime llvm-runtime m4 pkgconf pkgconf-bin 2281s po-debconf rustc rustc-1.83 zlib1g-dev 2282s 0 upgraded, 215 newly installed, 0 to remove and 0 not upgraded. 2282s Need to get 225 MB of archives. 2282s After this operation, 1191 MB of additional disk space will be used. 2282s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 2282s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 2282s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 2282s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 2282s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 2282s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 2282s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 2284s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 2287s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 2288s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 2288s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 2289s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 2289s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 2289s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 2289s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 2289s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 2289s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 2289s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 2289s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 2289s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 2289s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 2291s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 2291s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 2291s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 2291s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 2291s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-cpp19 s390x 1:19.1.7-1ubuntu1 [16.7 MB] 2293s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 2293s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgc1 s390x 1:8.2.8-1 [93.7 kB] 2293s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc4 s390x 14.2.0-17ubuntu1 [49.9 kB] 2293s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc-14-dev s390x 14.2.0-17ubuntu1 [194 kB] 2293s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-common-19-dev s390x 1:19.1.7-1ubuntu1 [742 kB] 2293s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-linker-tools s390x 1:19.1.7-1ubuntu1 [1546 kB] 2293s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x clang-19 s390x 1:19.1.7-1ubuntu1 [79.4 kB] 2293s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x clang s390x 1:19.0-63 [6198 B] 2293s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 2294s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 2294s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 2294s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 2294s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 2294s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 2294s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 2294s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 2294s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 2294s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 2294s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 2294s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 2294s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 2294s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 2294s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 2294s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.11 [16.4 kB] 2294s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 2294s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-19-dev s390x 1:19.1.7-1ubuntu1 [32.0 MB] 2298s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-dev s390x 1:19.0-63 [5770 B] 2298s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libgflags2.2 s390x 2.2.2-2build1 [71.7 kB] 2298s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libgflags-dev s390x 2.2.2-2build1 [102 kB] 2298s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 2298s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxxhash-dev s390x 0.8.2-2build1 [82.5 kB] 2298s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x liblz4-dev s390x 1.10.0-3 [110 kB] 2298s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 2298s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librocksdb9.10 s390x 9.10.0-1 [3610 kB] 2298s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy-dev s390x 1.2.1-1 [47.7 kB] 2298s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 2298s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 2298s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librocksdb-dev s390x 9.10.0-1 [5916 kB] 2299s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 2299s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 2299s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 2299s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 2299s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 2299s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 2299s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 2299s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 2299s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 2299s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 2299s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 2299s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 2299s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 2299s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 2299s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 2299s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 2299s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 2299s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 2299s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 2299s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 2299s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 2299s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 2299s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 2299s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 2299s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 2299s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 2299s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 2299s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 2299s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 2299s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 2299s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 2299s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 2299s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 2299s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 2299s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 2299s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 2299s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 2299s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 2300s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 2300s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 2300s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 2300s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 2300s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 2300s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 2300s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 2300s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 2300s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 2300s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 2300s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 2300s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 2300s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 2300s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 2300s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 2300s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 2300s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 2300s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 2300s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 2300s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 2300s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 2300s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 2300s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 2300s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 2300s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 2300s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 2300s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 2300s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 2300s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 2300s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 2300s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 2300s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 2300s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 2300s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 2300s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 2300s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 2300s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 2300s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 2300s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 2300s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 2300s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 2300s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 2300s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 2300s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 2300s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 2300s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 2300s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 2300s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 2300s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 2300s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 2300s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 2300s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 2300s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 2300s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 2300s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 2300s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 2300s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 2300s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-dev s390x 1.0.8-1 [16.7 kB] 2300s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-width-0.1-dev s390x 0.1.14-2 [196 kB] 2300s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-annotate-snippets-dev s390x 0.11.4-1 [39.6 kB] 2300s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arrayvec-dev s390x 0.7.6-1 [31.7 kB] 2301s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-utf8parse-dev s390x 0.2.1-1 [15.0 kB] 2301s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-parse-dev s390x 0.2.1-1 [17.1 kB] 2301s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-query-dev s390x 1.0.0-1 [9768 B] 2301s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-colorchoice-dev s390x 1.0.0-1 [8338 B] 2301s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstream-dev s390x 0.6.15-1 [25.7 kB] 2301s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 2301s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-derive-dev s390x 1.5.0-2 [18.7 kB] 2301s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-dev s390x 1.21.0-1 [48.9 kB] 2301s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-dev s390x 2.8.0-1 [43.5 kB] 2301s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-minimal-lexical-dev s390x 0.2.1-2 [87.0 kB] 2301s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom-dev s390x 7.1.3-1 [93.9 kB] 2301s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom+std-dev s390x 7.1.3-1 [1084 B] 2301s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cexpr-dev s390x 0.6.0-2 [19.6 kB] 2301s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-glob-dev s390x 0.3.2-1 [22.2 kB] 2301s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libloading-dev s390x 0.8.5-1 [29.2 kB] 2301s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-runtime s390x 1:19.1.7-1ubuntu1 [623 kB] 2301s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-runtime s390x 1:19.0-63 [5834 B] 2301s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x libpfm4 s390x 4.13.0+git83-g91970fe-1 [37.3 kB] 2301s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19 s390x 1:19.1.7-1ubuntu1 [21.1 MB] 2302s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm s390x 1:19.0-63 [4144 B] 2302s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clang-sys-dev s390x 1.8.1-3 [42.9 kB] 2302s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-lex-dev s390x 0.7.4-1 [14.7 kB] 2302s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-strsim-dev s390x 0.11.1-1 [15.9 kB] 2302s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+core-dev s390x 0.1.139-1 [1096 B] 2302s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+rustc-dep-of-std-dev s390x 0.1.139-1 [1106 B] 2302s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-errno-dev s390x 0.3.8-1 [13.0 kB] 2302s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-linux-raw-sys-dev s390x 0.4.14-1 [138 kB] 2302s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustix-dev s390x 0.38.37-1 [272 kB] 2302s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-terminal-size-dev s390x 0.3.0-2 [12.6 kB] 2302s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicase-dev s390x 2.8.0-1 [19.3 kB] 2302s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-width-dev s390x 0.2.0-1 [194 kB] 2302s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-builder-dev s390x 4.5.23-1 [136 kB] 2302s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-segmentation-dev s390x 1.12.0-1 [77.3 kB] 2302s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-heck-dev s390x 0.4.1-1 [13.3 kB] 2302s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-derive-dev s390x 4.5.18-1 [29.5 kB] 2302s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-dev s390x 4.5.23-1 [53.7 kB] 2302s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-i686-pc-windows-gnu-dev s390x 0.4.0-1 [3652 B] 2302s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-x86-64-pc-windows-gnu-dev s390x 0.4.0-1 [3660 B] 2302s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-dev s390x 0.3.9-1 [953 kB] 2303s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-is-executable-dev s390x 1.0.1-3 [11.7 kB] 2303s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 2303s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-complete-dev s390x 4.5.40-1 [40.5 kB] 2303s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itertools-dev s390x 0.13.0-3 [123 kB] 2303s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-prettyplease-dev s390x 0.2.6-1 [45.4 kB] 2303s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 2303s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 2303s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 2303s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hash-dev s390x 1.1.0-1 [10.8 kB] 2303s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bindgen-dev s390x 0.71.1-4 [195 kB] 2303s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 2303s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 2303s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oxrocksdb-sys-dev all 0.4.7-4build1 [11.4 kB] 2304s Fetched 225 MB in 22s (10.4 MB/s) 2304s Selecting previously unselected package m4. 2304s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 2304s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 2304s Unpacking m4 (1.4.19-5) ... 2304s Selecting previously unselected package autoconf. 2304s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 2304s Unpacking autoconf (2.72-3) ... 2304s Selecting previously unselected package autotools-dev. 2304s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 2304s Unpacking autotools-dev (20220109.1) ... 2304s Selecting previously unselected package automake. 2304s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 2304s Unpacking automake (1:1.17-3) ... 2304s Selecting previously unselected package autopoint. 2304s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 2304s Unpacking autopoint (0.23.1-1) ... 2304s Selecting previously unselected package libgit2-1.8:s390x. 2304s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 2304s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 2304s Selecting previously unselected package libstd-rust-1.83:s390x. 2304s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 2304s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2304s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 2304s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 2304s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2305s Selecting previously unselected package libisl23:s390x. 2305s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 2305s Unpacking libisl23:s390x (0.27-1) ... 2305s Selecting previously unselected package libmpc3:s390x. 2305s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 2305s Unpacking libmpc3:s390x (1.3.1-1build2) ... 2305s Selecting previously unselected package cpp-14-s390x-linux-gnu. 2305s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package cpp-14. 2305s Preparing to unpack .../011-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package cpp-s390x-linux-gnu. 2305s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 2305s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 2305s Selecting previously unselected package cpp. 2305s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 2305s Unpacking cpp (4:14.2.0-1ubuntu1) ... 2305s Selecting previously unselected package libcc1-0:s390x. 2305s Preparing to unpack .../014-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package libgomp1:s390x. 2305s Preparing to unpack .../015-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package libitm1:s390x. 2305s Preparing to unpack .../016-libitm1_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package libasan8:s390x. 2305s Preparing to unpack .../017-libasan8_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package libubsan1:s390x. 2305s Preparing to unpack .../018-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package libgcc-14-dev:s390x. 2305s Preparing to unpack .../019-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 2305s Selecting previously unselected package gcc-14-s390x-linux-gnu. 2305s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 2305s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 2306s Selecting previously unselected package gcc-14. 2306s Preparing to unpack .../021-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 2306s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 2306s Selecting previously unselected package gcc-s390x-linux-gnu. 2306s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 2306s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 2306s Selecting previously unselected package gcc. 2306s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 2306s Unpacking gcc (4:14.2.0-1ubuntu1) ... 2306s Selecting previously unselected package rustc-1.83. 2306s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 2306s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2306s Selecting previously unselected package libclang-cpp19. 2306s Preparing to unpack .../025-libclang-cpp19_1%3a19.1.7-1ubuntu1_s390x.deb ... 2306s Unpacking libclang-cpp19 (1:19.1.7-1ubuntu1) ... 2306s Selecting previously unselected package libstdc++-14-dev:s390x. 2306s Preparing to unpack .../026-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 2306s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 2306s Selecting previously unselected package libgc1:s390x. 2306s Preparing to unpack .../027-libgc1_1%3a8.2.8-1_s390x.deb ... 2306s Unpacking libgc1:s390x (1:8.2.8-1) ... 2306s Selecting previously unselected package libobjc4:s390x. 2306s Preparing to unpack .../028-libobjc4_14.2.0-17ubuntu1_s390x.deb ... 2306s Unpacking libobjc4:s390x (14.2.0-17ubuntu1) ... 2306s Selecting previously unselected package libobjc-14-dev:s390x. 2306s Preparing to unpack .../029-libobjc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 2306s Unpacking libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 2306s Selecting previously unselected package libclang-common-19-dev:s390x. 2306s Preparing to unpack .../030-libclang-common-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 2306s Unpacking libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 2306s Selecting previously unselected package llvm-19-linker-tools. 2306s Preparing to unpack .../031-llvm-19-linker-tools_1%3a19.1.7-1ubuntu1_s390x.deb ... 2306s Unpacking llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 2306s Selecting previously unselected package clang-19. 2306s Preparing to unpack .../032-clang-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 2306s Unpacking clang-19 (1:19.1.7-1ubuntu1) ... 2306s Selecting previously unselected package clang. 2306s Preparing to unpack .../033-clang_1%3a19.0-63_s390x.deb ... 2306s Unpacking clang (1:19.0-63) ... 2306s Selecting previously unselected package cargo-1.83. 2306s Preparing to unpack .../034-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 2306s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2306s Selecting previously unselected package libdebhelper-perl. 2306s Preparing to unpack .../035-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 2306s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 2306s Selecting previously unselected package libtool. 2306s Preparing to unpack .../036-libtool_2.5.4-3build1_all.deb ... 2306s Unpacking libtool (2.5.4-3build1) ... 2306s Selecting previously unselected package dh-autoreconf. 2306s Preparing to unpack .../037-dh-autoreconf_20_all.deb ... 2306s Unpacking dh-autoreconf (20) ... 2307s Selecting previously unselected package libarchive-zip-perl. 2307s Preparing to unpack .../038-libarchive-zip-perl_1.68-1_all.deb ... 2307s Unpacking libarchive-zip-perl (1.68-1) ... 2307s Selecting previously unselected package libfile-stripnondeterminism-perl. 2307s Preparing to unpack .../039-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 2307s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 2307s Selecting previously unselected package dh-strip-nondeterminism. 2307s Preparing to unpack .../040-dh-strip-nondeterminism_1.14.1-2_all.deb ... 2307s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 2307s Selecting previously unselected package debugedit. 2307s Preparing to unpack .../041-debugedit_1%3a5.1-2_s390x.deb ... 2307s Unpacking debugedit (1:5.1-2) ... 2307s Selecting previously unselected package dwz. 2307s Preparing to unpack .../042-dwz_0.15-1build6_s390x.deb ... 2307s Unpacking dwz (0.15-1build6) ... 2307s Selecting previously unselected package gettext. 2307s Preparing to unpack .../043-gettext_0.23.1-1_s390x.deb ... 2307s Unpacking gettext (0.23.1-1) ... 2307s Selecting previously unselected package intltool-debian. 2307s Preparing to unpack .../044-intltool-debian_0.35.0+20060710.6_all.deb ... 2307s Unpacking intltool-debian (0.35.0+20060710.6) ... 2307s Selecting previously unselected package po-debconf. 2307s Preparing to unpack .../045-po-debconf_1.0.21+nmu1_all.deb ... 2307s Unpacking po-debconf (1.0.21+nmu1) ... 2307s Selecting previously unselected package debhelper. 2307s Preparing to unpack .../046-debhelper_13.24.1ubuntu2_all.deb ... 2307s Unpacking debhelper (13.24.1ubuntu2) ... 2307s Selecting previously unselected package rustc. 2307s Preparing to unpack .../047-rustc_1.83.0ubuntu1_s390x.deb ... 2307s Unpacking rustc (1.83.0ubuntu1) ... 2307s Selecting previously unselected package cargo. 2307s Preparing to unpack .../048-cargo_1.83.0ubuntu1_s390x.deb ... 2307s Unpacking cargo (1.83.0ubuntu1) ... 2307s Selecting previously unselected package dh-rust. 2307s Preparing to unpack .../049-dh-rust_0.0.11_all.deb ... 2307s Unpacking dh-rust (0.0.11) ... 2307s Selecting previously unselected package libbz2-dev:s390x. 2307s Preparing to unpack .../050-libbz2-dev_1.0.8-6_s390x.deb ... 2307s Unpacking libbz2-dev:s390x (1.0.8-6) ... 2307s Selecting previously unselected package libclang-19-dev. 2307s Preparing to unpack .../051-libclang-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 2307s Unpacking libclang-19-dev (1:19.1.7-1ubuntu1) ... 2308s Selecting previously unselected package libclang-dev. 2308s Preparing to unpack .../052-libclang-dev_1%3a19.0-63_s390x.deb ... 2308s Unpacking libclang-dev (1:19.0-63) ... 2308s Selecting previously unselected package libgflags2.2. 2308s Preparing to unpack .../053-libgflags2.2_2.2.2-2build1_s390x.deb ... 2308s Unpacking libgflags2.2 (2.2.2-2build1) ... 2308s Selecting previously unselected package libgflags-dev. 2308s Preparing to unpack .../054-libgflags-dev_2.2.2-2build1_s390x.deb ... 2308s Unpacking libgflags-dev (2.2.2-2build1) ... 2308s Selecting previously unselected package libpkgconf3:s390x. 2308s Preparing to unpack .../055-libpkgconf3_1.8.1-4_s390x.deb ... 2308s Unpacking libpkgconf3:s390x (1.8.1-4) ... 2308s Selecting previously unselected package libxxhash-dev:s390x. 2308s Preparing to unpack .../056-libxxhash-dev_0.8.2-2build1_s390x.deb ... 2308s Unpacking libxxhash-dev:s390x (0.8.2-2build1) ... 2308s Selecting previously unselected package liblz4-dev:s390x. 2308s Preparing to unpack .../057-liblz4-dev_1.10.0-3_s390x.deb ... 2308s Unpacking liblz4-dev:s390x (1.10.0-3) ... 2308s Selecting previously unselected package libsnappy1v5:s390x. 2308s Preparing to unpack .../058-libsnappy1v5_1.2.1-1_s390x.deb ... 2308s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 2308s Selecting previously unselected package librocksdb9.10. 2308s Preparing to unpack .../059-librocksdb9.10_9.10.0-1_s390x.deb ... 2308s Unpacking librocksdb9.10 (9.10.0-1) ... 2308s Selecting previously unselected package libsnappy-dev:s390x. 2308s Preparing to unpack .../060-libsnappy-dev_1.2.1-1_s390x.deb ... 2308s Unpacking libsnappy-dev:s390x (1.2.1-1) ... 2308s Selecting previously unselected package libzstd-dev:s390x. 2308s Preparing to unpack .../061-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 2308s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 2308s Selecting previously unselected package zlib1g-dev:s390x. 2308s Preparing to unpack .../062-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 2308s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 2308s Selecting previously unselected package librocksdb-dev. 2308s Preparing to unpack .../063-librocksdb-dev_9.10.0-1_s390x.deb ... 2308s Unpacking librocksdb-dev (9.10.0-1) ... 2308s Selecting previously unselected package librust-cfg-if-dev:s390x. 2308s Preparing to unpack .../064-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 2308s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 2308s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 2308s Preparing to unpack .../065-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 2308s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 2308s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 2308s Preparing to unpack .../066-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 2308s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 2308s Selecting previously unselected package librust-unicode-ident-dev:s390x. 2308s Preparing to unpack .../067-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 2308s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 2308s Selecting previously unselected package librust-proc-macro2-dev:s390x. 2308s Preparing to unpack .../068-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 2308s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 2308s Selecting previously unselected package librust-quote-dev:s390x. 2308s Preparing to unpack .../069-librust-quote-dev_1.0.37-1_s390x.deb ... 2308s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 2308s Selecting previously unselected package librust-syn-dev:s390x. 2308s Preparing to unpack .../070-librust-syn-dev_2.0.96-2_s390x.deb ... 2308s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 2308s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 2308s Preparing to unpack .../071-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 2308s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 2308s Selecting previously unselected package librust-arbitrary-dev:s390x. 2308s Preparing to unpack .../072-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 2308s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 2308s Selecting previously unselected package librust-equivalent-dev:s390x. 2308s Preparing to unpack .../073-librust-equivalent-dev_1.0.1-1_s390x.deb ... 2308s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 2308s Selecting previously unselected package librust-critical-section-dev:s390x. 2308s Preparing to unpack .../074-librust-critical-section-dev_1.2.0-1_s390x.deb ... 2308s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 2308s Selecting previously unselected package librust-serde-derive-dev:s390x. 2308s Preparing to unpack .../075-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 2308s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 2308s Selecting previously unselected package librust-serde-dev:s390x. 2308s Preparing to unpack .../076-librust-serde-dev_1.0.217-1_s390x.deb ... 2308s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 2308s Selecting previously unselected package librust-portable-atomic-dev:s390x. 2308s Preparing to unpack .../077-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 2308s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 2308s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 2308s Preparing to unpack .../078-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 2308s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 2308s Selecting previously unselected package librust-libc-dev:s390x. 2308s Preparing to unpack .../079-librust-libc-dev_0.2.169-1_s390x.deb ... 2308s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 2308s Selecting previously unselected package librust-getrandom-dev:s390x. 2308s Preparing to unpack .../080-librust-getrandom-dev_0.2.15-1_s390x.deb ... 2308s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 2308s Selecting previously unselected package librust-smallvec-dev:s390x. 2308s Preparing to unpack .../081-librust-smallvec-dev_1.13.2-1_s390x.deb ... 2308s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 2308s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 2308s Preparing to unpack .../082-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 2308s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 2308s Selecting previously unselected package librust-once-cell-dev:s390x. 2308s Preparing to unpack .../083-librust-once-cell-dev_1.20.2-1_s390x.deb ... 2308s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 2308s Selecting previously unselected package librust-crunchy-dev:s390x. 2308s Preparing to unpack .../084-librust-crunchy-dev_0.2.2-1_s390x.deb ... 2308s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 2308s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 2308s Preparing to unpack .../085-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 2308s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 2308s Selecting previously unselected package librust-const-random-macro-dev:s390x. 2308s Preparing to unpack .../086-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 2308s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 2308s Selecting previously unselected package librust-const-random-dev:s390x. 2308s Preparing to unpack .../087-librust-const-random-dev_0.1.17-2_s390x.deb ... 2308s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 2308s Selecting previously unselected package librust-version-check-dev:s390x. 2308s Preparing to unpack .../088-librust-version-check-dev_0.9.5-1_s390x.deb ... 2308s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 2309s Selecting previously unselected package librust-byteorder-dev:s390x. 2309s Preparing to unpack .../089-librust-byteorder-dev_1.5.0-1_s390x.deb ... 2309s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 2309s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 2309s Preparing to unpack .../090-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 2309s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 2309s Selecting previously unselected package librust-zerocopy-dev:s390x. 2309s Preparing to unpack .../091-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 2309s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 2309s Selecting previously unselected package librust-ahash-dev. 2309s Preparing to unpack .../092-librust-ahash-dev_0.8.11-9_all.deb ... 2309s Unpacking librust-ahash-dev (0.8.11-9) ... 2309s Selecting previously unselected package librust-allocator-api2-dev:s390x. 2309s Preparing to unpack .../093-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 2309s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 2309s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 2309s Preparing to unpack .../094-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 2309s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 2309s Selecting previously unselected package librust-either-dev:s390x. 2309s Preparing to unpack .../095-librust-either-dev_1.13.0-1_s390x.deb ... 2309s Unpacking librust-either-dev:s390x (1.13.0-1) ... 2309s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 2309s Preparing to unpack .../096-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 2309s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 2309s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 2309s Preparing to unpack .../097-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 2309s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 2309s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 2309s Preparing to unpack .../098-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 2309s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 2309s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 2309s Preparing to unpack .../099-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 2309s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 2309s Selecting previously unselected package librust-rayon-core-dev:s390x. 2309s Preparing to unpack .../100-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 2309s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 2309s Selecting previously unselected package librust-rayon-dev:s390x. 2309s Preparing to unpack .../101-librust-rayon-dev_1.10.0-1_s390x.deb ... 2309s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 2309s Selecting previously unselected package librust-hashbrown-dev:s390x. 2309s Preparing to unpack .../102-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 2309s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 2309s Selecting previously unselected package librust-indexmap-dev:s390x. 2309s Preparing to unpack .../103-librust-indexmap-dev_2.7.0-1_s390x.deb ... 2309s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 2309s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 2309s Preparing to unpack .../104-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 2309s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 2309s Selecting previously unselected package librust-gimli-dev:s390x. 2309s Preparing to unpack .../105-librust-gimli-dev_0.31.1-2_s390x.deb ... 2309s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 2309s Selecting previously unselected package librust-memmap2-dev:s390x. 2309s Preparing to unpack .../106-librust-memmap2-dev_0.9.5-1_s390x.deb ... 2309s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 2309s Selecting previously unselected package librust-crc32fast-dev:s390x. 2309s Preparing to unpack .../107-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 2309s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 2309s Selecting previously unselected package pkgconf-bin. 2309s Preparing to unpack .../108-pkgconf-bin_1.8.1-4_s390x.deb ... 2309s Unpacking pkgconf-bin (1.8.1-4) ... 2309s Selecting previously unselected package pkgconf:s390x. 2309s Preparing to unpack .../109-pkgconf_1.8.1-4_s390x.deb ... 2309s Unpacking pkgconf:s390x (1.8.1-4) ... 2309s Selecting previously unselected package librust-pkg-config-dev:s390x. 2309s Preparing to unpack .../110-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 2309s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 2309s Selecting previously unselected package librust-libz-sys-dev:s390x. 2309s Preparing to unpack .../111-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 2309s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 2309s Selecting previously unselected package librust-adler-dev:s390x. 2309s Preparing to unpack .../112-librust-adler-dev_1.0.2-2_s390x.deb ... 2309s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 2309s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 2309s Preparing to unpack .../113-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 2309s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 2309s Selecting previously unselected package librust-flate2-dev:s390x. 2309s Preparing to unpack .../114-librust-flate2-dev_1.0.34-1_s390x.deb ... 2309s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 2309s Selecting previously unselected package librust-sval-derive-dev:s390x. 2309s Preparing to unpack .../115-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 2309s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 2309s Selecting previously unselected package librust-sval-dev:s390x. 2309s Preparing to unpack .../116-librust-sval-dev_2.6.1-2_s390x.deb ... 2309s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 2309s Selecting previously unselected package librust-sval-ref-dev:s390x. 2309s Preparing to unpack .../117-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 2309s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 2309s Selecting previously unselected package librust-erased-serde-dev:s390x. 2309s Preparing to unpack .../118-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 2309s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 2309s Selecting previously unselected package librust-serde-fmt-dev. 2309s Preparing to unpack .../119-librust-serde-fmt-dev_1.0.3-4_all.deb ... 2309s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 2309s Selecting previously unselected package librust-no-panic-dev:s390x. 2309s Preparing to unpack .../120-librust-no-panic-dev_0.1.32-1_s390x.deb ... 2309s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 2309s Selecting previously unselected package librust-itoa-dev:s390x. 2309s Preparing to unpack .../121-librust-itoa-dev_1.0.14-1_s390x.deb ... 2309s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 2309s Selecting previously unselected package librust-ryu-dev:s390x. 2309s Preparing to unpack .../122-librust-ryu-dev_1.0.19-1_s390x.deb ... 2309s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 2309s Selecting previously unselected package librust-serde-json-dev:s390x. 2309s Preparing to unpack .../123-librust-serde-json-dev_1.0.133-1_s390x.deb ... 2309s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 2309s Selecting previously unselected package librust-serde-test-dev:s390x. 2309s Preparing to unpack .../124-librust-serde-test-dev_1.0.171-1_s390x.deb ... 2309s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 2309s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 2309s Preparing to unpack .../125-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 2309s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 2309s Selecting previously unselected package librust-sval-buffer-dev:s390x. 2309s Preparing to unpack .../126-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 2309s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 2309s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 2309s Preparing to unpack .../127-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 2309s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 2309s Selecting previously unselected package librust-sval-fmt-dev:s390x. 2309s Preparing to unpack .../128-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 2309s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 2309s Selecting previously unselected package librust-sval-serde-dev:s390x. 2309s Preparing to unpack .../129-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 2309s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 2309s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 2309s Preparing to unpack .../130-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 2309s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 2309s Selecting previously unselected package librust-value-bag-dev:s390x. 2309s Preparing to unpack .../131-librust-value-bag-dev_1.9.0-1_s390x.deb ... 2309s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 2309s Selecting previously unselected package librust-log-dev:s390x. 2309s Preparing to unpack .../132-librust-log-dev_0.4.22-1_s390x.deb ... 2309s Unpacking librust-log-dev:s390x (0.4.22-1) ... 2309s Selecting previously unselected package librust-memchr-dev:s390x. 2309s Preparing to unpack .../133-librust-memchr-dev_2.7.4-1_s390x.deb ... 2309s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 2309s Selecting previously unselected package librust-blobby-dev:s390x. 2309s Preparing to unpack .../134-librust-blobby-dev_0.3.1-1_s390x.deb ... 2309s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 2309s Selecting previously unselected package librust-typenum-dev:s390x. 2309s Preparing to unpack .../135-librust-typenum-dev_1.17.0-2_s390x.deb ... 2309s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 2309s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 2309s Preparing to unpack .../136-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 2309s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 2309s Selecting previously unselected package librust-zeroize-dev:s390x. 2309s Preparing to unpack .../137-librust-zeroize-dev_1.8.1-1_s390x.deb ... 2309s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 2309s Selecting previously unselected package librust-generic-array-dev:s390x. 2309s Preparing to unpack .../138-librust-generic-array-dev_0.14.7-1_s390x.deb ... 2309s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 2309s Selecting previously unselected package librust-block-buffer-dev:s390x. 2309s Preparing to unpack .../139-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 2309s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 2309s Selecting previously unselected package librust-const-oid-dev:s390x. 2309s Preparing to unpack .../140-librust-const-oid-dev_0.9.6-1_s390x.deb ... 2309s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 2309s Selecting previously unselected package librust-rand-core-dev:s390x. 2309s Preparing to unpack .../141-librust-rand-core-dev_0.6.4-2_s390x.deb ... 2309s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 2309s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 2309s Preparing to unpack .../142-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 2309s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 2309s Selecting previously unselected package librust-crypto-common-dev:s390x. 2309s Preparing to unpack .../143-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 2309s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 2309s Selecting previously unselected package librust-subtle-dev:s390x. 2309s Preparing to unpack .../144-librust-subtle-dev_2.6.1-1_s390x.deb ... 2309s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 2309s Selecting previously unselected package librust-digest-dev:s390x. 2309s Preparing to unpack .../145-librust-digest-dev_0.10.7-2_s390x.deb ... 2309s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 2309s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 2309s Preparing to unpack .../146-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 2309s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 2309s Selecting previously unselected package librust-rand-chacha-dev:s390x. 2309s Preparing to unpack .../147-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 2309s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 2309s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 2309s Preparing to unpack .../148-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 2309s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 2309s Selecting previously unselected package librust-rand-core+std-dev:s390x. 2309s Preparing to unpack .../149-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 2309s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 2309s Selecting previously unselected package librust-rand-dev:s390x. 2309s Preparing to unpack .../150-librust-rand-dev_0.8.5-1_s390x.deb ... 2309s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 2309s Selecting previously unselected package librust-static-assertions-dev:s390x. 2309s Preparing to unpack .../151-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 2309s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 2309s Selecting previously unselected package librust-twox-hash-dev:s390x. 2309s Preparing to unpack .../152-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 2309s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 2309s Selecting previously unselected package librust-ruzstd-dev:s390x. 2309s Preparing to unpack .../153-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 2309s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 2309s Selecting previously unselected package librust-object-dev:s390x. 2309s Preparing to unpack .../154-librust-object-dev_0.36.5-2_s390x.deb ... 2309s Unpacking librust-object-dev:s390x (0.36.5-2) ... 2309s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 2309s Preparing to unpack .../155-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 2309s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 2309s Selecting previously unselected package librust-typed-arena-dev:s390x. 2309s Preparing to unpack .../156-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 2309s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 2310s Selecting previously unselected package librust-addr2line-dev:s390x. 2310s Preparing to unpack .../157-librust-addr2line-dev_0.24.2-2_s390x.deb ... 2310s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 2310s Selecting previously unselected package librust-aho-corasick-dev:s390x. 2310s Preparing to unpack .../158-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 2310s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 2310s Selecting previously unselected package librust-anstyle-dev:s390x. 2310s Preparing to unpack .../159-librust-anstyle-dev_1.0.8-1_s390x.deb ... 2310s Unpacking librust-anstyle-dev:s390x (1.0.8-1) ... 2310s Selecting previously unselected package librust-unicode-width-0.1-dev:s390x. 2310s Preparing to unpack .../160-librust-unicode-width-0.1-dev_0.1.14-2_s390x.deb ... 2310s Unpacking librust-unicode-width-0.1-dev:s390x (0.1.14-2) ... 2310s Selecting previously unselected package librust-annotate-snippets-dev:s390x. 2310s Preparing to unpack .../161-librust-annotate-snippets-dev_0.11.4-1_s390x.deb ... 2310s Unpacking librust-annotate-snippets-dev:s390x (0.11.4-1) ... 2310s Selecting previously unselected package librust-arrayvec-dev:s390x. 2310s Preparing to unpack .../162-librust-arrayvec-dev_0.7.6-1_s390x.deb ... 2310s Unpacking librust-arrayvec-dev:s390x (0.7.6-1) ... 2310s Selecting previously unselected package librust-utf8parse-dev:s390x. 2310s Preparing to unpack .../163-librust-utf8parse-dev_0.2.1-1_s390x.deb ... 2310s Unpacking librust-utf8parse-dev:s390x (0.2.1-1) ... 2310s Selecting previously unselected package librust-anstyle-parse-dev:s390x. 2310s Preparing to unpack .../164-librust-anstyle-parse-dev_0.2.1-1_s390x.deb ... 2310s Unpacking librust-anstyle-parse-dev:s390x (0.2.1-1) ... 2310s Selecting previously unselected package librust-anstyle-query-dev:s390x. 2310s Preparing to unpack .../165-librust-anstyle-query-dev_1.0.0-1_s390x.deb ... 2310s Unpacking librust-anstyle-query-dev:s390x (1.0.0-1) ... 2310s Selecting previously unselected package librust-colorchoice-dev:s390x. 2310s Preparing to unpack .../166-librust-colorchoice-dev_1.0.0-1_s390x.deb ... 2310s Unpacking librust-colorchoice-dev:s390x (1.0.0-1) ... 2310s Selecting previously unselected package librust-anstream-dev:s390x. 2310s Preparing to unpack .../167-librust-anstream-dev_0.6.15-1_s390x.deb ... 2310s Unpacking librust-anstream-dev:s390x (0.6.15-1) ... 2310s Selecting previously unselected package librust-backtrace-dev:s390x. 2310s Preparing to unpack .../168-librust-backtrace-dev_0.3.74-3_s390x.deb ... 2310s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 2310s Selecting previously unselected package librust-bytemuck-derive-dev:s390x. 2310s Preparing to unpack .../169-librust-bytemuck-derive-dev_1.5.0-2_s390x.deb ... 2310s Unpacking librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 2310s Selecting previously unselected package librust-bytemuck-dev:s390x. 2310s Preparing to unpack .../170-librust-bytemuck-dev_1.21.0-1_s390x.deb ... 2310s Unpacking librust-bytemuck-dev:s390x (1.21.0-1) ... 2310s Selecting previously unselected package librust-bitflags-dev:s390x. 2310s Preparing to unpack .../171-librust-bitflags-dev_2.8.0-1_s390x.deb ... 2310s Unpacking librust-bitflags-dev:s390x (2.8.0-1) ... 2310s Selecting previously unselected package librust-minimal-lexical-dev:s390x. 2310s Preparing to unpack .../172-librust-minimal-lexical-dev_0.2.1-2_s390x.deb ... 2310s Unpacking librust-minimal-lexical-dev:s390x (0.2.1-2) ... 2310s Selecting previously unselected package librust-nom-dev:s390x. 2310s Preparing to unpack .../173-librust-nom-dev_7.1.3-1_s390x.deb ... 2310s Unpacking librust-nom-dev:s390x (7.1.3-1) ... 2310s Selecting previously unselected package librust-nom+std-dev:s390x. 2310s Preparing to unpack .../174-librust-nom+std-dev_7.1.3-1_s390x.deb ... 2310s Unpacking librust-nom+std-dev:s390x (7.1.3-1) ... 2310s Selecting previously unselected package librust-cexpr-dev:s390x. 2310s Preparing to unpack .../175-librust-cexpr-dev_0.6.0-2_s390x.deb ... 2310s Unpacking librust-cexpr-dev:s390x (0.6.0-2) ... 2310s Selecting previously unselected package librust-glob-dev:s390x. 2310s Preparing to unpack .../176-librust-glob-dev_0.3.2-1_s390x.deb ... 2310s Unpacking librust-glob-dev:s390x (0.3.2-1) ... 2310s Selecting previously unselected package librust-libloading-dev:s390x. 2310s Preparing to unpack .../177-librust-libloading-dev_0.8.5-1_s390x.deb ... 2310s Unpacking librust-libloading-dev:s390x (0.8.5-1) ... 2310s Selecting previously unselected package llvm-19-runtime. 2310s Preparing to unpack .../178-llvm-19-runtime_1%3a19.1.7-1ubuntu1_s390x.deb ... 2310s Unpacking llvm-19-runtime (1:19.1.7-1ubuntu1) ... 2310s Selecting previously unselected package llvm-runtime:s390x. 2310s Preparing to unpack .../179-llvm-runtime_1%3a19.0-63_s390x.deb ... 2310s Unpacking llvm-runtime:s390x (1:19.0-63) ... 2310s Selecting previously unselected package libpfm4:s390x. 2310s Preparing to unpack .../180-libpfm4_4.13.0+git83-g91970fe-1_s390x.deb ... 2310s Unpacking libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 2310s Selecting previously unselected package llvm-19. 2310s Preparing to unpack .../181-llvm-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 2310s Unpacking llvm-19 (1:19.1.7-1ubuntu1) ... 2310s Selecting previously unselected package llvm. 2310s Preparing to unpack .../182-llvm_1%3a19.0-63_s390x.deb ... 2310s Unpacking llvm (1:19.0-63) ... 2310s Selecting previously unselected package librust-clang-sys-dev:s390x. 2310s Preparing to unpack .../183-librust-clang-sys-dev_1.8.1-3_s390x.deb ... 2310s Unpacking librust-clang-sys-dev:s390x (1.8.1-3) ... 2310s Selecting previously unselected package librust-clap-lex-dev:s390x. 2310s Preparing to unpack .../184-librust-clap-lex-dev_0.7.4-1_s390x.deb ... 2310s Unpacking librust-clap-lex-dev:s390x (0.7.4-1) ... 2310s Selecting previously unselected package librust-strsim-dev:s390x. 2310s Preparing to unpack .../185-librust-strsim-dev_0.11.1-1_s390x.deb ... 2310s Unpacking librust-strsim-dev:s390x (0.11.1-1) ... 2310s Selecting previously unselected package librust-compiler-builtins+core-dev:s390x. 2310s Preparing to unpack .../186-librust-compiler-builtins+core-dev_0.1.139-1_s390x.deb ... 2310s Unpacking librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 2310s Selecting previously unselected package librust-compiler-builtins+rustc-dep-of-std-dev:s390x. 2310s Preparing to unpack .../187-librust-compiler-builtins+rustc-dep-of-std-dev_0.1.139-1_s390x.deb ... 2310s Unpacking librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 2310s Selecting previously unselected package librust-errno-dev:s390x. 2310s Preparing to unpack .../188-librust-errno-dev_0.3.8-1_s390x.deb ... 2310s Unpacking librust-errno-dev:s390x (0.3.8-1) ... 2310s Selecting previously unselected package librust-linux-raw-sys-dev:s390x. 2310s Preparing to unpack .../189-librust-linux-raw-sys-dev_0.4.14-1_s390x.deb ... 2310s Unpacking librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 2310s Selecting previously unselected package librust-rustix-dev:s390x. 2310s Preparing to unpack .../190-librust-rustix-dev_0.38.37-1_s390x.deb ... 2310s Unpacking librust-rustix-dev:s390x (0.38.37-1) ... 2310s Selecting previously unselected package librust-terminal-size-dev:s390x. 2310s Preparing to unpack .../191-librust-terminal-size-dev_0.3.0-2_s390x.deb ... 2310s Unpacking librust-terminal-size-dev:s390x (0.3.0-2) ... 2310s Selecting previously unselected package librust-unicase-dev:s390x. 2310s Preparing to unpack .../192-librust-unicase-dev_2.8.0-1_s390x.deb ... 2310s Unpacking librust-unicase-dev:s390x (2.8.0-1) ... 2311s Selecting previously unselected package librust-unicode-width-dev:s390x. 2311s Preparing to unpack .../193-librust-unicode-width-dev_0.2.0-1_s390x.deb ... 2311s Unpacking librust-unicode-width-dev:s390x (0.2.0-1) ... 2311s Selecting previously unselected package librust-clap-builder-dev:s390x. 2311s Preparing to unpack .../194-librust-clap-builder-dev_4.5.23-1_s390x.deb ... 2311s Unpacking librust-clap-builder-dev:s390x (4.5.23-1) ... 2311s Selecting previously unselected package librust-unicode-segmentation-dev:s390x. 2311s Preparing to unpack .../195-librust-unicode-segmentation-dev_1.12.0-1_s390x.deb ... 2311s Unpacking librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 2311s Selecting previously unselected package librust-heck-dev:s390x. 2311s Preparing to unpack .../196-librust-heck-dev_0.4.1-1_s390x.deb ... 2311s Unpacking librust-heck-dev:s390x (0.4.1-1) ... 2311s Selecting previously unselected package librust-clap-derive-dev:s390x. 2311s Preparing to unpack .../197-librust-clap-derive-dev_4.5.18-1_s390x.deb ... 2311s Unpacking librust-clap-derive-dev:s390x (4.5.18-1) ... 2311s Selecting previously unselected package librust-clap-dev:s390x. 2311s Preparing to unpack .../198-librust-clap-dev_4.5.23-1_s390x.deb ... 2311s Unpacking librust-clap-dev:s390x (4.5.23-1) ... 2311s Selecting previously unselected package librust-winapi-i686-pc-windows-gnu-dev:s390x. 2311s Preparing to unpack .../199-librust-winapi-i686-pc-windows-gnu-dev_0.4.0-1_s390x.deb ... 2311s Unpacking librust-winapi-i686-pc-windows-gnu-dev:s390x (0.4.0-1) ... 2311s Selecting previously unselected package librust-winapi-x86-64-pc-windows-gnu-dev:s390x. 2311s Preparing to unpack .../200-librust-winapi-x86-64-pc-windows-gnu-dev_0.4.0-1_s390x.deb ... 2311s Unpacking librust-winapi-x86-64-pc-windows-gnu-dev:s390x (0.4.0-1) ... 2311s Selecting previously unselected package librust-winapi-dev:s390x. 2311s Preparing to unpack .../201-librust-winapi-dev_0.3.9-1_s390x.deb ... 2311s Unpacking librust-winapi-dev:s390x (0.3.9-1) ... 2311s Selecting previously unselected package librust-is-executable-dev:s390x. 2311s Preparing to unpack .../202-librust-is-executable-dev_1.0.1-3_s390x.deb ... 2311s Unpacking librust-is-executable-dev:s390x (1.0.1-3) ... 2311s Selecting previously unselected package librust-shlex-dev:s390x. 2311s Preparing to unpack .../203-librust-shlex-dev_1.3.0-1_s390x.deb ... 2311s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 2311s Selecting previously unselected package librust-clap-complete-dev:s390x. 2311s Preparing to unpack .../204-librust-clap-complete-dev_4.5.40-1_s390x.deb ... 2311s Unpacking librust-clap-complete-dev:s390x (4.5.40-1) ... 2311s Selecting previously unselected package librust-itertools-dev:s390x. 2311s Preparing to unpack .../205-librust-itertools-dev_0.13.0-3_s390x.deb ... 2311s Unpacking librust-itertools-dev:s390x (0.13.0-3) ... 2311s Selecting previously unselected package librust-prettyplease-dev:s390x. 2311s Preparing to unpack .../206-librust-prettyplease-dev_0.2.6-1_s390x.deb ... 2311s Unpacking librust-prettyplease-dev:s390x (0.2.6-1) ... 2311s Selecting previously unselected package librust-regex-syntax-dev:s390x. 2311s Preparing to unpack .../207-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 2311s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 2311s Selecting previously unselected package librust-regex-automata-dev:s390x. 2311s Preparing to unpack .../208-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 2311s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 2311s Selecting previously unselected package librust-regex-dev:s390x. 2311s Preparing to unpack .../209-librust-regex-dev_1.11.1-2_s390x.deb ... 2311s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 2311s Selecting previously unselected package librust-rustc-hash-dev:s390x. 2311s Preparing to unpack .../210-librust-rustc-hash-dev_1.1.0-1_s390x.deb ... 2311s Unpacking librust-rustc-hash-dev:s390x (1.1.0-1) ... 2311s Selecting previously unselected package librust-bindgen-dev:s390x. 2311s Preparing to unpack .../211-librust-bindgen-dev_0.71.1-4_s390x.deb ... 2311s Unpacking librust-bindgen-dev:s390x (0.71.1-4) ... 2311s Selecting previously unselected package librust-jobserver-dev:s390x. 2311s Preparing to unpack .../212-librust-jobserver-dev_0.1.32-1_s390x.deb ... 2311s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 2311s Selecting previously unselected package librust-cc-dev:s390x. 2311s Preparing to unpack .../213-librust-cc-dev_1.1.14-1_s390x.deb ... 2311s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 2311s Selecting previously unselected package librust-oxrocksdb-sys-dev. 2311s Preparing to unpack .../214-librust-oxrocksdb-sys-dev_0.4.7-4build1_all.deb ... 2311s Unpacking librust-oxrocksdb-sys-dev (0.4.7-4build1) ... 2311s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 2311s Setting up librust-either-dev:s390x (1.13.0-1) ... 2311s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 2311s Setting up librust-adler-dev:s390x (1.0.2-2) ... 2311s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 2311s Setting up librust-anstyle-dev:s390x (1.0.8-1) ... 2311s Setting up librust-winapi-i686-pc-windows-gnu-dev:s390x (0.4.0-1) ... 2311s Setting up libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 2311s Setting up librust-rustc-hash-dev:s390x (1.1.0-1) ... 2311s Setting up libarchive-zip-perl (1.68-1) ... 2311s Setting up librust-colorchoice-dev:s390x (1.0.0-1) ... 2311s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 2311s Setting up librust-glob-dev:s390x (0.3.2-1) ... 2311s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 2311s Setting up librust-strsim-dev:s390x (0.11.1-1) ... 2311s Setting up m4 (1.4.19-5) ... 2311s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 2311s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 2311s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 2311s Setting up librust-anstyle-query-dev:s390x (1.0.0-1) ... 2311s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 2311s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 2311s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 2311s Setting up libsnappy1v5:s390x (1.2.1-1) ... 2311s Setting up librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 2311s Setting up librust-unicode-width-0.1-dev:s390x (0.1.14-2) ... 2311s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 2311s Setting up librust-utf8parse-dev:s390x (0.2.1-1) ... 2311s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 2311s Setting up autotools-dev (20220109.1) ... 2311s Setting up libpkgconf3:s390x (1.8.1-4) ... 2311s Setting up libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 2311s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 2311s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 2311s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 2311s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 2311s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 2311s Setting up libmpc3:s390x (1.3.1-1build2) ... 2311s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 2311s Setting up autopoint (0.23.1-1) ... 2311s Setting up pkgconf-bin (1.8.1-4) ... 2311s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 2311s Setting up libgc1:s390x (1:8.2.8-1) ... 2311s Setting up librust-unicase-dev:s390x (2.8.0-1) ... 2311s Setting up librust-unicode-width-dev:s390x (0.2.0-1) ... 2311s Setting up autoconf (2.72-3) ... 2311s Setting up libxxhash-dev:s390x (0.8.2-2build1) ... 2311s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 2311s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 2311s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 2311s Setting up librust-minimal-lexical-dev:s390x (0.2.1-2) ... 2311s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 2311s Setting up dwz (0.15-1build6) ... 2311s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 2311s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 2311s Setting up debugedit (1:5.1-2) ... 2311s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 2311s Setting up llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 2311s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 2311s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 2311s Setting up librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 2311s Setting up libisl23:s390x (0.27-1) ... 2311s Setting up llvm-19-runtime (1:19.1.7-1ubuntu1) ... 2311s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2311s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 2311s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 2311s Setting up librust-winapi-x86-64-pc-windows-gnu-dev:s390x (0.4.0-1) ... 2311s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 2311s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 2311s Setting up librust-clap-lex-dev:s390x (0.7.4-1) ... 2311s Setting up libclang-cpp19 (1:19.1.7-1ubuntu1) ... 2311s Setting up libgflags2.2 (2.2.2-2build1) ... 2311s Setting up librust-itertools-dev:s390x (0.13.0-3) ... 2311s Setting up librust-heck-dev:s390x (0.4.1-1) ... 2311s Setting up libbz2-dev:s390x (1.0.8-6) ... 2311s Setting up automake (1:1.17-3) ... 2311s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 2311s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 2311s Setting up librust-annotate-snippets-dev:s390x (0.11.4-1) ... 2311s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 2311s Setting up librust-libc-dev:s390x (0.2.169-1) ... 2311s Setting up gettext (0.23.1-1) ... 2311s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 2311s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 2311s Setting up librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 2311s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 2311s Setting up librust-libloading-dev:s390x (0.8.5-1) ... 2311s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 2311s Setting up libsnappy-dev:s390x (1.2.1-1) ... 2311s Setting up libobjc4:s390x (14.2.0-17ubuntu1) ... 2311s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 2311s Setting up librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 2311s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 2311s Setting up librust-winapi-dev:s390x (0.3.9-1) ... 2311s Setting up pkgconf:s390x (1.8.1-4) ... 2311s Setting up intltool-debian (0.35.0+20060710.6) ... 2311s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 2311s Setting up librust-errno-dev:s390x (0.3.8-1) ... 2311s Setting up llvm-runtime:s390x (1:19.0-63) ... 2311s Setting up libgflags-dev (2.2.2-2build1) ... 2311s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 2311s Setting up liblz4-dev:s390x (1.10.0-3) ... 2311s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 2311s Setting up cpp-14 (14.2.0-17ubuntu1) ... 2311s Setting up dh-strip-nondeterminism (1.14.1-2) ... 2311s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 2311s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2311s Setting up llvm-19 (1:19.1.7-1ubuntu1) ... 2311s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 2311s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 2311s Setting up librust-is-executable-dev:s390x (1.0.1-3) ... 2311s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 2311s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 2311s Setting up librocksdb9.10 (9.10.0-1) ... 2311s Setting up librocksdb-dev (9.10.0-1) ... 2311s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 2311s Setting up po-debconf (1.0.21+nmu1) ... 2311s Setting up librust-quote-dev:s390x (1.0.37-1) ... 2311s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 2311s Setting up librust-syn-dev:s390x (2.0.96-2) ... 2311s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 2311s Setting up libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 2311s Setting up clang-19 (1:19.1.7-1ubuntu1) ... 2311s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 2311s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 2311s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 2311s Setting up clang (1:19.0-63) ... 2311s Setting up librust-cc-dev:s390x (1.1.14-1) ... 2311s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 2311s Setting up llvm (1:19.0-63) ... 2311s Setting up librust-clap-derive-dev:s390x (4.5.18-1) ... 2311s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 2311s Setting up cpp (4:14.2.0-1ubuntu1) ... 2311s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 2311s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 2311s Setting up libclang-19-dev (1:19.1.7-1ubuntu1) ... 2311s Setting up librust-serde-dev:s390x (1.0.217-1) ... 2311s Setting up librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 2311s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 2311s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 2311s Setting up librust-prettyplease-dev:s390x (0.2.6-1) ... 2311s Setting up libclang-dev (1:19.0-63) ... 2311s Setting up librust-serde-fmt-dev (1.0.3-4) ... 2311s Setting up libtool (2.5.4-3build1) ... 2311s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 2311s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 2311s Setting up librust-sval-dev:s390x (2.6.1-2) ... 2311s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 2311s Setting up gcc-14 (14.2.0-17ubuntu1) ... 2311s Setting up dh-autoreconf (20) ... 2311s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 2311s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 2311s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 2311s Setting up librust-bytemuck-dev:s390x (1.21.0-1) ... 2311s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 2311s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 2311s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 2311s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 2311s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 2311s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 2311s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 2311s Setting up librust-clang-sys-dev:s390x (1.8.1-3) ... 2311s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 2311s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 2311s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 2311s Setting up librust-arrayvec-dev:s390x (0.7.6-1) ... 2311s Setting up debhelper (13.24.1ubuntu2) ... 2311s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 2311s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 2311s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 2311s Setting up gcc (4:14.2.0-1ubuntu1) ... 2311s Setting up librust-anstyle-parse-dev:s390x (0.2.1-1) ... 2311s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 2311s Setting up librust-anstream-dev:s390x (0.6.15-1) ... 2311s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2311s Setting up librust-bitflags-dev:s390x (2.8.0-1) ... 2311s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 2311s Setting up rustc (1.83.0ubuntu1) ... 2311s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 2311s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 2311s Setting up librust-digest-dev:s390x (0.10.7-2) ... 2311s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 2311s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 2311s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 2311s Setting up librust-ahash-dev (0.8.11-9) ... 2311s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 2311s Setting up librust-rustix-dev:s390x (0.38.37-1) ... 2311s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 2311s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 2311s Setting up cargo (1.83.0ubuntu1) ... 2311s Setting up librust-terminal-size-dev:s390x (0.3.0-2) ... 2311s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 2311s Setting up dh-rust (0.0.11) ... 2311s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 2311s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 2311s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 2311s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 2311s Setting up librust-log-dev:s390x (0.4.22-1) ... 2311s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 2311s Setting up librust-nom-dev:s390x (7.1.3-1) ... 2311s Setting up librust-rand-dev:s390x (0.8.5-1) ... 2311s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 2311s Setting up librust-nom+std-dev:s390x (7.1.3-1) ... 2311s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 2311s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 2311s Setting up librust-cexpr-dev:s390x (0.6.0-2) ... 2311s Setting up librust-object-dev:s390x (0.36.5-2) ... 2311s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 2311s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 2311s Setting up librust-regex-dev:s390x (1.11.1-2) ... 2311s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 2311s Setting up librust-clap-builder-dev:s390x (4.5.23-1) ... 2311s Setting up librust-clap-dev:s390x (4.5.23-1) ... 2311s Setting up librust-clap-complete-dev:s390x (4.5.40-1) ... 2311s Setting up librust-bindgen-dev:s390x (0.71.1-4) ... 2311s Setting up librust-oxrocksdb-sys-dev (0.4.7-4build1) ... 2311s Processing triggers for install-info (7.1.1-1) ... 2311s Processing triggers for libc-bin (2.41-1ubuntu1) ... 2311s Processing triggers for systemd (257.2-3ubuntu1) ... 2311s Processing triggers for man-db (2.13.0-1) ... 2312s autopkgtest: DBG: testbed command exited with code 0 2312s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-packages.all"], kind short, sout raw, serr pipe, env [] 2312s autopkgtest: DBG: testbed command exited with code 0 2312s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys%3Adefault-packages.all /tmp/autopkgtest-work.14s59fnj/out/rust-oxrocksdb-sys%3Adefault-packages.all 2312s autopkgtest: DBG: got reply from testbed: ok 2312s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 2312s autopkgtest: DBG: testbed command exited with code 1 2312s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 2312s autopkgtest: DBG: testbed command exited with code 0 2312s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 2313s autopkgtest: DBG: got reply from testbed: ok 2313s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 2313s autopkgtest: DBG: testbed command exited with code 0 2313s autopkgtest [02:05:26]: test rust-oxrocksdb-sys:default: /usr/share/dh-rust/bin/cargo-auto-test oxrocksdb-sys 0.4.7 --all-targets 2313s autopkgtest [02:05:26]: test rust-oxrocksdb-sys:default: [----------------------- 2313s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-stderr --stdout=/tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test oxrocksdb-sys 0.4.7 --all-targets'"], kind test, sout raw, serr raw, env [] 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-artifacts 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-stderr 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-stdout 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test oxrocksdb-sys 0.4.7 --all-targets 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.UPXIjTLrNs/out to stdout and file: /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-stdout 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.UPXIjTLrNs/err to standard error and file: /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-stdout 2314s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 3310 to /tmp/autopkgtest_script_pid 2314s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 2314s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 2314s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.3fb3FCho8B/registry/ 2314s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 2314s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 2314s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 2314s Compiling libc v0.2.169 2314s Compiling proc-macro2 v1.0.92 2314s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.3fb3FCho8B/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2314s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2314s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7e8f0a655396b248 -C extra-filename=-7e8f0a655396b248 --out-dir /tmp/tmp.3fb3FCho8B/target/release/build/libc-7e8f0a655396b248 -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2314s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/release/deps:/tmp/tmp.3fb3FCho8B/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.3fb3FCho8B/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 2314s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 2314s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 2314s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2314s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/release/deps:/tmp/tmp.3fb3FCho8B/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/libc-6f469c538341475d/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.3fb3FCho8B/target/release/build/libc-7e8f0a655396b248/build-script-build` 2314s [libc 0.2.169] cargo:rerun-if-changed=build.rs 2314s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 2314s [libc 0.2.169] cargo:rustc-cfg=freebsd11 2314s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 2314s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 2314s Compiling glob v0.3.2 2314s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=glob CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/glob-0.3.2 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/glob-0.3.2/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Support for matching file paths against Unix shell style patterns. 2314s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/glob' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glob CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/glob' CARGO_PKG_RUST_VERSION=1.23.0 CARGO_PKG_VERSION=0.3.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/glob-0.3.2 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name glob --edition=2015 /tmp/tmp.3fb3FCho8B/registry/glob-0.3.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9c18cba999f4108b -C extra-filename=-9c18cba999f4108b --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2314s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 2314s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 2314s Compiling unicode-ident v1.0.13 2314s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.3fb3FCho8B/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2314s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.3fb3FCho8B/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern unicode_ident=/tmp/tmp.3fb3FCho8B/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 2315s Compiling clang-sys v1.8.1 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/Cargo.toml CARGO_PKG_AUTHORS='Kyle Mayes ' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clang_10_0"' --cfg 'feature="clang_11_0"' --cfg 'feature="clang_3_5"' --cfg 'feature="clang_3_6"' --cfg 'feature="clang_3_7"' --cfg 'feature="clang_3_8"' --cfg 'feature="clang_3_9"' --cfg 'feature="clang_4_0"' --cfg 'feature="clang_5_0"' --cfg 'feature="clang_6_0"' --cfg 'feature="clang_7_0"' --cfg 'feature="clang_8_0"' --cfg 'feature="clang_9_0"' --cfg 'feature="libloading"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clang_10_0", "clang_11_0", "clang_12_0", "clang_13_0", "clang_14_0", "clang_15_0", "clang_16_0", "clang_17_0", "clang_18_0", "clang_3_5", "clang_3_6", "clang_3_7", "clang_3_8", "clang_3_9", "clang_4_0", "clang_5_0", "clang_6_0", "clang_7_0", "clang_8_0", "clang_9_0", "libcpp", "libloading", "runtime", "static"))' -C metadata=23a0f1ab030d2056 -C extra-filename=-23a0f1ab030d2056 --out-dir /tmp/tmp.3fb3FCho8B/target/release/build/clang-sys-23a0f1ab030d2056 -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern glob=/tmp/tmp.3fb3FCho8B/target/release/deps/libglob-9c18cba999f4108b.rlib --cap-lints warn` 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2315s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/libc-6f469c538341475d/out rustc --crate-name libc --edition=2021 /tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7fc068eb0b53bf93 -C extra-filename=-7fc068eb0b53bf93 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 2315s Compiling prettyplease v0.2.6 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='A minimal `syn` syntax tree pretty-printer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=prettyplease CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/prettyplease' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="verbatim"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("verbatim"))' -C metadata=a49e8000bfcf5139 -C extra-filename=-a49e8000bfcf5139 --out-dir /tmp/tmp.3fb3FCho8B/target/release/build/prettyplease-a49e8000bfcf5139 -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2315s warning: unused import: `crate::ntptimeval` 2315s --> /tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 2315s | 2315s 5 | use crate::ntptimeval; 2315s | ^^^^^^^^^^^^^^^^^ 2315s | 2315s = note: `#[warn(unused_imports)]` on by default 2315s 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_VERBATIM=1 CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6 CARGO_MANIFEST_LINKS=prettyplease02 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='A minimal `syn` syntax tree pretty-printer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=prettyplease CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/prettyplease' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/release/deps:/tmp/tmp.3fb3FCho8B/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/prettyplease-b81aaf3b213cce70/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.3fb3FCho8B/target/release/build/prettyplease-a49e8000bfcf5139/build-script-build` 2315s [prettyplease 0.2.6] cargo:rerun-if-changed=build.rs 2315s [prettyplease 0.2.6] cargo:VERSION=0.2.6 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_CLANG_10_0=1 CARGO_FEATURE_CLANG_11_0=1 CARGO_FEATURE_CLANG_3_5=1 CARGO_FEATURE_CLANG_3_6=1 CARGO_FEATURE_CLANG_3_7=1 CARGO_FEATURE_CLANG_3_8=1 CARGO_FEATURE_CLANG_3_9=1 CARGO_FEATURE_CLANG_4_0=1 CARGO_FEATURE_CLANG_5_0=1 CARGO_FEATURE_CLANG_6_0=1 CARGO_FEATURE_CLANG_7_0=1 CARGO_FEATURE_CLANG_8_0=1 CARGO_FEATURE_CLANG_9_0=1 CARGO_FEATURE_LIBLOADING=1 CARGO_FEATURE_RUNTIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1 CARGO_MANIFEST_LINKS=clang CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/Cargo.toml CARGO_PKG_AUTHORS='Kyle Mayes ' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/release/deps:/tmp/tmp.3fb3FCho8B/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/clang-sys-31a04fb5f4333421/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.3fb3FCho8B/target/release/build/clang-sys-23a0f1ab030d2056/build-script-build` 2315s Compiling quote v1.0.37 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.3fb3FCho8B/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=5fd3a259e87fa411 -C extra-filename=-5fd3a259e87fa411 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern proc_macro2=/tmp/tmp.3fb3FCho8B/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 2315s Compiling memchr v2.7.4 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 2315s 1, 2 or 3 byte search and single substring search. 2315s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.3fb3FCho8B/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=dc849ac51320f949 -C extra-filename=-dc849ac51320f949 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2315s warning: `libc` (lib) generated 1 warning 2315s Compiling regex-syntax v0.8.5 2315s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/regex-syntax-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.3fb3FCho8B/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --cfg 'feature="unicode-perl"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=a630f23cdbf4fcef -C extra-filename=-a630f23cdbf4fcef --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2316s Compiling minimal-lexical v0.2.1 2316s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/minimal-lexical-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Huszagh ' CARGO_PKG_DESCRIPTION='Fast float parsing conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=minimal-lexical CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/minimal-lexical' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/minimal-lexical-0.2.1 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.3fb3FCho8B/registry/minimal-lexical-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=e29bf55e0e4fa9f7 -C extra-filename=-e29bf55e0e4fa9f7 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2316s Compiling cfg-if v1.0.0 2316s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 2316s parameters. Structured like an if-else chain, the first matching branch is the 2316s item that gets emitted. 2316s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/cfg-if-1.0.0 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.3fb3FCho8B/registry/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ba4496824ad2f0d2 -C extra-filename=-ba4496824ad2f0d2 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2316s Compiling libloading v0.8.5 2316s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libloading CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='Simonas Kazlauskas ' CARGO_PKG_DESCRIPTION='Bindings around the platform'\''s dynamic library loading primitives with greatly improved memory safety.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libloading CARGO_PKG_README=README.mkd CARGO_PKG_REPOSITORY='https://github.com/nagisa/rust_libloading/' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name libloading --edition=2015 /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --warn=unexpected_cfgs -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0718efed93de5715 -C extra-filename=-0718efed93de5715 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern cfg_if=/tmp/tmp.3fb3FCho8B/target/release/deps/libcfg_if-ba4496824ad2f0d2.rmeta --cap-lints warn` 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/lib.rs:39:13 2316s | 2316s 39 | #![cfg_attr(libloading_docs, feature(doc_cfg))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s = note: requested on the command line with `-W unexpected-cfgs` 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/lib.rs:45:26 2316s | 2316s 45 | #[cfg(any(unix, windows, libloading_docs))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/lib.rs:49:26 2316s | 2316s 49 | #[cfg(any(unix, windows, libloading_docs))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/os/mod.rs:20:17 2316s | 2316s 20 | #[cfg(any(unix, libloading_docs))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/os/mod.rs:21:12 2316s | 2316s 21 | #[cfg_attr(libloading_docs, doc(cfg(unix)))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/os/mod.rs:25:20 2316s | 2316s 25 | #[cfg(any(windows, libloading_docs))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/os/unix/mod.rs:3:11 2316s | 2316s 3 | #[cfg(all(libloading_docs, not(unix)))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/os/unix/mod.rs:5:15 2316s | 2316s 5 | #[cfg(any(not(libloading_docs), unix))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/os/unix/consts.rs:46:11 2316s | 2316s 46 | #[cfg(all(libloading_docs, not(unix)))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/os/unix/consts.rs:55:15 2316s | 2316s 55 | #[cfg(any(not(libloading_docs), unix))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/safe.rs:1:7 2316s | 2316s 1 | #[cfg(libloading_docs)] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/safe.rs:3:15 2316s | 2316s 3 | #[cfg(all(not(libloading_docs), unix))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/safe.rs:5:15 2316s | 2316s 5 | #[cfg(all(not(libloading_docs), windows))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/safe.rs:15:12 2316s | 2316s 15 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `libloading_docs` 2316s --> /tmp/tmp.3fb3FCho8B/registry/libloading-0.8.5/src/safe.rs:197:12 2316s | 2316s 197 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 2316s | ^^^^^^^^^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: `libloading` (lib) generated 15 warnings 2316s Compiling nom v7.1.3 2316s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/Cargo.toml CARGO_PKG_AUTHORS='contact@geoffroycouprie.com' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=7.1.3 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/nom-7.1.3 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name nom --edition=2018 /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=4898146123cad14b -C extra-filename=-4898146123cad14b --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern memchr=/tmp/tmp.3fb3FCho8B/target/release/deps/libmemchr-dc849ac51320f949.rmeta --extern minimal_lexical=/tmp/tmp.3fb3FCho8B/target/release/deps/libminimal_lexical-e29bf55e0e4fa9f7.rmeta --cap-lints warn` 2316s warning: unexpected `cfg` condition value: `cargo-clippy` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/lib.rs:375:13 2316s | 2316s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 2316s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2316s | 2316s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 2316s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2316s = note: see for more information about checking conditional configuration 2316s = note: `#[warn(unexpected_cfgs)]` on by default 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/lib.rs:379:12 2316s | 2316s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/lib.rs:391:12 2316s | 2316s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/lib.rs:418:14 2316s | 2316s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unused import: `self::str::*` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/lib.rs:439:9 2316s | 2316s 439 | pub use self::str::*; 2316s | ^^^^^^^^^^^^ 2316s | 2316s = note: `#[warn(unused_imports)]` on by default 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:49:12 2316s | 2316s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:96:12 2316s | 2316s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:340:12 2316s | 2316s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:357:12 2316s | 2316s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:374:12 2316s | 2316s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:392:12 2316s | 2316s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:409:12 2316s | 2316s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2316s warning: unexpected `cfg` condition name: `nightly` 2316s --> /tmp/tmp.3fb3FCho8B/registry/nom-7.1.3/src/internal.rs:430:12 2316s | 2316s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 2316s | ^^^^^^^ 2316s | 2316s = help: consider using a Cargo feature instead 2316s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2316s [lints.rust] 2316s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 2316s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 2316s = note: see for more information about checking conditional configuration 2316s 2317s Compiling regex-automata v0.4.9 2317s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex_automata CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/regex-automata-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/regex-automata-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='Automata construction and matching using regular expressions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-automata CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-automata' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/regex-automata-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name regex_automata --edition=2021 /tmp/tmp.3fb3FCho8B/registry/regex-automata-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="alloc"' --cfg 'feature="meta"' --cfg 'feature="nfa-pikevm"' --cfg 'feature="nfa-thompson"' --cfg 'feature="std"' --cfg 'feature="syntax"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-word-boundary"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "dfa", "dfa-build", "dfa-onepass", "dfa-search", "hybrid", "internal-instrument", "internal-instrument-pikevm", "logging", "meta", "nfa", "nfa-backtrack", "nfa-pikevm", "nfa-thompson", "perf", "perf-inline", "perf-literal", "perf-literal-multisubstring", "perf-literal-substring", "std", "syntax", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unicode-word-boundary"))' -C metadata=1f6aaa6190cd4584 -C extra-filename=-1f6aaa6190cd4584 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern regex_syntax=/tmp/tmp.3fb3FCho8B/target/release/deps/libregex_syntax-a630f23cdbf4fcef.rmeta --cap-lints warn` 2318s warning: `nom` (lib) generated 13 warnings 2318s Compiling syn v2.0.96 2318s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.3fb3FCho8B/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=3721f212a4fe9a7e -C extra-filename=-3721f212a4fe9a7e --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern proc_macro2=/tmp/tmp.3fb3FCho8B/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.3fb3FCho8B/target/release/deps/libquote-5fd3a259e87fa411.rmeta --extern unicode_ident=/tmp/tmp.3fb3FCho8B/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 2319s Compiling either v1.13.0 2319s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=either CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/either-1.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/either-1.13.0/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases. 2319s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=either CARGO_PKG_README=README-crates.io.md CARGO_PKG_REPOSITORY='https://github.com/rayon-rs/either' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=1.13.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/either-1.13.0 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name either --edition=2018 /tmp/tmp.3fb3FCho8B/registry/either-1.13.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "use_std"))' -C metadata=3baa90745a10b00b -C extra-filename=-3baa90745a10b00b --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2320s Compiling bindgen v0.71.1 2320s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1/Cargo.toml CARGO_PKG_AUTHORS='Jyun-Yan You :Emilio Cobos Álvarez :Nick Fitzgerald :The Servo project developers' CARGO_PKG_DESCRIPTION='Automatically generates Rust FFI bindings to C and C++ libraries.' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/rust-bindgen/' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bindgen CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rust-bindgen' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.71.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=71 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="logging"' --cfg 'feature="prettyplease"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__cli", "__testing_only_extra_assertions", "__testing_only_libclang_16", "__testing_only_libclang_9", "default", "experimental", "logging", "prettyplease", "runtime", "static", "which-rustfmt"))' -C metadata=ada8a76aeec31bfc -C extra-filename=-ada8a76aeec31bfc --out-dir /tmp/tmp.3fb3FCho8B/target/release/build/bindgen-ada8a76aeec31bfc -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2320s Compiling shlex v1.3.0 2320s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/shlex-1.3.0 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.3fb3FCho8B/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=29cedd85933b2505 -C extra-filename=-29cedd85933b2505 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2320s warning: unexpected `cfg` condition name: `manual_codegen_check` 2320s --> /tmp/tmp.3fb3FCho8B/registry/shlex-1.3.0/src/bytes.rs:353:12 2320s | 2320s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 2320s | ^^^^^^^^^^^^^^^^^^^^ 2320s | 2320s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2320s = help: consider using a Cargo feature instead 2320s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2320s [lints.rust] 2320s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 2320s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 2320s = note: see for more information about checking conditional configuration 2320s = note: `#[warn(unexpected_cfgs)]` on by default 2320s 2320s warning: `shlex` (lib) generated 1 warning 2320s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_LOGGING=1 CARGO_FEATURE_PRETTYPLEASE=1 CARGO_FEATURE_RUNTIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1/Cargo.toml CARGO_PKG_AUTHORS='Jyun-Yan You :Emilio Cobos Álvarez :Nick Fitzgerald :The Servo project developers' CARGO_PKG_DESCRIPTION='Automatically generates Rust FFI bindings to C and C++ libraries.' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/rust-bindgen/' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bindgen CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rust-bindgen' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.71.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=71 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DEBUG=false DEP_PRETTYPLEASE02_VERSION=0.2.6 HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/release/deps:/tmp/tmp.3fb3FCho8B/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/bindgen-fa0eb79cabbdd003/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.3fb3FCho8B/target/release/build/bindgen-ada8a76aeec31bfc/build-script-build` 2320s [bindgen 0.71.1] cargo:rerun-if-env-changed=LLVM_CONFIG_PATH 2320s [bindgen 0.71.1] cargo:rerun-if-env-changed=LIBCLANG_PATH 2320s [bindgen 0.71.1] cargo:rerun-if-env-changed=LIBCLANG_STATIC_PATH 2320s [bindgen 0.71.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS 2320s [bindgen 0.71.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS_s390x-unknown-linux-gnu 2320s [bindgen 0.71.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS_s390x_unknown_linux_gnu 2320s Compiling itertools v0.13.0 2320s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=itertools CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/itertools-0.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/itertools-0.13.0/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='Extra iterator adaptors, iterator methods, free functions, and macros.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=itertools CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-itertools/itertools' CARGO_PKG_RUST_VERSION=1.43.1 CARGO_PKG_VERSION=0.13.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/itertools-0.13.0 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name itertools --edition=2018 /tmp/tmp.3fb3FCho8B/registry/itertools-0.13.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "use_alloc", "use_std"))' -C metadata=f4fde6d665ca6d4d -C extra-filename=-f4fde6d665ca6d4d --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern either=/tmp/tmp.3fb3FCho8B/target/release/deps/libeither-3baa90745a10b00b.rmeta --cap-lints warn` 2321s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=prettyplease CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='A minimal `syn` syntax tree pretty-printer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=prettyplease CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/prettyplease' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/prettyplease-b81aaf3b213cce70/out rustc --crate-name prettyplease --edition=2021 /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="verbatim"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("verbatim"))' -C metadata=c52b8c1ffb4be55c -C extra-filename=-c52b8c1ffb4be55c --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern proc_macro2=/tmp/tmp.3fb3FCho8B/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern syn=/tmp/tmp.3fb3FCho8B/target/release/deps/libsyn-3721f212a4fe9a7e.rmeta --cap-lints warn` 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/lib.rs:342:23 2321s | 2321s 342 | #![cfg_attr(all(test, exhaustive), feature(non_exhaustive_omitted_patterns_lint))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s = note: `#[warn(unexpected_cfgs)]` on by default 2321s 2321s warning: unexpected `cfg` condition name: `prettyplease_debug` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/algorithm.rs:287:17 2321s | 2321s 287 | if cfg!(prettyplease_debug) { 2321s | ^^^^^^^^^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `prettyplease_debug_indent` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/algorithm.rs:292:21 2321s | 2321s 292 | if cfg!(prettyplease_debug_indent) { 2321s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug_indent)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug_indent)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `prettyplease_debug` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/algorithm.rs:319:17 2321s | 2321s 319 | if cfg!(prettyplease_debug) { 2321s | ^^^^^^^^^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `prettyplease_debug` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/algorithm.rs:341:21 2321s | 2321s 341 | if cfg!(prettyplease_debug) { 2321s | ^^^^^^^^^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `prettyplease_debug` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/algorithm.rs:349:21 2321s | 2321s 349 | if cfg!(prettyplease_debug) { 2321s | ^^^^^^^^^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(prettyplease_debug)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(prettyplease_debug)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/expr.rs:61:34 2321s | 2321s 61 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/expr.rs:951:34 2321s | 2321s 951 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/expr.rs:961:34 2321s | 2321s 961 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/expr.rs:1017:30 2321s | 2321s 1017 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/expr.rs:1077:30 2321s | 2321s 1077 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/expr.rs:1130:30 2321s | 2321s 1130 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/expr.rs:1190:30 2321s | 2321s 1190 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/generics.rs:112:34 2321s | 2321s 112 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/generics.rs:282:34 2321s | 2321s 282 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/item.rs:34:34 2321s | 2321s 34 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/item.rs:775:34 2321s | 2321s 775 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/item.rs:909:34 2321s | 2321s 909 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/item.rs:1084:34 2321s | 2321s 1084 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/item.rs:1328:34 2321s | 2321s 1328 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/lit.rs:16:34 2321s | 2321s 16 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/pat.rs:31:34 2321s | 2321s 31 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/path.rs:68:34 2321s | 2321s 68 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/path.rs:104:38 2321s | 2321s 104 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/stmt.rs:147:30 2321s | 2321s 147 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/stmt.rs:109:34 2321s | 2321s 109 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/stmt.rs:206:30 2321s | 2321s 206 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2321s warning: unexpected `cfg` condition name: `exhaustive` 2321s --> /tmp/tmp.3fb3FCho8B/registry/prettyplease-0.2.6/src/ty.rs:30:34 2321s | 2321s 30 | #[cfg_attr(all(test, exhaustive), deny(non_exhaustive_omitted_patterns))] 2321s | ^^^^^^^^^^ 2321s | 2321s = help: consider using a Cargo feature instead 2321s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 2321s [lints.rust] 2321s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(exhaustive)'] } 2321s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(exhaustive)");` to the top of the `build.rs` 2321s = note: see for more information about checking conditional configuration 2321s 2322s warning: `prettyplease` (lib) generated 28 warnings 2322s Compiling regex v1.11.1 2322s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/regex-1.11.1 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/regex-1.11.1/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='An implementation of regular expressions for Rust. This implementation uses 2322s finite automata and guarantees linear time matching on all inputs. 2322s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/regex' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.11.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/regex-1.11.1 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name regex --edition=2021 /tmp/tmp.3fb3FCho8B/registry/regex-1.11.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --cfg 'feature="unicode-perl"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "logging", "pattern", "perf", "perf-backtrack", "perf-cache", "perf-dfa", "perf-dfa-full", "perf-inline", "perf-literal", "perf-onepass", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unstable", "use_std"))' -C metadata=e387da69055f672d -C extra-filename=-e387da69055f672d --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern regex_automata=/tmp/tmp.3fb3FCho8B/target/release/deps/libregex_automata-1f6aaa6190cd4584.rmeta --extern regex_syntax=/tmp/tmp.3fb3FCho8B/target/release/deps/libregex_syntax-a630f23cdbf4fcef.rmeta --cap-lints warn` 2322s Compiling cexpr v0.6.0 2322s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cexpr CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/cexpr-0.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/cexpr-0.6.0/Cargo.toml CARGO_PKG_AUTHORS='Jethro Beekman ' CARGO_PKG_DESCRIPTION='A C expression parser and evaluator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cexpr CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/jethrogb/rust-cexpr' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/cexpr-0.6.0 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name cexpr --edition=2018 /tmp/tmp.3fb3FCho8B/registry/cexpr-0.6.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f233f43409dbbb4c -C extra-filename=-f233f43409dbbb4c --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern nom=/tmp/tmp.3fb3FCho8B/target/release/deps/libnom-4898146123cad14b.rmeta --cap-lints warn` 2322s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=clang_sys CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/Cargo.toml CARGO_PKG_AUTHORS='Kyle Mayes ' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.8.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/clang-sys-31a04fb5f4333421/out rustc --crate-name clang_sys --edition=2021 /tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clang_10_0"' --cfg 'feature="clang_11_0"' --cfg 'feature="clang_3_5"' --cfg 'feature="clang_3_6"' --cfg 'feature="clang_3_7"' --cfg 'feature="clang_3_8"' --cfg 'feature="clang_3_9"' --cfg 'feature="clang_4_0"' --cfg 'feature="clang_5_0"' --cfg 'feature="clang_6_0"' --cfg 'feature="clang_7_0"' --cfg 'feature="clang_8_0"' --cfg 'feature="clang_9_0"' --cfg 'feature="libloading"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clang_10_0", "clang_11_0", "clang_12_0", "clang_13_0", "clang_14_0", "clang_15_0", "clang_16_0", "clang_17_0", "clang_18_0", "clang_3_5", "clang_3_6", "clang_3_7", "clang_3_8", "clang_3_9", "clang_4_0", "clang_5_0", "clang_6_0", "clang_7_0", "clang_8_0", "clang_9_0", "libcpp", "libloading", "runtime", "static"))' -C metadata=c8514f3987dadd22 -C extra-filename=-c8514f3987dadd22 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern glob=/tmp/tmp.3fb3FCho8B/target/release/deps/libglob-9c18cba999f4108b.rmeta --extern libc=/tmp/tmp.3fb3FCho8B/target/release/deps/liblibc-7fc068eb0b53bf93.rmeta --extern libloading=/tmp/tmp.3fb3FCho8B/target/release/deps/liblibloading-0718efed93de5715.rmeta --cap-lints warn` 2323s warning: unexpected `cfg` condition value: `cargo-clippy` 2323s --> /tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/src/lib.rs:23:13 2323s | 2323s 23 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::unreadable_literal))] 2323s | ^^^^^^^^^^^^^^^^^^^^^^^^ 2323s | 2323s = note: expected values for `feature` are: `clang_10_0`, `clang_11_0`, `clang_12_0`, `clang_13_0`, `clang_14_0`, `clang_15_0`, `clang_16_0`, `clang_17_0`, `clang_18_0`, `clang_3_5`, `clang_3_6`, `clang_3_7`, `clang_3_8`, `clang_3_9`, `clang_4_0`, `clang_5_0`, `clang_6_0`, `clang_7_0`, `clang_8_0`, `clang_9_0`, `libcpp`, `libloading`, `runtime`, and `static` 2323s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2323s = note: see for more information about checking conditional configuration 2323s = note: `#[warn(unexpected_cfgs)]` on by default 2323s 2323s warning: unexpected `cfg` condition value: `cargo-clippy` 2323s --> /tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/src/link.rs:173:24 2323s | 2323s 173 | #[cfg_attr(feature="cargo-clippy", allow(clippy::missing_safety_doc))] 2323s | ^^^^^^^^^^^^^^^^^^^^^^ 2323s | 2323s ::: /tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/src/lib.rs:1859:1 2323s | 2323s 1859 | / link! { 2323s 1860 | | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2323s 1861 | | pub fn clang_CXCursorSet_insert(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2323s 1862 | | pub fn clang_CXIndex_getGlobalOptions(index: CXIndex) -> CXGlobalOptFlags; 2323s ... | 2323s 2432 | | pub fn clang_VerbatimLineComment_getText(comment: CXComment) -> CXString; 2323s 2433 | | } 2323s | |_- in this macro invocation 2323s | 2323s = note: expected values for `feature` are: `clang_10_0`, `clang_11_0`, `clang_12_0`, `clang_13_0`, `clang_14_0`, `clang_15_0`, `clang_16_0`, `clang_17_0`, `clang_18_0`, `clang_3_5`, `clang_3_6`, `clang_3_7`, `clang_3_8`, `clang_3_9`, `clang_4_0`, `clang_5_0`, `clang_6_0`, `clang_7_0`, `clang_8_0`, `clang_9_0`, `libcpp`, `libloading`, `runtime`, and `static` 2323s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2323s = note: see for more information about checking conditional configuration 2323s = note: this warning originates in the macro `link` (in Nightly builds, run with -Z macro-backtrace for more info) 2323s 2323s warning: unexpected `cfg` condition value: `cargo-clippy` 2323s --> /tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/src/link.rs:174:24 2323s | 2323s 174 | #[cfg_attr(feature="cargo-clippy", allow(clippy::too_many_arguments))] 2323s | ^^^^^^^^^^^^^^^^^^^^^^ 2323s | 2323s ::: /tmp/tmp.3fb3FCho8B/registry/clang-sys-1.8.1/src/lib.rs:1859:1 2323s | 2323s 1859 | / link! { 2323s 1860 | | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2323s 1861 | | pub fn clang_CXCursorSet_insert(set: CXCursorSet, cursor: CXCursor) -> c_uint; 2323s 1862 | | pub fn clang_CXIndex_getGlobalOptions(index: CXIndex) -> CXGlobalOptFlags; 2323s ... | 2323s 2432 | | pub fn clang_VerbatimLineComment_getText(comment: CXComment) -> CXString; 2323s 2433 | | } 2323s | |_- in this macro invocation 2323s | 2323s = note: expected values for `feature` are: `clang_10_0`, `clang_11_0`, `clang_12_0`, `clang_13_0`, `clang_14_0`, `clang_15_0`, `clang_16_0`, `clang_17_0`, `clang_18_0`, `clang_3_5`, `clang_3_6`, `clang_3_7`, `clang_3_8`, `clang_3_9`, `clang_4_0`, `clang_5_0`, `clang_6_0`, `clang_7_0`, `clang_8_0`, `clang_9_0`, `libcpp`, `libloading`, `runtime`, and `static` 2323s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 2323s = note: see for more information about checking conditional configuration 2323s = note: this warning originates in the macro `link` (in Nightly builds, run with -Z macro-backtrace for more info) 2323s 2323s Compiling jobserver v0.1.32 2323s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=jobserver CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/jobserver-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/jobserver-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='An implementation of the GNU Make jobserver for Rust. 2323s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/jobserver-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=jobserver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/jobserver-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/jobserver-0.1.32 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name jobserver --edition=2021 /tmp/tmp.3fb3FCho8B/registry/jobserver-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=222b608f71294456 -C extra-filename=-222b608f71294456 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern libc=/tmp/tmp.3fb3FCho8B/target/release/deps/liblibc-7fc068eb0b53bf93.rmeta --cap-lints warn` 2323s Compiling log v0.4.22 2323s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 2323s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/log-0.4.22 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name log --edition=2021 /tmp/tmp.3fb3FCho8B/registry/log-0.4.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=7ec1294a8735a48e -C extra-filename=-7ec1294a8735a48e --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2323s Compiling rustc-hash v1.1.0 2323s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rustc_hash CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/rustc-hash-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/rustc-hash-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='speed, non-cryptographic hash used in rustc' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustc-hash CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/rustc-hash' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/rustc-hash-1.1.0 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name rustc_hash --edition=2015 /tmp/tmp.3fb3FCho8B/registry/rustc-hash-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=7b9521b213bce408 -C extra-filename=-7b9521b213bce408 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2323s Compiling bitflags v2.8.0 2323s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 2323s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/bitflags-2.8.0 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.3fb3FCho8B/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=90275ba1d39e3b0d -C extra-filename=-90275ba1d39e3b0d --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2323s Compiling cc v1.1.14 2323s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 2323s C compiler to compile native C code into a static archive to be linked into Rust 2323s code. 2323s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/cc-1.1.14 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name cc --edition=2018 /tmp/tmp.3fb3FCho8B/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="parallel"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=d1c2fe57af7587a3 -C extra-filename=-d1c2fe57af7587a3 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern jobserver=/tmp/tmp.3fb3FCho8B/target/release/deps/libjobserver-222b608f71294456.rmeta --extern libc=/tmp/tmp.3fb3FCho8B/target/release/deps/liblibc-7fc068eb0b53bf93.rmeta --extern shlex=/tmp/tmp.3fb3FCho8B/target/release/deps/libshlex-29cedd85933b2505.rmeta --cap-lints warn` 2325s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=bindgen CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1/Cargo.toml CARGO_PKG_AUTHORS='Jyun-Yan You :Emilio Cobos Álvarez :Nick Fitzgerald :The Servo project developers' CARGO_PKG_DESCRIPTION='Automatically generates Rust FFI bindings to C and C++ libraries.' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/rust-bindgen/' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bindgen CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/rust-bindgen' CARGO_PKG_RUST_VERSION=1.70.0 CARGO_PKG_VERSION=0.71.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=71 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps OUT_DIR=/tmp/tmp.3fb3FCho8B/target/release/build/bindgen-fa0eb79cabbdd003/out rustc --crate-name bindgen --edition=2021 /tmp/tmp.3fb3FCho8B/registry/bindgen-0.71.1/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="logging"' --cfg 'feature="prettyplease"' --cfg 'feature="runtime"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__cli", "__testing_only_extra_assertions", "__testing_only_libclang_16", "__testing_only_libclang_9", "default", "experimental", "logging", "prettyplease", "runtime", "static", "which-rustfmt"))' -C metadata=37cc2af20661c1b3 -C extra-filename=-37cc2af20661c1b3 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern bitflags=/tmp/tmp.3fb3FCho8B/target/release/deps/libbitflags-90275ba1d39e3b0d.rmeta --extern cexpr=/tmp/tmp.3fb3FCho8B/target/release/deps/libcexpr-f233f43409dbbb4c.rmeta --extern clang_sys=/tmp/tmp.3fb3FCho8B/target/release/deps/libclang_sys-c8514f3987dadd22.rmeta --extern itertools=/tmp/tmp.3fb3FCho8B/target/release/deps/libitertools-f4fde6d665ca6d4d.rmeta --extern log=/tmp/tmp.3fb3FCho8B/target/release/deps/liblog-7ec1294a8735a48e.rmeta --extern prettyplease=/tmp/tmp.3fb3FCho8B/target/release/deps/libprettyplease-c52b8c1ffb4be55c.rmeta --extern proc_macro2=/tmp/tmp.3fb3FCho8B/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.3fb3FCho8B/target/release/deps/libquote-5fd3a259e87fa411.rmeta --extern regex=/tmp/tmp.3fb3FCho8B/target/release/deps/libregex-e387da69055f672d.rmeta --extern rustc_hash=/tmp/tmp.3fb3FCho8B/target/release/deps/librustc_hash-7b9521b213bce408.rmeta --extern shlex=/tmp/tmp.3fb3FCho8B/target/release/deps/libshlex-29cedd85933b2505.rmeta --extern syn=/tmp/tmp.3fb3FCho8B/target/release/deps/libsyn-3721f212a4fe9a7e.rmeta --cap-lints warn` 2327s warning: `clang-sys` (lib) generated 3 warnings 2327s Compiling pkg-config v0.3.31 2327s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 2327s Cargo build scripts. 2327s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/pkg-config-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.3fb3FCho8B/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=2f5d9cafbf4df355 -C extra-filename=-2f5d9cafbf4df355 --out-dir /tmp/tmp.3fb3FCho8B/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn` 2327s warning: unreachable expression 2327s --> /tmp/tmp.3fb3FCho8B/registry/pkg-config-0.3.31/src/lib.rs:596:9 2327s | 2327s 592 | return true; 2327s | ----------- any code following this expression is unreachable 2327s ... 2327s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 2327s 597 | | // don't use pkg-config if explicitly disabled 2327s 598 | | Some(ref val) if val == "0" => false, 2327s 599 | | Some(_) => true, 2327s ... | 2327s 605 | | } 2327s 606 | | } 2327s | |_________^ unreachable expression 2327s | 2327s = note: `#[warn(unreachable_code)]` on by default 2327s 2327s warning: `pkg-config` (lib) generated 1 warning 2327s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2327s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/release/deps:/tmp/tmp.3fb3FCho8B/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.3fb3FCho8B/target/release/build/libc-7e8f0a655396b248/build-script-build` 2327s [libc 0.2.169] cargo:rerun-if-changed=build.rs 2327s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 2327s [libc 0.2.169] cargo:rustc-cfg=freebsd11 2327s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 2327s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 2327s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 2327s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.3fb3FCho8B/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps OUT_DIR=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out rustc --crate-name libc --edition=2021 /tmp/tmp.3fb3FCho8B/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=8a14e953bd95a320 -C extra-filename=-8a14e953bd95a320 --out-dir /tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 2328s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 2328s | 2328s = note: this feature is not stably supported; its behavior can change in the future 2328s 2328s warning: `libc` (lib) generated 2 warnings (1 duplicate) 2329s Compiling oxrocksdb-sys v0.4.7 (/usr/share/cargo/registry/oxrocksdb-sys-0.4.7) 2329s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Rust bindings for RocksDB for Oxigraph usage. 2329s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-2.0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrocksdb-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps rustc --crate-name build_script_build --edition=2021 build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="pkg-config"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "pkg-config"))' -C metadata=f632def1527aebf1 -C extra-filename=-f632def1527aebf1 --out-dir /tmp/tmp.3fb3FCho8B/target/release/build/oxrocksdb-sys-f632def1527aebf1 -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern bindgen=/tmp/tmp.3fb3FCho8B/target/release/deps/libbindgen-37cc2af20661c1b3.rlib --extern cc=/tmp/tmp.3fb3FCho8B/target/release/deps/libcc-d1c2fe57af7587a3.rlib --extern pkg_config=/tmp/tmp.3fb3FCho8B/target/release/deps/libpkg_config-2f5d9cafbf4df355.rlib` 2330s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PKG_CONFIG=1 CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7 CARGO_MANIFEST_LINKS=rocksdb CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Rust bindings for RocksDB for Oxigraph usage. 2330s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-2.0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrocksdb-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/release/deps:/tmp/tmp.3fb3FCho8B/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-be99b2bacdd726a3/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.3fb3FCho8B/target/release/build/oxrocksdb-sys-f632def1527aebf1/build-script-build` 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_NO_PKG_CONFIG 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_STATIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_DYNAMIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=SYSROOT 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_STATIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_DYNAMIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 2330s [oxrocksdb-sys 0.4.7] cargo:rustc-link-search=native=/usr/lib/s390x-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rustc-link-lib=rocksdb 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_STATIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ROCKSDB_DYNAMIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 2330s [oxrocksdb-sys 0.4.7] OUT_DIR = Some(/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-be99b2bacdd726a3/out) 2330s [oxrocksdb-sys 0.4.7] TARGET = Some(s390x-unknown-linux-gnu) 2330s [oxrocksdb-sys 0.4.7] OPT_LEVEL = Some(3) 2330s [oxrocksdb-sys 0.4.7] HOST = Some(s390x-unknown-linux-gnu) 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXX_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] CXX_s390x-unknown-linux-gnu = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXX_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] CXX_s390x_unknown_linux_gnu = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_CXX 2330s [oxrocksdb-sys 0.4.7] HOST_CXX = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXX 2330s [oxrocksdb-sys 0.4.7] CXX = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT 2330s [oxrocksdb-sys 0.4.7] RUSTC_WRAPPER = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS 2330s [oxrocksdb-sys 0.4.7] CRATE_CC_NO_DEFAULTS = None 2330s [oxrocksdb-sys 0.4.7] DEBUG = Some(false) 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXFLAGS_s390x-unknown-linux-gnu 2330s [oxrocksdb-sys 0.4.7] CXXFLAGS_s390x-unknown-linux-gnu = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXFLAGS_s390x_unknown_linux_gnu 2330s [oxrocksdb-sys 0.4.7] CXXFLAGS_s390x_unknown_linux_gnu = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS 2330s [oxrocksdb-sys 0.4.7] HOST_CXXFLAGS = None 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXFLAGS 2330s [oxrocksdb-sys 0.4.7] CXXFLAGS = Some(-g -O2 -mbackchain -ffile-prefix-map=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection) 2330s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CC_SHELL_ESCAPED_FLAGS 2330s [oxrocksdb-sys 0.4.7] CC_SHELL_ESCAPED_FLAGS = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=AR_s390x-unknown-linux-gnu 2332s [oxrocksdb-sys 0.4.7] AR_s390x-unknown-linux-gnu = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=AR_s390x_unknown_linux_gnu 2332s [oxrocksdb-sys 0.4.7] AR_s390x_unknown_linux_gnu = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_AR 2332s [oxrocksdb-sys 0.4.7] HOST_AR = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=AR 2332s [oxrocksdb-sys 0.4.7] AR = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ARFLAGS_s390x-unknown-linux-gnu 2332s [oxrocksdb-sys 0.4.7] ARFLAGS_s390x-unknown-linux-gnu = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ARFLAGS_s390x_unknown_linux_gnu 2332s [oxrocksdb-sys 0.4.7] ARFLAGS_s390x_unknown_linux_gnu = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_ARFLAGS 2332s [oxrocksdb-sys 0.4.7] HOST_ARFLAGS = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=ARFLAGS 2332s [oxrocksdb-sys 0.4.7] ARFLAGS = None 2332s [oxrocksdb-sys 0.4.7] cargo:rustc-link-lib=static=oxrocksdb_api 2332s [oxrocksdb-sys 0.4.7] cargo:rustc-link-search=native=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-be99b2bacdd726a3/out 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXSTDLIB_s390x-unknown-linux-gnu 2332s [oxrocksdb-sys 0.4.7] CXXSTDLIB_s390x-unknown-linux-gnu = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXSTDLIB_s390x_unknown_linux_gnu 2332s [oxrocksdb-sys 0.4.7] CXXSTDLIB_s390x_unknown_linux_gnu = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=HOST_CXXSTDLIB 2332s [oxrocksdb-sys 0.4.7] HOST_CXXSTDLIB = None 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-env-changed=CXXSTDLIB 2332s [oxrocksdb-sys 0.4.7] CXXSTDLIB = None 2332s [oxrocksdb-sys 0.4.7] cargo:rustc-link-lib=stdc++ 2332s [oxrocksdb-sys 0.4.7] cargo:rerun-if-changed=api/ 2332s [oxrocksdb-sys 0.4.7] dh-cargo:deb-built-using=oxrocksdb_api=0=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7 2333s [oxrocksdb-sys 0.4.7] Failed to run rustfmt: No such file or directory (os error 2) (non-fatal, continuing) 2333s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=oxrocksdb_sys CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Rust bindings for RocksDB for Oxigraph usage. 2333s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-2.0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrocksdb-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7 LD_LIBRARY_PATH=/tmp/tmp.3fb3FCho8B/target/release/deps OUT_DIR=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-be99b2bacdd726a3/out rustc --crate-name oxrocksdb_sys --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no --test --cfg 'feature="default"' --cfg 'feature="pkg-config"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "pkg-config"))' -C metadata=0fe377a8513063ab -C extra-filename=-0fe377a8513063ab --out-dir /tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.3fb3FCho8B/target/release/deps --extern libc=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rlib -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-be99b2bacdd726a3/out -l rocksdb -l static=oxrocksdb_api -l stdc++` 2333s warning: `oxrocksdb-sys` (lib test) generated 1 warning (1 duplicate) 2333s Finished `release` profile [optimized] target(s) in 19.20s 2333s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/oxrocksdb-sys-0.4.7/Cargo.toml CARGO_PKG_AUTHORS='Tpt ' CARGO_PKG_DESCRIPTION='Rust bindings for RocksDB for Oxigraph usage. 2333s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-2.0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oxrocksdb-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-be99b2bacdd726a3/out:/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' OUT_DIR=/tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/build/oxrocksdb-sys-be99b2bacdd726a3/out /tmp/tmp.3fb3FCho8B/target/s390x-unknown-linux-gnu/release/deps/oxrocksdb_sys-0fe377a8513063ab` 2333s 2333s running 0 tests 2333s 2333s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 2333s 2333s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 2333s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 2333s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 2333s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 2333s autopkgtest: DBG: testbed command exited with code 0 2333s autopkgtest [02:05:46]: test rust-oxrocksdb-sys:default: -----------------------] 2333s autopkgtest: DBG: testbed executing test finished with exit status 0 2333s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys%3Adefault-stdout /tmp/autopkgtest-work.14s59fnj/out/rust-oxrocksdb-sys%3Adefault-stdout 2334s autopkgtest: DBG: got reply from testbed: ok 2334s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys%3Adefault-stderr /tmp/autopkgtest-work.14s59fnj/out/rust-oxrocksdb-sys%3Adefault-stderr 2334s autopkgtest: DBG: got reply from testbed: ok 2334s autopkgtest [02:05:47]: test rust-oxrocksdb-sys:default: - - - - - - - - - - results - - - - - - - - - - 2334s rust-oxrocksdb-sys:default PASS 2334s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys%3Adefault-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 2334s autopkgtest: DBG: got reply from testbed: ok 2334s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/rust-oxrocksdb-sys:default-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2334s autopkgtest: DBG: testbed command exited with code 0 2334s autopkgtest [02:05:47]: test command1: preparing testbed 2334s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-bindgen-dev (<< 0.72)', 'librust-cc-1+default-dev', 'librust-cc-1+parallel-dev', 'librust-oxrocksdb-sys-0.4+default-dev'], deps_new=['oxigraph'] 2334s autopkgtest: DBG: testbed reset 2334s autopkgtest: DBG: sending command to testbed: revert 2468s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.QBkw4D 2468s autopkgtest: DBG: sending command to testbed: print-execute-command 2468s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.v8mbp_v6/runcmd 2468s autopkgtest: DBG: sending command to testbed: capabilities 2468s autopkgtest: DBG: got reply from testbed: ok revert-full-system root-on-testbed isolation-machine suggested-normal-user=ubuntu ok reboot revert 2468s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'root-on-testbed', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'has_internet'] 2468s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2468s autopkgtest: DBG: testbed command exited with code 0 2468s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.QBkw4D/wrapper.sh 2468s autopkgtest: DBG: got reply from testbed: ok 2468s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2468s autopkgtest: DBG: testbed command exited with code 0 2468s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2468s autopkgtest: DBG: testbed command exited with code 0 2468s autopkgtest [02:08:01]: testbed dpkg architecture: s390x 2468s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2469s autopkgtest: DBG: testbed command exited with code 0 2469s autopkgtest [02:08:02]: testbed apt version: 2.9.28 2469s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2469s autopkgtest: DBG: testbed command exited with code 0 2469s autopkgtest: DBG: testbed has eatmydata 2469s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2469s autopkgtest: DBG: testbed command exited with code 0 2469s autopkgtest [02:08:02]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2469s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2469s autopkgtest: DBG: testbed command exited with code 0 2469s autopkgtest [02:08:02]: testbed release detected to be: plucky 2469s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 2469s autopkgtest: DBG: testbed command exited with code 0 2469s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 2469s autopkgtest: DBG: testbed command exited with code 0 2469s autopkgtest: DBG: adding APT source: Types: deb deb-src 2469s URIs: http://ftpmaster.internal/ubuntu/ 2469s Suites: plucky-proposed 2469s Components: main restricted universe multiverse 2469s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2469s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 2470s autopkgtest: DBG: testbed command exited with code 0 2470s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2470s Package: * 2470s Pin: release plucky-proposed 2470s Pin-Priority: 500 2470s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 2470s autopkgtest: DBG: testbed command exited with code 0 2470s autopkgtest [02:08:03]: updating testbed package index (apt update) 2470s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2470s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2470s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2470s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2471s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2471s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 2471s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2471s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 2471s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 2471s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 2471s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2471s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 2471s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 2471s Fetched 2083 kB in 1s (1891 kB/s) 2472s Reading package lists... 2472s autopkgtest: DBG: testbed command exited with code 0 2472s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2472s Package: * 2472s Pin: release plucky-proposed 2472s Pin-Priority: 100 2472s 2472s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 2472s Pin: release plucky-proposed 2472s Pin-Priority: 995 2472s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2472s autopkgtest: DBG: testbed command exited with code 0 2472s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2472s autopkgtest: DBG: testbed command exited with code 0 2472s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2472s + lsb_release --codename --short 2472s + RELEASE=plucky 2472s + cat 2472s + [ plucky != trusty ] 2472s + DEBIAN_FRONTEND=noninteractiveReading package lists... 2472s Building dependency tree... eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2472s 2472s Reading state information... 2473s Calculating upgrade... 2473s The following packages were automatically installed and are no longer required: 2473s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2473s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2473s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2473s linux-tools-6.11.0-8-generic 2473s Use 'sudo apt autoremove' to remove them. 2473s The following packages will be upgraded: 2473s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 2473s libxdmcp6 2473s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2473s Need to get 1471 kB of archives. 2473s After this operation, 24.6 kB of additional disk space will be used. 2473s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 2473s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 2473s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 2473s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 2473s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 2473s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 2473s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 2473s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 2474s Preconfiguring packages ... 2474s Fetched 1471 kB in 1s (2426 kB/s) 2474s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2474s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 2474s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 2474s Setting up dash (0.5.12-12ubuntu1) ... 2474s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2474s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 2474s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2474s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 2474s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2474s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 2474s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2474s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 2474s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2474s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 2474s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2474s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 2474s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 2474s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 2474s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2474s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 2474s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 2474s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 2474s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 2474s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 2474s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 2474s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 2474s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 2474s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 2474s Setting up libtasn1-6:s390x (4.20.0-2) ... 2474s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2474s Processing triggers for man-db (2.13.0-1) ... 2475s Processing triggers for debianutils (5.21) ... 2475s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2475s + /usr/lib/apt/apt-helper analyze-pattern ?true 2475s + uname -r 2475s + sed s/\./\\./g 2475s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2475s + apt list ?obsolete 2475s + tail -n+2 2475s + cut -d/ -f1 2475s + grep -v ^linux-.*6\.12\.0-15-generic.* 2475s + true 2475s + obsolete_pkgs= 2475s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2475s Reading package lists... 2475s Building dependency tree... 2475s Reading state information... 2475s The following packages will be REMOVED: 2475s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2475s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2475s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2475s linux-tools-6.11.0-8-generic* 2475s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 2475s After this operation, 167 MB disk space will be freed. 2475s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 2475s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2475s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2475s Removing libpython3.12t64:s390x (3.12.9-1) ... 2475s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2475s Removing libnsl2:s390x (1.3.0-3build3) ... 2475s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2476s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2476s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2477s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2477s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2477s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 2477s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2477s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2477s + grep -q trusty /etc/lsb-release 2477s + [ ! -d /usr/share/doc/unattended-upgrades ] 2477s + [ ! -d /usr/share/doc/lxd ] 2477s + [ ! -d /usr/share/doc/lxd-client ] 2477s + [ ! -d /usr/share/doc/snapd ] 2477s + type iptables 2477s + cat 2477s + chmod 755 /etc/rc.local 2477s + . /etc/rc.local 2477s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2477s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2477s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2477s + uname -m 2477s + [ s390x = ppc64le ] 2477s + [ -d /run/systemd/system ] 2477s + systemd-detect-virt --quiet --vm 2477s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2477s + cat 2477s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2477s + echo COMPRESS=lz4 2477s autopkgtest: DBG: testbed command exited with code 0 2477s autopkgtest [02:08:10]: upgrading testbed (apt dist-upgrade and autopurge) 2477s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2477s Reading package lists... 2477s Building dependency tree... 2478s Reading state information... 2478s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2478s Starting 2 pkgProblemResolver with broken count: 0 2478s Done 2478s Entering ResolveByKeep 2478s 2478s The following packages will be upgraded: 2478s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 2478s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2478s Need to get 10.7 MB of archives. 2478s After this operation, 305 kB of additional disk space will be used. 2478s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 2478s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 2478s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 2479s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 2479s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 2479s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2479s Preconfiguring packages ... 2480s Fetched 10.7 MB in 1s (7372 kB/s) 2480s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 2480s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 2480s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2480s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 2480s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2480s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 2480s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2480s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 2480s Checking for services that may need to be restarted... 2480s Checking init scripts... 2480s Checking for services that may need to be restarted... 2480s Checking init scripts... 2480s Stopping some services possibly affected by the upgrade (will be restarted later): 2480s cron: stopping...done. 2480s 2480s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2480s Setting up libc6:s390x (2.41-1ubuntu1) ... 2480s Checking for services that may need to be restarted... 2480s Checking init scripts... 2480s Restarting services possibly affected by the upgrade: 2480s cron: restarting...done. 2480s 2480s Services restarted successfully. 2480s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 2480s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 2480s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 2480s Setting up libc-bin (2.41-1ubuntu1) ... 2480s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 2480s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2480s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2481s Setting up iproute2 (6.13.0-1ubuntu1) ... 2481s Setting up locales (2.41-1ubuntu1) ... 2481s Installing new version of config file /etc/locale.alias ... 2481s Generating locales (this might take a while)... 2482s en_US.UTF-8... done 2482s Generation complete. 2482s Setting up libc-dev-bin (2.41-1ubuntu1) ... 2482s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 2482s Processing triggers for man-db (2.13.0-1) ... 2483s Processing triggers for systemd (257.2-3ubuntu1) ... 2484s autopkgtest: DBG: testbed command exited with code 0 2484s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2484s Reading package lists... 2484s Building dependency tree... 2484s Reading state information... 2484s Starting pkgProblemResolver with broken count: 0 2484s Starting 2 pkgProblemResolver with broken count: 0 2484s Done 2484s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2484s autopkgtest: DBG: testbed command exited with code 0 2484s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.QBkw4D/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2484s autopkgtest: DBG: testbed command exited with code 1 2484s autopkgtest [02:08:17]: rebooting testbed after setup commands that affected boot 2484s autopkgtest: DBG: sending command to testbed: reboot 2498s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 2502s autopkgtest: DBG: got reply from testbed: ok 2502s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2502s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2502s autopkgtest: DBG: testbed command exited with code 0 2502s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 2503s autopkgtest: DBG: got reply from testbed: ok 2503s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2503s autopkgtest: DBG: testbed command exited with code 0 2503s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2503s autopkgtest: DBG: testbed command exited with code 0 2503s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2503s autopkgtest: DBG: testbed command exited with code 0 2503s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2503s autopkgtest: DBG: testbed command exited with code 0 2503s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 2503s autopkgtest: DBG: got reply from testbed: ok 2503s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2504s autopkgtest: DBG: testbed command exited with code 0 2504s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2504s autopkgtest: DBG: testbed command exited with code 0 2504s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2504s autopkgtest: DBG: testbed command exited with code 0 2504s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/testbed-packages"], kind short, sout raw, serr pipe, env [] 2504s autopkgtest: DBG: testbed command exited with code 0 2504s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/testbed-packages /tmp/autopkgtest-work.14s59fnj/out/testbed-packages 2504s autopkgtest: DBG: got reply from testbed: ok 2504s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2504s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2504s autopkgtest: DBG: testbed command exited with code 0 2504s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot 2505s autopkgtest: DBG: got reply from testbed: ok 2505s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2505s autopkgtest: DBG: testbed command exited with code 0 2505s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2505s autopkgtest: DBG: testbed command exited with code 0 2505s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2505s autopkgtest: DBG: testbed command exited with code 0 2505s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D'], kind short, sout raw, serr pipe, env [] 2505s autopkgtest: DBG: testbed command exited with code 0 2505s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare 2506s autopkgtest: DBG: got reply from testbed: ok 2506s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2506s autopkgtest: DBG: testbed command exited with code 0 2506s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.QBkw4D/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2506s autopkgtest: DBG: testbed command exited with code 0 2506s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2506s autopkgtest: DBG: testbed command exited with code 0 2506s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2506s autopkgtest: DBG: install_deps: deps_new=['oxigraph'] 2506s autopkgtest: DBG: install-deps: satisfying oxigraph 2506s autopkgtest: DBG: can use apt-get on testbed: True 2506s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'oxigraph'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2506s Reading package lists... 2506s Building dependency tree... 2506s Reading state information... 2507s Starting pkgProblemResolver with broken count: 0 2507s Starting 2 pkgProblemResolver with broken count: 0 2507s Done 2507s The following NEW packages will be installed: 2507s libgflags2.2 librocksdb9.10 libsnappy1v5 oxigraph 2507s 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. 2507s Need to get 6369 kB of archives. 2507s After this operation, 22.6 MB of additional disk space will be used. 2507s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libgflags2.2 s390x 2.2.2-2build1 [71.7 kB] 2507s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 2507s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x librocksdb9.10 s390x 9.10.0-1 [3610 kB] 2509s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x oxigraph s390x 0.4.7-4build1 [2654 kB] 2510s Fetched 6369 kB in 3s (2293 kB/s) 2510s Selecting previously unselected package libgflags2.2. 2510s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 2510s Preparing to unpack .../libgflags2.2_2.2.2-2build1_s390x.deb ... 2510s Unpacking libgflags2.2 (2.2.2-2build1) ... 2510s Selecting previously unselected package libsnappy1v5:s390x. 2510s Preparing to unpack .../libsnappy1v5_1.2.1-1_s390x.deb ... 2510s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 2510s Selecting previously unselected package librocksdb9.10. 2510s Preparing to unpack .../librocksdb9.10_9.10.0-1_s390x.deb ... 2510s Unpacking librocksdb9.10 (9.10.0-1) ... 2510s Selecting previously unselected package oxigraph. 2510s Preparing to unpack .../oxigraph_0.4.7-4build1_s390x.deb ... 2510s Unpacking oxigraph (0.4.7-4build1) ... 2510s Setting up libsnappy1v5:s390x (1.2.1-1) ... 2510s Setting up libgflags2.2 (2.2.2-2build1) ... 2510s Setting up librocksdb9.10 (9.10.0-1) ... 2510s Setting up oxigraph (0.4.7-4build1) ... 2510s Processing triggers for libc-bin (2.41-1ubuntu1) ... 2510s Processing triggers for man-db (2.13.0-1) ... 2511s autopkgtest: DBG: testbed command exited with code 0 2511s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'oxigraph'], kind short, sout pipe, serr pipe, env [] 2511s autopkgtest: DBG: testbed command exited with code 0 2511s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.QBkw4D/command1-packages.all"], kind short, sout raw, serr pipe, env [] 2511s autopkgtest: DBG: testbed command exited with code 0 2511s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/command1-packages.all /tmp/autopkgtest-work.14s59fnj/out/command1-packages.all 2512s autopkgtest: DBG: got reply from testbed: ok 2512s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr raw, env [] 2512s autopkgtest: DBG: testbed command exited with code 1 2512s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.QBkw4D/build.qEj'], kind short, sout raw, serr pipe, env [] 2512s autopkgtest: DBG: testbed command exited with code 0 2512s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.14s59fnj/out/tests-tree/ /tmp/autopkgtest.QBkw4D/build.qEj/src/ 2513s autopkgtest: DBG: got reply from testbed: ok 2513s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.QBkw4D/build.qEj/src'], kind short, sout raw, serr pipe, env [] 2513s autopkgtest: DBG: testbed command exited with code 0 2513s autopkgtest [02:08:46]: test command1: echo ' a .' | oxigraph convert --from-format ttl --from-base http://example.com/foo --to-format ttl | grep -Fxq '<> a .' 2513s autopkgtest [02:08:46]: test command1: [----------------------- 2513s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.QBkw4D/wrapper.sh --debug --artifacts=/tmp/autopkgtest.QBkw4D/command1-artifacts --chdir=/tmp/autopkgtest.QBkw4D/build.qEj/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.QBkw4D/command1-stderr --stdout=/tmp/autopkgtest.QBkw4D/command1-stdout --tmp=/tmp/autopkgtest.QBkw4D/autopkgtest_tmp \'--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1\' -- bash -ec \'echo \'"\'"\' a .\'"\'"\' | oxigraph convert --from-format ttl --from-base http://example.com/foo --to-format ttl | grep -Fxq \'"\'"\'<> a .\'"\'"\'\''], kind test, sout raw, serr raw, env [] 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.QBkw4D/command1-artifacts 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: changing to directory: /tmp/autopkgtest.QBkw4D/build.qEj/src 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: LANG=C.UTF-8 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LANGUAGE 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ADDRESS 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_ALL 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_COLLATE 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_CTYPE 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MEASUREMENT 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MESSAGES 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_MONETARY 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NAME 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_NUMERIC 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_PAPER 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TELEPHONE 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: unsetting environment: LC_TIME 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: pretending to be a login shell 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write standard error to /tmp/autopkgtest.QBkw4D/command1-stderr 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: will write stdout to /tmp/autopkgtest.QBkw4D/command1-stdout 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.QBkw4D/autopkgtest_tmp 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: command to run: bash -ec echo ' a .' | oxigraph convert --from-format ttl --from-base http://example.com/foo --to-format ttl | grep -Fxq '<> a .' 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.BRabvpL7Sg/out to stdout and file: /tmp/autopkgtest.QBkw4D/command1-stdout 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: copying /tmp/tmp.BRabvpL7Sg/err to standard error and file: /tmp/autopkgtest.QBkw4D/command1-stdout 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: writing script pid 1273 to /tmp/autopkgtest_script_pid 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: checking for leaked background processes... 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: waiting for tee/cat subprocesses... 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: cleaning up... 2513s /tmp/autopkgtest.QBkw4D/wrapper.sh: Exit status: 0 2513s autopkgtest: DBG: testbed command exited with code 0 2513s autopkgtest [02:08:46]: test command1: -----------------------] 2513s autopkgtest: DBG: testbed executing test finished with exit status 0 2513s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/command1-stdout /tmp/autopkgtest-work.14s59fnj/out/command1-stdout 2514s autopkgtest: DBG: got reply from testbed: ok 2514s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/command1-stderr /tmp/autopkgtest-work.14s59fnj/out/command1-stderr 2514s autopkgtest: DBG: got reply from testbed: ok 2514s autopkgtest [02:08:47]: test command1: - - - - - - - - - - results - - - - - - - - - - 2514s command1 PASS 2514s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.QBkw4D/command1-artifacts/ /tmp/autopkgtest-work.14s59fnj/out/artifacts/ 2514s autopkgtest: DBG: got reply from testbed: ok 2514s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.QBkw4D/command1-artifacts', '/tmp/autopkgtest.QBkw4D/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2514s autopkgtest: DBG: testbed command exited with code 0 2514s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 2514s autopkgtest [02:08:47]: @@@@@@@@@@@@@@@@@@@@ summary 2514s rust-oxrdf:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf:oxsdatatypes SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfio:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfio: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfio:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfxml:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfxml: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfxml:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxsdatatypes:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxsdatatypes: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxsdatatypes:custom-now SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparesults:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparesults: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparesults:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:calendar-ext SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph:http-client SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph:rocksdb-debug SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrocksdb-sys:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrocksdb-sys:pkg-config SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf:oxsdatatypes SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfio:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfio: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfio:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfxml:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfxml: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdfxml:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxsdatatypes:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxsdatatypes: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxsdatatypes:custom-now SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl:async-tokio SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxttl:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparesults:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparesults: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparesults:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:calendar-ext SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spareval:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-spargebra:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:rdf-star SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:sep-0002 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-sparopt:sep-0006 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph: SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph:http-client SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxigraph:rocksdb-debug SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrocksdb-sys:@ SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrocksdb-sys:pkg-config SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2514s rust-oxrdf:default PASS 2514s rust-oxrdfio:default PASS 2514s rust-oxrdfxml:default PASS 2514s rust-oxsdatatypes:default PASS 2514s rust-oxttl:default PASS 2514s rust-sparesults:default PASS 2514s rust-spareval:default PASS 2514s rust-spargebra:default PASS 2514s rust-sparopt:default PASS 2514s rust-oxigraph:default PASS 2514s rust-oxrocksdb-sys:default PASS 2514s command1 PASS 2514s autopkgtest: DBG: testbed stop 2514s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.QBkw4D 2514s autopkgtest: DBG: sending command to testbed: close 2531s autopkgtest: DBG: got reply from testbed: ok 2531s autopkgtest: DBG: sending command to testbed: quit 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for ec080ba1-a779-4fdb-b733-b304c3c8546a to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for f7b1575a-9947-407c-88aa-f1ab8dff07f4 to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for 30d170b9-deba-4336-b1da-9176b5e29a68 to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for c63c9d27-cdee-4a74-8d03-6da32c0e485b to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s flock: timeout while waiting to get lock 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for 71ebbfc9-dc44-4af3-b70d-4ed68023e4f5 to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s flock: timeout while waiting to get lock 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for ef37a8ee-e115-4a7b-8b3c-38f8592a3ca4 to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for da970d22-51b2-44f7-8561-cefb1d8282d5 to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for 1d394016-0682-4cc7-9767-431665736e5c to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s flock: timeout while waiting to get lock 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for be994366-9379-400f-a305-ba09d00d6d29 to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s flock: timeout while waiting to get lock 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for b1c40be6-5366-46ac-82bf-d153db9cdd6d to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for 6172544e-4891-46b6-a1a1-0f0be354fdb3 to get deleted. 2531s nova [W] Using flock in prodstack6-s390x 2531s Creating nova instance adt-plucky-s390x-oxigraph-20250216-012653-juju-7f2275-prod-proposed-migration-environment-15-f19bb5de-3914-4c25-aa03-6c4125386a92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 2531s nova [W] Timed out waiting for de35e52c-3977-4197-843d-16bacd4cc5f3 to get deleted.