1s autopkgtest: DBG: testbed init 1s autopkgtest [10:04:50]: starting date and time: 2025-02-04 10:04:50+0000 1s autopkgtest [10:04:50]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 1s autopkgtest [10:04:50]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.vifxrq25/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:rust-defaults,src:libgit2,src:rustc-1.84 --apt-upgrade rust-sequoia-openpgp --debug --timeout-short=300 --timeout-copy=20000 --timeout-test=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-big-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-30.secgroup --name adt-plucky-s390x-rust-sequoia-openpgp-20250204-100449-juju-7f2275-prod-proposed-migration-environment-15-ea760ab2-7804-4051-ac62-8049ddaee91e --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/ 1s autopkgtest: DBG: got reply from testbed: ok 1s autopkgtest: DBG: testbed open, scratch=None 1s autopkgtest: DBG: sending command to testbed: open 95s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.EJJwWD 95s autopkgtest: DBG: sending command to testbed: print-execute-command 95s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ik74rnt0/runcmd 95s autopkgtest: DBG: sending command to testbed: capabilities 95s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu isolation-machine revert-full-system reboot root-on-testbed 95s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'reboot', 'root-on-testbed', 'has_internet'] 95s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.EJJwWD'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.EJJwWD/wrapper.sh 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.EJJwWD/wrapper.sh'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest [10:06:25]: testbed dpkg architecture: s390x 96s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest [10:06:25]: testbed apt version: 2.9.18 96s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed has eatmydata 96s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest [10:06:25]: @@@@@@@@@@@@@@@@@@@@ test bed setup 96s 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 [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [10:06:26]: testbed release detected to be: None 97s 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 [] 97s autopkgtest: DBG: testbed command exited with code 0 97s 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 [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: adding APT source: Types: deb deb-src 97s URIs: http://ftpmaster.internal/ubuntu/ 97s Suites: plucky-proposed 97s Components: main restricted universe multiverse 97s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 97s 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 [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 97s Package: * 97s Pin: release plucky-proposed 97s Pin-Priority: 500 97s 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 [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [10:06:26]: updating testbed package index (apt update) 97s 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'] 98s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 98s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 98s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 98s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 98s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [908 kB] 99s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [16.6 kB] 99s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [79.8 kB] 99s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [111 kB] 99s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [803 kB] 99s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3644 B] 99s Fetched 2033 kB in 2s (1136 kB/s) 100s Reading package lists... 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 100s Package: * 100s Pin: release plucky-proposed 100s Pin-Priority: 100 100s 100s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 100s Pin: release plucky-proposed 100s Pin-Priority: 995 100s 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:rust-defaults:any src:libgit2:any src:rustc-1.84:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s 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.EJJwWD/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s 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'] 100s + lsb_release --codename --short 100s + RELEASE=plucky 100s + cat 100s + [ plucky != trusty ] 100s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 101s Calculating upgrade... 101s The following packages were automatically installed and are no longer required: 101s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 101s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 101s linux-tools-6.11.0-8-generic 101s Use 'sudo apt autoremove' to remove them. 101s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 101s + /usr/lib/apt/apt-helper analyze-pattern ?true 101s + uname -r 101s + sed s/\./\\./g 101s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 101s + apt+ tail -n+2 101s list ?obsolete 101s + + grep -v ^linux-.*6\.12\.0-12-generic.* 101s cut -d/ -f1 101s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 101s + true 101s + obsolete_pkgs= 101s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 101s The following packages will be REMOVED: 101s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 101s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 101s linux-tools-6.11.0-8-generic* 101s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 101s After this operation, 143 MB disk space will be freed. 102s (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 ... 80961 files and directories currently installed.) 102s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 102s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 104s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 104s + grep -q trusty /etc/lsb-release 104s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 104s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 104s (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 ... 56554 files and directories currently installed.) 104s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 104s Reading package lists... 104s Building dependency tree... 104s Reading state information... 104s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 104s Starting 2 pkgProblemResolver with broken count: 0 104s Done 104s Entering ResolveByKeep 104s 104s + [ ! -d /usr/share/doc/unattended-upgrades ] 104s + [ ! -d /usr/share/doc/lxd ] 104s + [ ! -d /usr/share/doc/lxd-client ] 104s + [ ! -d /usr/share/doc/snapd ] 104s + type iptables 104s + cat 104s + chmod 755 /etc/rc.local 104s + . /etc/rc.local 104s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 104s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 104s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 104s + uname -m 104s + [ s390x = ppc64le ] 104s + [ -d /run/systemd/system ] 104s + systemd-detect-virt --quiet --vm 104s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 104s + cat 104s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 104s + echo COMPRESS=lz4 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [10:06:32]: upgrading testbed (apt dist-upgrade and autopurge) 104s 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'] 104s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 104s autopkgtest: DBG: testbed command exited with code 0 104s 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'] 104s Reading package lists... 104s Building dependency tree... 104s Reading state information... 104s Starting pkgProblemResolver with broken count: 0 104s Starting 2 pkgProblemResolver with broken count: 0 104s Done 104s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 104s autopkgtest: DBG: testbed command exited with code 0 104s 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.EJJwWD/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 105s autopkgtest: DBG: testbed command exited with code 1 105s autopkgtest [10:06:34]: rebooting testbed after setup commands that affected boot 105s autopkgtest: DBG: sending command to testbed: reboot 118s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 123s autopkgtest: DBG: got reply from testbed: ok 123s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 123s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.EJJwWD'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.EJJwWD/autopkgtest-reboot 124s autopkgtest: DBG: got reply from testbed: ok 124s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.EJJwWD'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.EJJwWD/autopkgtest-reboot-prepare 125s autopkgtest: DBG: got reply from testbed: ok 125s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [10:06:54]: testbed running kernel: Linux 6.12.0-12-generic #12-Ubuntu SMP Wed Jan 22 15:18:24 UTC 2025 125s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.EJJwWD/testbed-packages"], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.EJJwWD/testbed-packages /tmp/autopkgtest-work.vifxrq25/out/testbed-packages 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 126s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.EJJwWD'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.EJJwWD/autopkgtest-reboot 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.EJJwWD'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.EJJwWD/autopkgtest-reboot-prepare 127s autopkgtest: DBG: got reply from testbed: ok 127s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.EJJwWD/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: Binaries: initialising 128s autopkgtest [10:06:57]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-sequoia-openpgp 128s autopkgtest: DBG: blame += rust-sequoia-openpgp 128s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 128s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-sequoia-openpgp'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-sequoia-openpgp-dev$'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-sequoia-openpgp-dev=1.21.2-2'], kind short, sout pipe, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: install_deps: deps_new=[] 129s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s 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.EJJwWD/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-sequoia-openpgp=1.21.2-2 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 rust-sequoia-openpgp_*.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=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1'] 129s + cd / 129s + mktemp -d /tmp/autopkgtest.EJJwWD/build.XXX 129s + builddir=/tmp/autopkgtest.EJJwWD/build.GN9 129s + cd /tmp/autopkgtest.EJJwWD/build.GN9 129s + apt-get source -d -q --only-source rust-sequoia-openpgp=1.21.2-2 131s + OUT=Reading package lists... 131s NOTICE: 'rust-sequoia-openpgp' packaging is maintained in the 'Git' version control system at: 131s https://salsa.debian.org/rust-team/debcargo-conf.git [src/sequoia-openpgp] 131s Please use: 131s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/sequoia-openpgp] 131s to retrieve the latest (possibly unreleased) updates to the package. 131s Need to get 3030 kB of source archives. 131s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (dsc) [3728 B] 131s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (tar) [3018 kB] 131s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (diff) [8528 B] 131s Fetched 3030 kB in 2s (1809 kB/s) 131s Download complete and in download only mode 131s + [ -n ] 131s + echo Reading package lists... 131s NOTICE: 'rust-sequoia-openpgp' packaging is maintained in the 'Git' version control system at: 131s https://salsa.debian.org/rust-team/debcargo-conf.git [src/sequoia-openpgp] 131s Please use: 131s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/sequoia-openpgp] 131s to retrieve the latest (possibly unreleased) updates to the package. 131s Need to get 3030 kB of source archives. 131s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (dsc) [3728 B] 131s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (tar) [3018 kB] 131s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (diff) [8528 B] 131s Fetched 3030 kB in 2s (1809 kB/s) 131s Download complete and in download only mode 131s + grep ^Get: 131s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (dsc) [3728 B] 131s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (tar) [3018 kB] 131s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-sequoia-openpgp 1.21.2-2 (diff) [8528 B] 131s + dpkg-source -x rust-sequoia-openpgp_1.21.2-2.dsc src 131s gpgv: Signature made Sat Oct 5 14:01:02 2024 UTC 131s gpgv: using RSA key 6DD9067BB4E82B402673DA69761E532A37134530 131s gpgv: issuer "debian@fabian.gruenbichler.email" 131s gpgv: Can't check signature: No public key 131s dpkg-source: warning: cannot verify inline signature for ./rust-sequoia-openpgp_1.21.2-2.dsc: no acceptable signature found 131s + chmod -R a+rX . 131s + cd src/. 131s + pwd 131s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest [10:07:00]: testing package rust-sequoia-openpgp version 1.21.2-2 131s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.EJJwWD/build.GN9/src/debian/ /tmp/autopkgtest-work.vifxrq25/out/pkg/debian/ 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 131s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 131s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 131s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 131s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 131s autopkgtest: DBG: processing dependency @ 131s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 131s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:compression path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression,crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:compression'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 131s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 131s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 131s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 131s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 131s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 131s autopkgtest: DBG: processing dependency @ 131s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 131s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:compression-bzip2 path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression-bzip2,crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:compression-bzip2'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 131s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 131s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 131s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 131s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 131s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 131s autopkgtest: DBG: processing dependency @ 131s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 131s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:compression-deflate path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression-deflate,crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:compression-deflate'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 132s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 132s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 132s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 132s autopkgtest: DBG: processing dependency @ 132s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 132s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:crypto-nettle path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:crypto-nettle'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 132s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 132s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 132s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 132s autopkgtest: DBG: processing dependency @ 132s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 132s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:crypto-openssl path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features crypto-openssl" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:crypto-openssl'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 132s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 132s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 132s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 132s autopkgtest: DBG: processing dependency @ 132s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 132s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:crypto-botan2 path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features crypto-botan2" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:crypto-botan2'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 132s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 132s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 132s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 132s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 132s autopkgtest: DBG: processing dependency @ 132s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 132s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:default'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 132s autopkgtest [10:07:01]: build not needed 132s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.EJJwWD/build.GN9/src/ /tmp/autopkgtest-work.vifxrq25/out/tests-tree/ 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 135s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 135s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 135s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:compression path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression,crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:compression'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 135s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 135s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 135s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:compression-bzip2 path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression-bzip2,crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:compression-bzip2'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 135s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 135s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 135s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:compression-deflate path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression-deflate,crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:compression-deflate'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 135s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 135s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 135s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:crypto-nettle path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features crypto-nettle" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:crypto-nettle'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 135s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 135s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 135s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:crypto-openssl path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features crypto-openssl" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:crypto-openssl'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 135s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 135s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 135s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:crypto-botan2 path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features crypto-botan2" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:crypto-botan2'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+default-dev 135s autopkgtest: DBG: processing dependency librust-criterion-0.5+html-reports-dev 135s autopkgtest: DBG: processing dependency librust-quickcheck-1-dev 135s autopkgtest: DBG: processing dependency librust-rpassword-7+default-dev 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency librust-sequoia-openpgp-dev 135s autopkgtest: DBG: Test defined: name librust-sequoia-openpgp-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-sequoia-openpgp-dev:default'] depends ['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest [10:07:04]: test librust-sequoia-openpgp-dev:compression: preparing testbed 135s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 135s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-criterion-0.5+default-dev', 'librust-criterion-0.5+html-reports-dev', 'librust-quickcheck-1-dev', 'librust-rpassword-7+default-dev', 'librust-sequoia-openpgp-dev'] 135s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-criterion-0.5+default-dev, librust-criterion-0.5+html-reports-dev, librust-quickcheck-1-dev, librust-rpassword-7+default-dev, librust-sequoia-openpgp-dev 135s autopkgtest: DBG: can use apt-get on testbed: True 135s 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-cargo (>= 18), librust-criterion-0.5+default-dev, librust-criterion-0.5+html-reports-dev, librust-quickcheck-1-dev, librust-rpassword-7+default-dev, librust-sequoia-openpgp-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 136s Reading package lists... 136s Building dependency tree... 136s Reading state information... 136s Starting pkgProblemResolver with broken count: 0 136s Starting 2 pkgProblemResolver with broken count: 0 136s Done 136s The following NEW packages will be installed: 136s autoconf automake autopoint autotools-dev cargo cargo-1.84 clang clang-19 136s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit 136s dh-autoreconf dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz 136s fontconfig-config fonts-dejavu-core fonts-dejavu-mono gcc gcc-14 136s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 136s libarchive-zip-perl libasan8 libbotan-2-19 libbotan-2-dev libbrotli-dev 136s libbz2-dev libcc1-0 libclang-19-dev libclang-common-19-dev libclang-cpp19 136s libclang-dev libdebhelper-perl libexpat1-dev 136s libfile-stripnondeterminism-perl libfontconfig-dev libfontconfig1 136s libfreetype-dev libfreetype6 libgc1 libgcc-14-dev libgit2-1.9 libgmp-dev 136s libgmpxx4ldbl libgomp1 libisl23 libitm1 libmpc3 libobjc-14-dev libobjc4 136s libpfm4 libpkgconf3 libpng-dev librust-ab-glyph-dev 136s librust-ab-glyph-rasterizer+libm-dev librust-ab-glyph-rasterizer-dev 136s librust-addchain-dev librust-addr2line-dev librust-adler-dev 136s librust-aead-dev librust-aes-dev librust-aes-gcm-dev librust-ahash-dev 136s librust-aho-corasick-dev librust-allocator-api2-dev librust-anes-dev 136s librust-anstream-dev librust-anstyle-dev librust-anstyle-parse-dev 136s librust-anstyle-query-dev librust-anyhow-dev librust-arbitrary-dev 136s librust-arrayvec-dev librust-ascii-canvas-dev librust-async-attributes-dev 136s librust-async-channel-dev librust-async-executor-dev librust-async-fs-dev 136s librust-async-global-executor-dev librust-async-io-dev 136s librust-async-lock-dev librust-async-net-dev librust-async-process-dev 136s librust-async-signal-dev librust-async-std-dev librust-async-task-dev 136s librust-atomic-dev librust-atomic-waker-dev librust-autocfg-dev 136s librust-backtrace-dev librust-base16ct-dev librust-base64-dev 136s librust-base64ct-dev librust-bindgen-dev librust-bit-field-dev 136s librust-bit-set-dev librust-bit-vec-dev librust-bitflags-1-dev 136s librust-bitflags-dev librust-bitvec-dev librust-blobby-dev 136s librust-block-buffer-dev librust-block-padding-dev librust-blocking-dev 136s librust-blowfish-dev librust-botan-dev librust-botan-sys-dev 136s librust-buffered-reader-dev librust-bumpalo-dev librust-bytecheck-derive-dev 136s librust-bytecheck-dev librust-bytemuck-derive-dev librust-bytemuck-dev 136s librust-byteorder-dev librust-bytes-dev librust-bzip2-dev 136s librust-bzip2-sys-dev librust-camellia-dev librust-cast-dev 136s librust-cast5-dev librust-cbc-dev librust-cc-dev librust-cexpr-dev 136s librust-cfb-mode-dev librust-cfg-if-0.1-dev librust-cfg-if-dev 136s librust-chrono-dev librust-ciborium-dev librust-ciborium-io-dev 136s librust-ciborium-ll-dev librust-cipher-dev librust-clang-sys-dev 136s librust-clap-builder-dev librust-clap-derive-dev librust-clap-dev 136s librust-clap-lex-dev librust-clap-mangen-dev librust-cmac-dev 136s librust-color-quant-dev librust-colorchoice-dev 136s librust-compiler-builtins+core-dev 136s librust-compiler-builtins+rustc-dep-of-std-dev librust-compiler-builtins-dev 136s librust-concurrent-queue-dev librust-const-oid-dev librust-const-random-dev 136s librust-const-random-macro-dev librust-core-maths-dev 136s librust-cpp-demangle-dev librust-cpufeatures-dev librust-crc32fast-dev 136s librust-criterion-dev librust-critical-section-dev 136s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 136s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 136s librust-crypto-bigint-dev librust-crypto-common-dev librust-cstr-dev 136s librust-csv-core-dev librust-csv-dev librust-ctr-dev librust-dbl-dev 136s librust-defmt-dev librust-defmt-macros-dev librust-defmt-parser-dev 136s librust-der-derive-dev librust-der-dev librust-deranged-dev 136s librust-derive-arbitrary-dev librust-des-dev librust-digest-dev 136s librust-dirs-dev librust-dirs-next-dev librust-dirs-sys-dev 136s librust-dirs-sys-next-dev librust-dlib-dev librust-dsa-dev 136s librust-dyn-clone-dev librust-eax-dev librust-ecb-dev librust-ecdsa-dev 136s librust-ed25519-dev librust-either-dev librust-elliptic-curve-dev 136s librust-ena-dev librust-env-filter-dev librust-env-logger-dev 136s librust-equivalent-dev librust-erased-serde-dev librust-errno-dev 136s librust-event-listener-dev librust-event-listener-strategy-dev 136s librust-exr-dev librust-fallible-iterator-dev librust-fastrand-dev 136s librust-ff-derive-dev librust-ff-dev librust-fixedbitset-dev 136s librust-flagset-dev librust-flate2-dev librust-float-ord-dev 136s librust-flume-dev librust-font-kit-dev librust-foreign-types-0.3-dev 136s librust-foreign-types-shared-0.1-dev librust-freetype-dev 136s librust-freetype-sys-dev librust-funty-dev librust-futures-channel-dev 136s librust-futures-core-dev librust-futures-dev librust-futures-executor-dev 136s librust-futures-io-dev librust-futures-lite-dev librust-futures-macro-dev 136s librust-futures-sink-dev librust-futures-task-dev librust-futures-util-dev 136s librust-generic-array-dev librust-getrandom-dev librust-ghash-dev 136s librust-gif-dev librust-gimli-dev librust-glob-dev librust-group-dev 136s librust-half-dev librust-hash32-dev librust-hashbrown-dev 136s librust-heapless-dev librust-heck-dev librust-hex-literal-dev 136s librust-hkdf-dev librust-hmac-dev librust-humantime-dev 136s librust-iana-time-zone-dev librust-idea-dev librust-idna-dev 136s librust-image-dev librust-image-webp-dev librust-indexmap-dev 136s librust-inout-dev librust-is-terminal-dev librust-itertools-dev 136s librust-itoa-dev librust-jobserver-dev librust-jpeg-decoder-dev 136s librust-js-sys-dev librust-kv-log-macro-dev librust-lalrpop-dev 136s librust-lalrpop-util-dev librust-lazy-static-dev librust-lebe-dev 136s librust-libc-dev librust-libloading-dev librust-libm-dev 136s librust-libz-sys-dev librust-linux-raw-sys-dev librust-lock-api-dev 136s librust-log-dev librust-md-5-dev librust-md5-asm-dev librust-memchr-dev 136s librust-memmap2-dev librust-memsec-dev librust-memuse-dev 136s librust-minimal-lexical-dev librust-miniz-oxide-dev librust-mio-dev 136s librust-nanorand-dev librust-nettle-dev librust-nettle-sys-dev 136s librust-new-debug-unreachable-dev librust-no-panic-dev librust-nom+std-dev 136s librust-nom-dev librust-nonempty-dev librust-num-bigint-dev 136s librust-num-bigint-dig-dev librust-num-conv-dev librust-num-cpus-dev 136s librust-num-integer-dev librust-num-iter-dev librust-num-threads-dev 136s librust-num-traits-dev librust-object-dev librust-once-cell-dev 136s librust-oorandom-dev librust-opaque-debug-dev librust-openssl-dev 136s librust-openssl-macros-dev librust-openssl-sys-dev librust-option-ext-dev 136s librust-owned-ttf-parser-dev librust-owning-ref-dev librust-p256-dev 136s librust-p384-dev librust-parking-dev librust-parking-lot-core-dev 136s librust-parking-lot-dev librust-password-hash-dev 136s librust-pathfinder-geometry-dev librust-pathfinder-simd-dev 136s librust-pbkdf2-dev librust-pem-rfc7468-dev librust-petgraph-dev 136s librust-phf-shared-dev librust-pico-args-dev librust-pin-project-lite-dev 136s librust-pin-utils-dev librust-pkcs5-dev librust-pkcs8-dev 136s librust-pkg-config-dev librust-plotters-backend-dev 136s librust-plotters-bitmap-dev librust-plotters-dev librust-plotters-svg-dev 136s librust-png-dev librust-polling-dev librust-polyval-dev 136s librust-portable-atomic-dev librust-powerfmt-dev librust-powerfmt-macros-dev 136s librust-ppv-lite86-dev librust-precomputed-hash-dev librust-prettyplease-dev 136s librust-primeorder-dev librust-proc-macro-error-attr-dev 136s librust-proc-macro-error-attr2-dev librust-proc-macro-error-dev 136s librust-proc-macro-error2-dev librust-proc-macro2-dev 136s librust-ptr-meta-derive-dev librust-ptr-meta-dev 136s librust-pure-rust-locales-dev librust-qoi-dev librust-quick-error-dev 136s librust-quickcheck-dev librust-quote-dev librust-radium-dev 136s librust-rand-chacha-dev librust-rand-core+getrandom-dev 136s librust-rand-core+serde-dev librust-rand-core+std-dev librust-rand-core-dev 136s librust-rand-dev librust-rand-distr-dev librust-rand-xorshift-dev 136s librust-rayon-core-dev librust-rayon-dev librust-regex-automata-dev 136s librust-regex-dev librust-regex-syntax-dev librust-rend-dev 136s librust-rfc6979-dev librust-rgb-dev librust-ripemd-dev 136s librust-rkyv-derive-dev librust-rkyv-dev librust-rlp-derive-dev 136s librust-rlp-dev librust-roff-dev librust-rpassword-dev librust-rtoolbox-dev 136s librust-rustc-demangle-dev librust-rustc-hash-dev librust-rustc-hex-dev 136s librust-rustc-std-workspace-core-dev librust-rustc-version-dev 136s librust-rustix-dev librust-rustversion-dev librust-ruzstd-dev 136s librust-ryu-dev librust-salsa20-dev librust-same-file-dev 136s librust-scopeguard-dev librust-scrypt-dev librust-seahash-dev 136s librust-sec1-dev librust-semver-dev librust-sequoia-openpgp-dev 136s librust-serde-bytes-dev librust-serde-derive-dev librust-serde-dev 136s librust-serde-fmt-dev librust-serde-json-dev librust-serde-test-dev 136s librust-serdect-dev librust-sha1-asm-dev librust-sha1-dev 136s librust-sha1collisiondetection-dev librust-sha2-asm-dev librust-sha2-dev 136s librust-shlex-dev librust-signal-hook-registry-dev librust-signature-dev 136s librust-simd-adler32-dev librust-simdutf8-dev librust-siphasher-dev 136s librust-slab-dev librust-slog-dev librust-smallvec-dev librust-smol-dev 136s librust-smol-str-dev librust-socket2-dev librust-spin-dev librust-spki-dev 136s librust-stable-deref-trait-dev librust-static-assertions-dev 136s librust-string-cache-dev librust-strsim-dev librust-subtle-dev 136s librust-sval-buffer-dev librust-sval-derive-dev librust-sval-dev 136s librust-sval-dynamic-dev librust-sval-fmt-dev librust-sval-ref-dev 136s librust-sval-serde-dev librust-syn-1-dev librust-syn-dev librust-tap-dev 136s librust-tempfile-dev librust-term-dev librust-terminal-size-dev 136s librust-thiserror-1-dev librust-thiserror-dev librust-thiserror-impl-1-dev 136s librust-thiserror-impl-dev librust-tiff-dev librust-time-core-dev 136s librust-time-dev librust-time-macros-dev librust-tiny-keccak-dev 136s librust-tinytemplate-dev librust-tinyvec+tinyvec-macros-dev 136s librust-tinyvec-dev librust-tinyvec-macros-dev librust-tokio-dev 136s librust-tokio-macros-dev librust-tracing-attributes-dev 136s librust-tracing-core-dev librust-tracing-dev librust-traitobject-dev 136s librust-ttf-parser-dev librust-twofish-dev librust-twox-hash-dev 136s librust-typed-arena-dev librust-typemap-dev librust-typenum-dev 136s librust-ufmt-write-dev librust-unicase-dev librust-unicode-bidi-dev 136s librust-unicode-ident-dev librust-unicode-normalization-dev 136s librust-unicode-segmentation-dev librust-unicode-width-dev 136s librust-unicode-xid-dev librust-universal-hash-dev librust-unsafe-any-dev 136s librust-utf8parse-dev librust-uuid-dev librust-valuable-derive-dev 136s librust-valuable-dev librust-value-bag-dev librust-value-bag-serde1-dev 136s librust-value-bag-sval2-dev librust-vcpkg-dev librust-version-check-dev 136s librust-walkdir-dev librust-wasm-bindgen-backend-dev 136s librust-wasm-bindgen-dev librust-wasm-bindgen-macro-dev 136s librust-wasm-bindgen-macro-support-dev librust-wasm-bindgen-shared-dev 136s librust-weezl-dev librust-winapi-dev librust-winapi-i686-pc-windows-gnu-dev 136s librust-winapi-util-dev librust-winapi-x86-64-pc-windows-gnu-dev 136s librust-wyz-dev librust-xxhash-rust-dev librust-yeslogic-fontconfig-sys-dev 136s librust-zerocopy-derive-dev librust-zerocopy-dev librust-zeroize-derive-dev 136s librust-zeroize-dev librust-zune-core-dev librust-zune-inflate-dev 136s librust-zune-jpeg-dev libssl-dev libstd-rust-1.84 libstd-rust-1.84-dev 136s libstdc++-14-dev libtool libtspi1 libubsan1 llvm llvm-19 136s llvm-19-linker-tools llvm-19-runtime llvm-runtime m4 nettle-dev pkgconf 136s pkgconf-bin po-debconf rustc rustc-1.84 uuid-dev zlib1g-dev 136s 0 upgraded, 520 newly installed, 0 to remove and 0 not upgraded. 136s Need to get 246 MB of archives. 136s After this operation, 1292 MB of additional disk space will be used. 136s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 137s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 137s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.16.5-1.3ubuntu1 [558 kB] 137s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 137s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 138s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 141s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 145s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 145s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 145s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-13ubuntu1 [9570 kB] 145s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-13ubuntu1 [1026 B] 145s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [5452 B] 145s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.1.0-2ubuntu1 [22.4 kB] 145s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-13ubuntu1 [50.7 kB] 146s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-13ubuntu1 [151 kB] 146s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-13ubuntu1 [30.9 kB] 146s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-13ubuntu1 [2964 kB] 146s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-13ubuntu1 [1184 kB] 146s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-13ubuntu1 [1037 kB] 146s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-13ubuntu1 [18.7 MB] 147s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-13ubuntu1 [523 kB] 147s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1204 B] 147s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.1.0-2ubuntu1 [4996 B] 147s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 147s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-cpp19 s390x 1:19.1.7-1ubuntu1 [16.7 MB] 148s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-13ubuntu1 [2612 kB] 149s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgc1 s390x 1:8.2.8-1 [93.7 kB] 149s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc4 s390x 14.2.0-13ubuntu1 [49.9 kB] 149s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc-14-dev s390x 14.2.0-13ubuntu1 [194 kB] 149s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-common-19-dev s390x 1:19.1.7-1ubuntu1 [742 kB] 149s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-linker-tools s390x 1:19.1.7-1ubuntu1 [1546 kB] 149s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x clang-19 s390x 1:19.1.7-1ubuntu1 [79.4 kB] 149s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x clang s390x 1:19.0-63 [6198 B] 149s Get:35 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 150s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 150s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-2.1 [168 kB] 150s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 150s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 150s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-1 [20.2 kB] 151s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-1 [5068 B] 151s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-1 [49.9 kB] 151s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 151s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 151s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 151s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 151s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 151s Get:48 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 151s Get:49 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 151s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 151s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 151s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 151s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 151s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 151s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libtspi1 s390x 0.3.15-0.4 [152 kB] 151s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libbotan-2-19 s390x 2.19.3+dfsg-1ubuntu2 [1636 kB] 152s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x libbotan-2-dev s390x 2.19.3+dfsg-1ubuntu2 [2786 kB] 152s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libbrotli-dev s390x 1.1.0-2build3 [395 kB] 152s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 152s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-19-dev s390x 1:19.1.7-1ubuntu1 [32.0 MB] 154s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-dev s390x 1:19.0-63 [5770 B] 154s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 155s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 155s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 155s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 155s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libpng-dev s390x 1.6.44-3 [279 kB] 155s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype-dev s390x 2.13.3+dfsg-1 [605 kB] 155s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x uuid-dev s390x 2.40.2-14ubuntu1 [54.0 kB] 155s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 155s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 155s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 155s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig-dev s390x 2.15.0-1.1ubuntu2 [172 kB] 155s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libgmpxx4ldbl s390x 2:6.3.0+dfsg-2ubuntu7 [10.1 kB] 155s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libgmp-dev s390x 2:6.3.0+dfsg-2ubuntu7 [424 kB] 155s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ab-glyph-rasterizer-dev s390x 0.1.7-1 [12.2 kB] 155s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libm-dev s390x 0.2.8-1 [101 kB] 156s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ab-glyph-rasterizer+libm-dev s390x 0.1.7-1 [1064 B] 156s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-core-maths-dev s390x 0.1.0-2 [7948 B] 156s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ttf-parser-dev s390x 0.24.1-1 [148 kB] 156s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owned-ttf-parser-dev s390x 0.24.0-1 [129 kB] 156s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ab-glyph-dev s390x 0.2.28-1 [20.7 kB] 156s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 156s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 156s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 156s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 156s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 156s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 156s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 157s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-traits-dev s390x 0.2.19-2 [46.2 kB] 157s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-integer-dev s390x 0.1.46-1 [22.6 kB] 157s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-dev s390x 1.0.8-1 [16.7 kB] 157s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 157s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 157s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 157s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 157s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arrayvec-dev s390x 0.7.6-1 [31.7 kB] 157s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-utf8parse-dev s390x 0.2.1-1 [15.0 kB] 157s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-parse-dev s390x 0.2.1-1 [17.1 kB] 157s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-query-dev s390x 1.0.0-1 [9768 B] 157s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-colorchoice-dev s390x 1.0.0-1 [8338 B] 157s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstream-dev s390x 0.6.15-1 [25.7 kB] 158s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 158s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 158s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 158s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 158s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-3 [6956 B] 158s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 158s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 158s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 158s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 159s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 159s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 159s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 159s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 159s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 159s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 159s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 159s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 160s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 160s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 160s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 160s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 160s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 160s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 160s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-8 [37.9 kB] 160s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 160s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 160s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 160s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 160s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 161s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 161s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 161s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 161s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 161s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 161s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 161s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 161s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 161s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 161s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.15-1 [41.7 kB] 161s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 161s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 162s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 162s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 162s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 162s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 162s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 162s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 162s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 162s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 162s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 162s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 162s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 163s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 163s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-env-filter-dev s390x 0.1.3-1 [15.0 kB] 163s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-humantime-dev s390x 2.1.0-2 [19.2 kB] 163s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-env-logger-dev s390x 0.11.5-2 [30.2 kB] 163s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 163s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 163s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 163s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 163s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 163s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 163s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 163s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quickcheck-dev s390x 1.0.3-5 [28.1 kB] 164s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-bigint-dev s390x 0.4.6-1 [84.9 kB] 164s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addchain-dev s390x 0.2.0-1 [10.6 kB] 164s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 164s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 164s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 164s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 164s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 164s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 164s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 164s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 165s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 165s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 165s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 165s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-0.1-dev s390x 0.1.10-3 [10.5 kB] 165s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 165s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 165s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 165s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 165s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 165s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 165s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 165s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 165s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 166s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 166s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 166s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 166s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 166s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 166s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 166s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 166s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-1-dev s390x 1.3.2-7 [25.6 kB] 166s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-dev s390x 2.0.11-1 [21.9 kB] 166s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-dev s390x 2.0.11-1 [29.0 kB] 166s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-parser-dev s390x 0.4.1-1 [11.8 kB] 167s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error-attr2-dev s390x 2.0.0-1 [9402 B] 167s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error2-dev s390x 2.0.1-1 [26.2 kB] 167s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-macros-dev s390x 0.4.0-1 [22.4 kB] 167s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-dev s390x 0.3.10-1 [26.8 kB] 167s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hash32-dev s390x 0.3.1-2 [12.1 kB] 167s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ufmt-write-dev s390x 0.1.0-1 [3768 B] 167s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-heapless-dev s390x 0.8.0-2 [69.4 kB] 167s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aead-dev s390x 0.5.2-2 [17.5 kB] 167s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-padding-dev s390x 0.3.3-1 [10.4 kB] 167s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-inout-dev s390x 0.1.3-3 [12.5 kB] 167s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cipher-dev s390x 0.4.4-3 [20.0 kB] 168s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpufeatures-dev s390x 0.2.16-1 [15.5 kB] 168s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aes-dev s390x 0.8.4-1 [111 kB] 168s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ctr-dev s390x 0.9.2-1 [19.8 kB] 168s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-opaque-debug-dev s390x 0.3.0-1 [7472 B] 168s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-universal-hash-dev s390x 0.5.1-1 [11.0 kB] 168s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-polyval-dev s390x 0.6.1-1 [18.9 kB] 168s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ghash-dev s390x 0.5.0-1 [11.2 kB] 168s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aes-gcm-dev s390x 0.10.3-2 [131 kB] 168s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anes-dev s390x 0.1.6-1 [21.1 kB] 169s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 169s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anyhow-dev s390x 1.0.86-1 [44.3 kB] 169s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-i686-pc-windows-gnu-dev s390x 0.4.0-1 [3652 B] 169s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-x86-64-pc-windows-gnu-dev s390x 0.4.0-1 [3660 B] 169s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-dev s390x 0.3.9-1 [953 kB] 169s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dirs-sys-next-dev s390x 0.1.1-1 [12.1 kB] 169s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dirs-next-dev s390x 2.0.0-1 [13.1 kB] 169s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustversion-dev s390x 1.0.14-1 [18.6 kB] 169s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-term-dev s390x 0.7.0-1 [41.8 kB] 170s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ascii-canvas-dev s390x 3.0.0-1 [13.6 kB] 170s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 170s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-attributes-dev all 1.1.2-6 [6756 B] 170s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-concurrent-queue-dev s390x 2.5.0-4 [23.9 kB] 170s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-dev s390x 2.2.0-1 [11.6 kB] 170s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 170s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-dev all 5.4.0-2 [31.1 kB] 170s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-strategy-dev s390x 0.5.3-1 [13.1 kB] 170s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-core-dev s390x 0.3.31-1 [16.9 kB] 170s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-channel-dev all 2.3.1-8 [13.1 kB] 170s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-task-dev all 4.7.1-3 [29.4 kB] 171s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fastrand-dev s390x 2.1.1-1 [17.8 kB] 171s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-io-dev s390x 0.3.31-1 [11.2 kB] 171s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-lite-dev s390x 2.3.0-2 [38.6 kB] 171s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slab-dev s390x 0.4.9-1 [21.2 kB] 171s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-executor-dev all 1.13.1-1 [18.7 kB] 171s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-lock-dev all 3.4.0-4 [29.3 kB] 171s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-atomic-waker-dev s390x 1.1.2-1 [14.3 kB] 171s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 171s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 171s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 171s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 171s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 171s Get:252 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blocking-dev all 1.6.1-5 [17.5 kB] 172s Get:253 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-fs-dev all 2.1.2-4 [15.3 kB] 172s Get:254 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-derive-dev s390x 1.5.0-2 [18.7 kB] 172s Get:255 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-dev s390x 1.21.0-1 [48.9 kB] 172s Get:256 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-dev s390x 2.6.0-1 [41.1 kB] 172s Get:257 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+core-dev s390x 0.1.139-1 [1096 B] 172s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+rustc-dep-of-std-dev s390x 0.1.139-1 [1106 B] 172s Get:259 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-errno-dev s390x 0.3.8-1 [13.0 kB] 172s Get:260 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-linux-raw-sys-dev s390x 0.4.14-1 [138 kB] 172s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustix-dev s390x 0.38.37-1 [272 kB] 172s Get:262 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-polling-dev s390x 3.4.0-1 [47.8 kB] 172s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-io-dev s390x 2.3.3-4 [41.0 kB] 172s Get:264 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 173s Get:265 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 173s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 173s Get:267 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 173s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 173s Get:269 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 173s Get:270 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 173s Get:271 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 173s Get:272 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 173s Get:273 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-global-executor-dev s390x 2.4.1-5 [14.6 kB] 173s Get:274 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-net-dev all 2.0.0-4 [14.6 kB] 173s Get:275 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-signal-dev s390x 0.2.10-1 [16.0 kB] 173s Get:276 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-process-dev all 2.3.0-1 [21.2 kB] 174s Get:277 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-kv-log-macro-dev all 1.0.8-4 [7290 B] 174s Get:278 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-utils-dev s390x 0.1.0-1 [9340 B] 174s Get:279 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-std-dev all 1.13.0-3 [170 kB] 177s Get:280 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-atomic-dev s390x 0.6.0-1 [15.5 kB] 177s Get:281 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-base16ct-dev s390x 0.2.0-1 [11.8 kB] 177s Get:282 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-base64-dev s390x 0.22.1-1 [64.2 kB] 177s Get:283 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-base64ct-dev s390x 1.6.0-1 [29.1 kB] 177s Get:284 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-minimal-lexical-dev s390x 0.2.1-2 [87.0 kB] 177s Get:285 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom-dev s390x 7.1.3-1 [93.9 kB] 177s Get:286 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom+std-dev s390x 7.1.3-1 [1084 B] 177s Get:287 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cexpr-dev s390x 0.6.0-2 [19.6 kB] 177s Get:288 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-glob-dev s390x 0.3.2-1 [22.2 kB] 177s Get:289 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libloading-dev s390x 0.8.5-1 [29.2 kB] 177s Get:290 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-runtime s390x 1:19.1.7-1ubuntu1 [623 kB] 177s Get:291 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-runtime s390x 1:19.0-63 [5834 B] 177s Get:292 http://ftpmaster.internal/ubuntu plucky/universe s390x libpfm4 s390x 4.13.0+git83-g91970fe-1 [37.3 kB] 177s Get:293 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19 s390x 1:19.1.7-1ubuntu1 [21.1 MB] 184s Get:294 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm s390x 1:19.0-63 [4144 B] 184s Get:295 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clang-sys-dev s390x 1.8.1-3 [42.9 kB] 184s Get:296 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itertools-dev s390x 0.13.0-3 [123 kB] 184s Get:297 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-prettyplease-dev s390x 0.2.6-1 [45.4 kB] 184s Get:298 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hash-dev s390x 1.1.0-1 [10.8 kB] 184s Get:299 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 185s Get:300 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bindgen-dev s390x 0.70.1-2 [186 kB] 185s Get:301 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bit-field-dev s390x 0.10.2-1 [12.1 kB] 185s Get:302 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bit-vec-dev s390x 0.6.3-1 [21.1 kB] 185s Get:303 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bit-set-dev s390x 0.5.2-1 [15.7 kB] 185s Get:304 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-funty-dev s390x 2.0.0-1 [13.8 kB] 185s Get:305 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-radium-dev s390x 1.1.0-1 [14.9 kB] 185s Get:306 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tap-dev s390x 1.0.1-1 [12.7 kB] 185s Get:307 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-traitobject-dev s390x 0.1.0-1 [4540 B] 185s Get:308 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unsafe-any-dev s390x 0.4.2-2 [4626 B] 185s Get:309 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typemap-dev s390x 0.3.3-2 [6724 B] 185s Get:310 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wyz-dev s390x 0.5.1-1 [19.7 kB] 186s Get:311 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitvec-dev s390x 1.0.1-1 [179 kB] 186s Get:312 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blowfish-dev s390x 0.9.1-1 [18.0 kB] 186s Get:313 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-botan-sys-dev s390x 0.10.5-1 [11.0 kB] 186s Get:314 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-botan-dev s390x 0.10.7-1 [39.0 kB] 186s Get:315 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 186s Get:316 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 186s Get:317 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bzip2-sys-dev s390x 0.1.11-1 [9226 B] 186s Get:318 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bzip2-dev s390x 0.4.4-1 [34.5 kB] 186s Get:319 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spin-dev s390x 0.9.8-4 [33.4 kB] 186s Get:320 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lazy-static-dev s390x 1.5.0-1 [14.2 kB] 187s Get:321 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-buffered-reader-dev s390x 1.3.1-2 [40.7 kB] 187s Get:322 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 187s Get:323 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytecheck-derive-dev s390x 0.6.12-1 [7086 B] 187s Get:324 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ptr-meta-derive-dev s390x 0.1.4-1 [3964 B] 187s Get:325 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ptr-meta-dev s390x 0.1.4-1 [7344 B] 187s Get:326 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-simdutf8-dev s390x 0.1.4-4 [27.2 kB] 187s Get:327 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md5-asm-dev s390x 0.5.0-2 [7516 B] 187s Get:328 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md-5-dev s390x 0.10.6-1 [17.5 kB] 187s Get:329 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-asm-dev s390x 0.5.1-2 [8060 B] 187s Get:330 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-dev s390x 0.10.6-1 [16.0 kB] 187s Get:331 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slog-dev s390x 2.7.0-1 [44.0 kB] 187s Get:332 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-uuid-dev s390x 1.10.0-1 [44.2 kB] 187s Get:333 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytecheck-dev s390x 0.6.12-1 [10.2 kB] 188s Get:334 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-camellia-dev s390x 0.1.0-1 [80.1 kB] 188s Get:335 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cast-dev s390x 0.3.0-1 [13.1 kB] 188s Get:336 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cast5-dev s390x 0.11.1-1 [37.0 kB] 188s Get:337 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cbc-dev s390x 0.1.2-1 [24.4 kB] 188s Get:338 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfb-mode-dev s390x 0.8.2-1 [25.8 kB] 188s Get:339 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-iana-time-zone-dev s390x 0.1.60-1 [25.1 kB] 188s Get:340 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 188s Get:341 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 188s Get:342 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 188s Get:343 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 188s Get:344 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 188s Get:345 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 188s Get:346 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pure-rust-locales-dev s390x 0.8.1-1 [112 kB] 189s Get:347 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-chrono-dev s390x 0.4.39-2 [174 kB] 189s Get:348 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ciborium-io-dev s390x 0.2.2-1 [8180 B] 189s Get:349 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-distr-dev s390x 0.4.3-1 [53.6 kB] 189s Get:350 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rend-dev s390x 0.4.0-1 [10.3 kB] 189s Get:351 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rkyv-derive-dev s390x 0.7.44-1 [17.5 kB] 189s Get:352 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-seahash-dev s390x 4.1.0-1 [25.1 kB] 189s Get:353 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smol-str-dev s390x 0.2.0-1 [15.2 kB] 189s Get:354 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tinyvec-dev s390x 1.6.0-2 [37.7 kB] 189s Get:355 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tinyvec-macros-dev s390x 0.1.0-1 [3852 B] 189s Get:356 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tinyvec+tinyvec-macros-dev s390x 1.6.0-2 [1126 B] 189s Get:357 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rkyv-dev s390x 0.7.44-1 [94.4 kB] 190s Get:358 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-half-dev s390x 2.4.1-1 [40.9 kB] 190s Get:359 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ciborium-ll-dev s390x 0.2.2-2 [15.7 kB] 190s Get:360 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ciborium-dev s390x 0.2.2-2 [32.6 kB] 190s Get:361 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-lex-dev s390x 0.7.4-1 [14.7 kB] 190s Get:362 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-strsim-dev s390x 0.11.1-1 [15.9 kB] 190s Get:363 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-terminal-size-dev s390x 0.3.0-2 [12.6 kB] 190s Get:364 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicase-dev s390x 2.8.0-1 [19.3 kB] 190s Get:365 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-width-dev s390x 0.2.0-1 [194 kB] 190s Get:366 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-builder-dev s390x 4.5.23-1 [136 kB] 190s Get:367 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-segmentation-dev s390x 1.12.0-1 [77.3 kB] 190s Get:368 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-heck-dev s390x 0.4.1-1 [13.3 kB] 190s Get:369 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-derive-dev s390x 4.5.18-1 [29.5 kB] 191s Get:370 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-dev s390x 4.5.23-1 [53.7 kB] 191s Get:371 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-roff-dev s390x 0.2.1-1 [12.2 kB] 191s Get:372 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-clap-mangen-dev s390x 0.2.20-1 [13.1 kB] 191s Get:373 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dbl-dev s390x 0.3.2-1 [7914 B] 191s Get:374 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cmac-dev s390x 0.7.2-1 [45.5 kB] 191s Get:375 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-color-quant-dev s390x 1.1.0-1 [8464 B] 191s Get:376 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-csv-core-dev s390x 0.1.11-1 [25.9 kB] 191s Get:377 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-csv-dev s390x 1.3.0-1 [729 kB] 192s Get:378 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-sink-dev s390x 0.3.31-1 [10.1 kB] 192s Get:379 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-channel-dev s390x 0.3.31-1 [32.1 kB] 192s Get:380 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-task-dev s390x 0.3.31-3 [13.7 kB] 192s Get:381 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-macro-dev s390x 0.3.31-1 [13.4 kB] 192s Get:382 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-util-dev s390x 0.3.31-1 [129 kB] 193s Get:383 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-cpus-dev s390x 1.16.0-1 [18.1 kB] 193s Get:384 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-executor-dev s390x 0.3.31-1 [20.0 kB] 193s Get:385 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-dev s390x 0.3.30-2 [53.2 kB] 193s Get:386 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-is-terminal-dev s390x 0.4.13-1 [8266 B] 193s Get:387 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-oorandom-dev s390x 11.1.3-1 [11.3 kB] 193s Get:388 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-option-ext-dev s390x 0.2.0-1 [8868 B] 193s Get:389 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dirs-sys-dev s390x 0.4.1-1 [12.9 kB] 193s Get:390 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dirs-dev s390x 5.0.1-1 [13.9 kB] 193s Get:391 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-float-ord-dev s390x 0.3.2-1 [9400 B] 193s Get:392 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-freetype-sys-dev s390x 0.20.1-1 [17.2 kB] 193s Get:393 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-freetype-dev s390x 0.7.2-1 [22.2 kB] 194s Get:394 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-semver-dev s390x 1.0.23-1 [30.6 kB] 194s Get:395 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-version-dev s390x 0.4.0-1 [13.8 kB] 194s Get:396 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pathfinder-simd-dev s390x 0.5.2-1 [20.1 kB] 194s Get:397 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pathfinder-geometry-dev s390x 0.5.1-1 [13.2 kB] 194s Get:398 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winapi-util-dev s390x 0.1.6-1 [14.0 kB] 194s Get:399 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-same-file-dev s390x 1.0.6-1 [11.5 kB] 194s Get:400 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-walkdir-dev s390x 2.5.0-1 [24.5 kB] 194s Get:401 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cstr-dev s390x 0.2.11-1 [8000 B] 194s Get:402 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dlib-dev s390x 0.5.2-2 [7974 B] 194s Get:403 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-yeslogic-fontconfig-sys-dev s390x 5.0.0-1 [8586 B] 195s Get:404 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-font-kit-dev s390x 0.14.2-2 [57.2 kB] 195s Get:405 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nanorand-dev all 0.7.0-11 [16.6 kB] 195s Get:406 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flume-dev all 0.11.1+20241019-1 [47.5 kB] 195s Get:407 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lebe-dev s390x 0.5.2-1 [10.4 kB] 195s Get:408 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-simd-adler32-dev s390x 0.3.7-1 [13.4 kB] 195s Get:409 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zune-inflate-dev s390x 0.2.54-1 [35.7 kB] 195s Get:410 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-exr-dev s390x 1.72.0-1 [181 kB] 195s Get:411 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-weezl-dev s390x 0.1.8-1 [31.1 kB] 195s Get:412 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gif-dev s390x 0.13.1-1 [31.1 kB] 196s Get:413 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-error-dev s390x 2.0.1-1 [15.6 kB] 196s Get:414 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-image-webp-dev s390x 0.2.0-2 [49.7 kB] 196s Get:415 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-png-dev s390x 0.17.7-3 [63.4 kB] 196s Get:416 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-qoi-dev s390x 0.4.1-2 [56.7 kB] 196s Get:417 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rgb-dev s390x 0.8.50-1 [21.5 kB] 196s Get:418 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jpeg-decoder-dev s390x 0.3.0-1 [717 kB] 198s Get:419 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiff-dev s390x 0.9.0-1 [1413 kB] 200s Get:420 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zune-core-dev s390x 0.4.12-1 [19.2 kB] 200s Get:421 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zune-jpeg-dev s390x 0.4.13-2 [57.7 kB] 200s Get:422 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-image-dev s390x 0.25.5-3 [191 kB] 201s Get:423 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-plotters-backend-dev s390x 0.3.7-1 [15.7 kB] 201s Get:424 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-plotters-bitmap-dev s390x 0.3.7-3 [15.8 kB] 201s Get:425 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-plotters-svg-dev s390x 0.3.7-1 [9556 B] 201s Get:426 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-plotters-dev s390x 0.3.7-2 [122 kB] 201s Get:427 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smol-dev all 2.0.2-1 [205 kB] 201s Get:428 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tinytemplate-dev s390x 1.2.1-1 [26.8 kB] 202s Get:429 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-criterion-dev all 0.5.1-8 [104 kB] 202s Get:430 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error-attr-dev s390x 1.0.4-1 [9718 B] 202s Get:431 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error-dev s390x 1.0.4-1 [27.2 kB] 202s Get:432 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-der-derive-dev s390x 0.7.1-1 [23.9 kB] 202s Get:433 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flagset-dev s390x 0.4.3-1 [14.4 kB] 202s Get:434 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pem-rfc7468-dev s390x 0.7.0-1 [25.0 kB] 202s Get:435 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-powerfmt-macros-dev s390x 0.1.0-1 [10.5 kB] 202s Get:436 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-powerfmt-dev s390x 0.2.0-1 [16.5 kB] 202s Get:437 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-deranged-dev s390x 0.3.11-1 [18.4 kB] 202s Get:438 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-conv-dev s390x 0.1.0-1 [8990 B] 202s Get:439 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-threads-dev s390x 0.1.7-1 [9154 B] 203s Get:440 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-core-dev s390x 0.1.2-1 [9136 B] 203s Get:441 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-macros-dev s390x 0.2.19-1 [25.1 kB] 203s Get:442 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-dev s390x 0.3.37-1 [102 kB] 203s Get:443 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-der-dev s390x 0.7.7-1 [71.8 kB] 203s Get:444 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rlp-derive-dev s390x 0.1.0-1 [6100 B] 203s Get:445 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-hex-dev s390x 2.1.0-1 [10.2 kB] 203s Get:446 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rlp-dev s390x 0.5.2-2 [17.1 kB] 203s Get:447 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serdect-dev s390x 0.2.0-1 [13.7 kB] 203s Get:448 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-bigint-dev s390x 0.5.2-1 [59.6 kB] 203s Get:449 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-des-dev s390x 0.8.1-1 [36.9 kB] 203s Get:450 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-iter-dev s390x 0.1.42-1 [12.2 kB] 204s Get:451 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-bigint-dig-dev s390x 0.8.2-2 [108 kB] 204s Get:452 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hmac-dev s390x 0.12.1-1 [43.9 kB] 204s Get:453 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-password-hash-dev s390x 0.5.0-1 [27.3 kB] 204s Get:454 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-asm-dev s390x 0.6.2-2 [14.4 kB] 204s Get:455 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha2-dev s390x 0.10.8-1 [25.6 kB] 204s Get:456 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pbkdf2-dev s390x 0.12.2-1 [16.3 kB] 204s Get:457 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-salsa20-dev s390x 0.10.2-1 [14.6 kB] 204s Get:458 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scrypt-dev s390x 0.11.0-1 [15.1 kB] 204s Get:459 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spki-dev s390x 0.7.3-1 [18.3 kB] 204s Get:460 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkcs5-dev s390x 0.7.1-1 [34.7 kB] 204s Get:461 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkcs8-dev all 0.10.2+ds-11 [24.6 kB] 205s Get:462 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rfc6979-dev s390x 0.4.0-1 [11.0 kB] 205s Get:463 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signature-dev all 2.2.0+ds-4 [17.1 kB] 205s Get:464 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dsa-dev s390x 0.6.3-1 [24.7 kB] 205s Get:465 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dyn-clone-dev s390x 1.0.16-1 [12.2 kB] 205s Get:466 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-eax-dev s390x 0.5.0-1 [16.5 kB] 205s Get:467 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ecb-dev s390x 0.1.1-1 [8152 B] 205s Get:468 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ff-derive-dev s390x 0.13.0-1 [13.3 kB] 205s Get:469 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ff-dev s390x 0.13.0-1 [18.9 kB] 205s Get:470 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nonempty-dev s390x 0.11.0-1 [15.0 kB] 205s Get:471 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memuse-dev s390x 0.2.2-1 [14.5 kB] 205s Get:472 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-xorshift-dev s390x 0.3.0-2 [10.9 kB] 205s Get:473 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-group-dev s390x 0.13.0-1 [17.9 kB] 205s Get:474 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hex-literal-dev s390x 0.4.1-1 [10.4 kB] 206s Get:475 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hkdf-dev s390x 0.12.4-1 [163 kB] 206s Get:476 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sec1-dev s390x 0.7.2-1 [19.5 kB] 206s Get:477 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-elliptic-curve-dev s390x 0.13.8-1 [56.8 kB] 206s Get:478 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ecdsa-dev s390x 0.16.9-1 [31.2 kB] 206s Get:479 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-bytes-dev s390x 0.11.12-1 [13.4 kB] 206s Get:480 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ed25519-dev all 2.2.3+ds-5 [16.5 kB] 206s Get:481 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ena-dev s390x 0.14.0-2 [24.1 kB] 206s Get:482 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fixedbitset-dev s390x 0.4.2-1 [17.2 kB] 206s Get:483 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-foreign-types-shared-0.1-dev s390x 0.1.1-2 [7484 B] 207s Get:484 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-foreign-types-0.3-dev s390x 0.3.2-2 [9330 B] 207s Get:485 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-idea-dev s390x 0.5.1-1 [23.6 kB] 207s Get:486 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-bidi-dev s390x 0.3.17-1 [47.5 kB] 207s Get:487 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-normalization-dev s390x 0.1.22-1 [104 kB] 207s Get:488 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-idna-dev s390x 0.4.0-1 [222 kB] 207s Get:489 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lalrpop-util-dev s390x 0.20.0-1 [12.8 kB] 207s Get:490 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-petgraph-dev s390x 0.6.4-1 [150 kB] 208s Get:491 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pico-args-dev s390x 0.5.0-1 [14.9 kB] 208s Get:492 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-new-debug-unreachable-dev s390x 1.0.4-1 [4462 B] 208s Get:493 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-siphasher-dev s390x 1.0.1-1 [12.5 kB] 208s Get:494 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-phf-shared-dev s390x 0.11.2-2 [15.6 kB] 208s Get:495 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-precomputed-hash-dev s390x 0.1.1-1 [3396 B] 208s Get:496 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-string-cache-dev s390x 0.8.7-1 [16.8 kB] 208s Get:497 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-xid-dev s390x 0.2.4-1 [14.3 kB] 208s Get:498 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lalrpop-dev s390x 0.20.2-1build2 [196 kB] 209s Get:499 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memsec-dev s390x 0.7.0-1 [9164 B] 209s Get:500 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tempfile-dev s390x 3.15.0-1 [36.0 kB] 209s Get:501 http://ftpmaster.internal/ubuntu plucky/main s390x nettle-dev s390x 3.10-1 [1197 kB] 210s Get:502 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nettle-sys-dev s390x 2.2.0-3 [29.3 kB] 211s Get:503 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 211s Get:504 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 211s Get:505 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nettle-dev s390x 7.3.0-1 [518 kB] 211s Get:506 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-openssl-macros-dev s390x 0.1.0-1 [7174 B] 211s Get:507 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-vcpkg-dev s390x 0.2.8-1 [12.8 kB] 212s Get:508 http://ftpmaster.internal/ubuntu plucky/main s390x libssl-dev s390x 3.4.0-1ubuntu2 [2427 kB] 214s Get:509 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-openssl-sys-dev s390x 0.9.104-1 [68.0 kB] 214s Get:510 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-openssl-dev s390x 0.10.68-1 [219 kB] 214s Get:511 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-primeorder-dev s390x 0.13.6-1 [21.6 kB] 214s Get:512 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-p256-dev s390x 0.13.2-1 [67.9 kB] 214s Get:513 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-p384-dev s390x 0.13.0-1 [131 kB] 215s Get:514 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ripemd-dev s390x 0.1.3-1 [15.7 kB] 215s Get:515 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rtoolbox-dev s390x 0.0.1-1 [11.6 kB] 215s Get:516 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rpassword-dev s390x 7.2.0-1 [11.2 kB] 215s Get:517 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1collisiondetection-dev s390x 0.3.2-1build1 [412 kB] 215s Get:518 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twofish-dev s390x 0.7.1-1 [13.5 kB] 216s Get:519 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-xxhash-rust-dev s390x 0.8.6-1 [77.6 kB] 216s Get:520 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sequoia-openpgp-dev s390x 1.21.2-2 [2270 kB] 219s Fetched 246 MB in 1min 22s (3012 kB/s) 219s Selecting previously unselected package m4. 219s (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 ... 56554 files and directories currently installed.) 219s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 219s Unpacking m4 (1.4.19-5) ... 219s Selecting previously unselected package autoconf. 219s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 219s Unpacking autoconf (2.72-3) ... 219s Selecting previously unselected package autotools-dev. 219s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 219s Unpacking autotools-dev (20220109.1) ... 219s Selecting previously unselected package automake. 219s Preparing to unpack .../003-automake_1%3a1.16.5-1.3ubuntu1_all.deb ... 219s Unpacking automake (1:1.16.5-1.3ubuntu1) ... 219s Selecting previously unselected package autopoint. 219s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 219s Unpacking autopoint (0.23.1-1) ... 219s Selecting previously unselected package libgit2-1.9:s390x. 219s Preparing to unpack .../005-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 219s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 219s Selecting previously unselected package libstd-rust-1.84:s390x. 219s Preparing to unpack .../006-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 219s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 220s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 220s Preparing to unpack .../007-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 220s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 220s Selecting previously unselected package libisl23:s390x. 220s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 220s Unpacking libisl23:s390x (0.27-1) ... 220s Selecting previously unselected package libmpc3:s390x. 220s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 220s Unpacking libmpc3:s390x (1.3.1-1build2) ... 221s Selecting previously unselected package cpp-14-s390x-linux-gnu. 221s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking cpp-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package cpp-14. 221s Preparing to unpack .../011-cpp-14_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking cpp-14 (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package cpp-s390x-linux-gnu. 221s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 221s Unpacking cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 221s Selecting previously unselected package cpp. 221s Preparing to unpack .../013-cpp_4%3a14.1.0-2ubuntu1_s390x.deb ... 221s Unpacking cpp (4:14.1.0-2ubuntu1) ... 221s Selecting previously unselected package libcc1-0:s390x. 221s Preparing to unpack .../014-libcc1-0_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking libcc1-0:s390x (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package libgomp1:s390x. 221s Preparing to unpack .../015-libgomp1_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking libgomp1:s390x (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package libitm1:s390x. 221s Preparing to unpack .../016-libitm1_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking libitm1:s390x (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package libasan8:s390x. 221s Preparing to unpack .../017-libasan8_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking libasan8:s390x (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package libubsan1:s390x. 221s Preparing to unpack .../018-libubsan1_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking libubsan1:s390x (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package libgcc-14-dev:s390x. 221s Preparing to unpack .../019-libgcc-14-dev_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking libgcc-14-dev:s390x (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package gcc-14-s390x-linux-gnu. 221s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking gcc-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package gcc-14. 221s Preparing to unpack .../021-gcc-14_14.2.0-13ubuntu1_s390x.deb ... 221s Unpacking gcc-14 (14.2.0-13ubuntu1) ... 221s Selecting previously unselected package gcc-s390x-linux-gnu. 221s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 221s Unpacking gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 221s Selecting previously unselected package gcc. 221s Preparing to unpack .../023-gcc_4%3a14.1.0-2ubuntu1_s390x.deb ... 221s Unpacking gcc (4:14.1.0-2ubuntu1) ... 221s Selecting previously unselected package rustc-1.84. 221s Preparing to unpack .../024-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 221s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 221s Selecting previously unselected package libclang-cpp19. 221s Preparing to unpack .../025-libclang-cpp19_1%3a19.1.7-1ubuntu1_s390x.deb ... 221s Unpacking libclang-cpp19 (1:19.1.7-1ubuntu1) ... 222s Selecting previously unselected package libstdc++-14-dev:s390x. 222s Preparing to unpack .../026-libstdc++-14-dev_14.2.0-13ubuntu1_s390x.deb ... 222s Unpacking libstdc++-14-dev:s390x (14.2.0-13ubuntu1) ... 222s Selecting previously unselected package libgc1:s390x. 222s Preparing to unpack .../027-libgc1_1%3a8.2.8-1_s390x.deb ... 222s Unpacking libgc1:s390x (1:8.2.8-1) ... 222s Selecting previously unselected package libobjc4:s390x. 222s Preparing to unpack .../028-libobjc4_14.2.0-13ubuntu1_s390x.deb ... 222s Unpacking libobjc4:s390x (14.2.0-13ubuntu1) ... 222s Selecting previously unselected package libobjc-14-dev:s390x. 222s Preparing to unpack .../029-libobjc-14-dev_14.2.0-13ubuntu1_s390x.deb ... 222s Unpacking libobjc-14-dev:s390x (14.2.0-13ubuntu1) ... 222s Selecting previously unselected package libclang-common-19-dev:s390x. 222s Preparing to unpack .../030-libclang-common-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 222s Unpacking libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 222s Selecting previously unselected package llvm-19-linker-tools. 222s Preparing to unpack .../031-llvm-19-linker-tools_1%3a19.1.7-1ubuntu1_s390x.deb ... 222s Unpacking llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 222s Selecting previously unselected package clang-19. 222s Preparing to unpack .../032-clang-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 222s Unpacking clang-19 (1:19.1.7-1ubuntu1) ... 222s Selecting previously unselected package clang. 222s Preparing to unpack .../033-clang_1%3a19.0-63_s390x.deb ... 222s Unpacking clang (1:19.0-63) ... 222s Selecting previously unselected package cargo-1.84. 222s Preparing to unpack .../034-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 222s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 222s Selecting previously unselected package libdebhelper-perl. 222s Preparing to unpack .../035-libdebhelper-perl_13.23ubuntu1_all.deb ... 222s Unpacking libdebhelper-perl (13.23ubuntu1) ... 222s Selecting previously unselected package libtool. 222s Preparing to unpack .../036-libtool_2.5.4-2.1_all.deb ... 222s Unpacking libtool (2.5.4-2.1) ... 222s Selecting previously unselected package dh-autoreconf. 222s Preparing to unpack .../037-dh-autoreconf_20_all.deb ... 222s Unpacking dh-autoreconf (20) ... 222s Selecting previously unselected package libarchive-zip-perl. 222s Preparing to unpack .../038-libarchive-zip-perl_1.68-1_all.deb ... 222s Unpacking libarchive-zip-perl (1.68-1) ... 222s Selecting previously unselected package libfile-stripnondeterminism-perl. 222s Preparing to unpack .../039-libfile-stripnondeterminism-perl_1.14.1-1_all.deb ... 222s Unpacking libfile-stripnondeterminism-perl (1.14.1-1) ... 222s Selecting previously unselected package dh-strip-nondeterminism. 222s Preparing to unpack .../040-dh-strip-nondeterminism_1.14.1-1_all.deb ... 222s Unpacking dh-strip-nondeterminism (1.14.1-1) ... 222s Selecting previously unselected package debugedit. 222s Preparing to unpack .../041-debugedit_1%3a5.1-1_s390x.deb ... 222s Unpacking debugedit (1:5.1-1) ... 222s Selecting previously unselected package dwz. 222s Preparing to unpack .../042-dwz_0.15-1build6_s390x.deb ... 222s Unpacking dwz (0.15-1build6) ... 222s Selecting previously unselected package gettext. 222s Preparing to unpack .../043-gettext_0.23.1-1_s390x.deb ... 222s Unpacking gettext (0.23.1-1) ... 222s Selecting previously unselected package intltool-debian. 222s Preparing to unpack .../044-intltool-debian_0.35.0+20060710.6_all.deb ... 222s Unpacking intltool-debian (0.35.0+20060710.6) ... 222s Selecting previously unselected package po-debconf. 222s Preparing to unpack .../045-po-debconf_1.0.21+nmu1_all.deb ... 222s Unpacking po-debconf (1.0.21+nmu1) ... 222s Selecting previously unselected package debhelper. 222s Preparing to unpack .../046-debhelper_13.23ubuntu1_all.deb ... 222s Unpacking debhelper (13.23ubuntu1) ... 222s Selecting previously unselected package rustc. 222s Preparing to unpack .../047-rustc_1.84.0ubuntu1_s390x.deb ... 222s Unpacking rustc (1.84.0ubuntu1) ... 222s Selecting previously unselected package cargo. 222s Preparing to unpack .../048-cargo_1.84.0ubuntu1_s390x.deb ... 222s Unpacking cargo (1.84.0ubuntu1) ... 222s Selecting previously unselected package dh-cargo-tools. 222s Preparing to unpack .../049-dh-cargo-tools_31ubuntu4_all.deb ... 222s Unpacking dh-cargo-tools (31ubuntu4) ... 222s Selecting previously unselected package dh-cargo. 222s Preparing to unpack .../050-dh-cargo_31ubuntu4_all.deb ... 222s Unpacking dh-cargo (31ubuntu4) ... 222s Selecting previously unselected package fonts-dejavu-mono. 222s Preparing to unpack .../051-fonts-dejavu-mono_2.37-8_all.deb ... 222s Unpacking fonts-dejavu-mono (2.37-8) ... 222s Selecting previously unselected package fonts-dejavu-core. 222s Preparing to unpack .../052-fonts-dejavu-core_2.37-8_all.deb ... 222s Unpacking fonts-dejavu-core (2.37-8) ... 222s Selecting previously unselected package fontconfig-config. 222s Preparing to unpack .../053-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 222s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 222s Selecting previously unselected package libtspi1. 222s Preparing to unpack .../054-libtspi1_0.3.15-0.4_s390x.deb ... 222s Unpacking libtspi1 (0.3.15-0.4) ... 222s Selecting previously unselected package libbotan-2-19:s390x. 222s Preparing to unpack .../055-libbotan-2-19_2.19.3+dfsg-1ubuntu2_s390x.deb ... 222s Unpacking libbotan-2-19:s390x (2.19.3+dfsg-1ubuntu2) ... 222s Selecting previously unselected package libbotan-2-dev. 222s Preparing to unpack .../056-libbotan-2-dev_2.19.3+dfsg-1ubuntu2_s390x.deb ... 222s Unpacking libbotan-2-dev (2.19.3+dfsg-1ubuntu2) ... 223s Selecting previously unselected package libbrotli-dev:s390x. 223s Preparing to unpack .../057-libbrotli-dev_1.1.0-2build3_s390x.deb ... 223s Unpacking libbrotli-dev:s390x (1.1.0-2build3) ... 223s Selecting previously unselected package libbz2-dev:s390x. 223s Preparing to unpack .../058-libbz2-dev_1.0.8-6_s390x.deb ... 223s Unpacking libbz2-dev:s390x (1.0.8-6) ... 223s Selecting previously unselected package libclang-19-dev. 223s Preparing to unpack .../059-libclang-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 223s Unpacking libclang-19-dev (1:19.1.7-1ubuntu1) ... 224s Selecting previously unselected package libclang-dev. 224s Preparing to unpack .../060-libclang-dev_1%3a19.0-63_s390x.deb ... 224s Unpacking libclang-dev (1:19.0-63) ... 224s Selecting previously unselected package libexpat1-dev:s390x. 224s Preparing to unpack .../061-libexpat1-dev_2.6.4-1_s390x.deb ... 224s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 224s Selecting previously unselected package libfreetype6:s390x. 224s Preparing to unpack .../062-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 224s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 224s Selecting previously unselected package libfontconfig1:s390x. 224s Preparing to unpack .../063-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 224s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 224s Selecting previously unselected package zlib1g-dev:s390x. 224s Preparing to unpack .../064-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 224s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 224s Selecting previously unselected package libpng-dev:s390x. 224s Preparing to unpack .../065-libpng-dev_1.6.44-3_s390x.deb ... 224s Unpacking libpng-dev:s390x (1.6.44-3) ... 224s Selecting previously unselected package libfreetype-dev:s390x. 224s Preparing to unpack .../066-libfreetype-dev_2.13.3+dfsg-1_s390x.deb ... 224s Unpacking libfreetype-dev:s390x (2.13.3+dfsg-1) ... 224s Selecting previously unselected package uuid-dev:s390x. 224s Preparing to unpack .../067-uuid-dev_2.40.2-14ubuntu1_s390x.deb ... 224s Unpacking uuid-dev:s390x (2.40.2-14ubuntu1) ... 224s Selecting previously unselected package libpkgconf3:s390x. 224s Preparing to unpack .../068-libpkgconf3_1.8.1-4_s390x.deb ... 224s Unpacking libpkgconf3:s390x (1.8.1-4) ... 224s Selecting previously unselected package pkgconf-bin. 224s Preparing to unpack .../069-pkgconf-bin_1.8.1-4_s390x.deb ... 224s Unpacking pkgconf-bin (1.8.1-4) ... 224s Selecting previously unselected package pkgconf:s390x. 224s Preparing to unpack .../070-pkgconf_1.8.1-4_s390x.deb ... 224s Unpacking pkgconf:s390x (1.8.1-4) ... 224s Selecting previously unselected package libfontconfig-dev:s390x. 224s Preparing to unpack .../071-libfontconfig-dev_2.15.0-1.1ubuntu2_s390x.deb ... 224s Unpacking libfontconfig-dev:s390x (2.15.0-1.1ubuntu2) ... 224s Selecting previously unselected package libgmpxx4ldbl:s390x. 224s Preparing to unpack .../072-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb ... 224s Unpacking libgmpxx4ldbl:s390x (2:6.3.0+dfsg-2ubuntu7) ... 224s Selecting previously unselected package libgmp-dev:s390x. 224s Preparing to unpack .../073-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb ... 224s Unpacking libgmp-dev:s390x (2:6.3.0+dfsg-2ubuntu7) ... 224s Selecting previously unselected package librust-ab-glyph-rasterizer-dev:s390x. 224s Preparing to unpack .../074-librust-ab-glyph-rasterizer-dev_0.1.7-1_s390x.deb ... 224s Unpacking librust-ab-glyph-rasterizer-dev:s390x (0.1.7-1) ... 224s Selecting previously unselected package librust-libm-dev:s390x. 224s Preparing to unpack .../075-librust-libm-dev_0.2.8-1_s390x.deb ... 224s Unpacking librust-libm-dev:s390x (0.2.8-1) ... 224s Selecting previously unselected package librust-ab-glyph-rasterizer+libm-dev:s390x. 224s Preparing to unpack .../076-librust-ab-glyph-rasterizer+libm-dev_0.1.7-1_s390x.deb ... 224s Unpacking librust-ab-glyph-rasterizer+libm-dev:s390x (0.1.7-1) ... 224s Selecting previously unselected package librust-core-maths-dev:s390x. 224s Preparing to unpack .../077-librust-core-maths-dev_0.1.0-2_s390x.deb ... 224s Unpacking librust-core-maths-dev:s390x (0.1.0-2) ... 224s Selecting previously unselected package librust-ttf-parser-dev:s390x. 224s Preparing to unpack .../078-librust-ttf-parser-dev_0.24.1-1_s390x.deb ... 224s Unpacking librust-ttf-parser-dev:s390x (0.24.1-1) ... 224s Selecting previously unselected package librust-owned-ttf-parser-dev:s390x. 224s Preparing to unpack .../079-librust-owned-ttf-parser-dev_0.24.0-1_s390x.deb ... 224s Unpacking librust-owned-ttf-parser-dev:s390x (0.24.0-1) ... 224s Selecting previously unselected package librust-ab-glyph-dev:s390x. 224s Preparing to unpack .../080-librust-ab-glyph-dev_0.2.28-1_s390x.deb ... 224s Unpacking librust-ab-glyph-dev:s390x (0.2.28-1) ... 224s Selecting previously unselected package librust-unicode-ident-dev:s390x. 224s Preparing to unpack .../081-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 224s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 224s Selecting previously unselected package librust-proc-macro2-dev:s390x. 224s Preparing to unpack .../082-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 224s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 224s Selecting previously unselected package librust-quote-dev:s390x. 224s Preparing to unpack .../083-librust-quote-dev_1.0.37-1_s390x.deb ... 224s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 224s Selecting previously unselected package librust-syn-dev:s390x. 224s Preparing to unpack .../084-librust-syn-dev_2.0.96-2_s390x.deb ... 224s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 224s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 224s Preparing to unpack .../085-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 224s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 224s Selecting previously unselected package librust-arbitrary-dev:s390x. 224s Preparing to unpack .../086-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 224s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 224s Selecting previously unselected package librust-autocfg-dev:s390x. 224s Preparing to unpack .../087-librust-autocfg-dev_1.1.0-1_s390x.deb ... 224s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 224s Selecting previously unselected package librust-num-traits-dev:s390x. 224s Preparing to unpack .../088-librust-num-traits-dev_0.2.19-2_s390x.deb ... 224s Unpacking librust-num-traits-dev:s390x (0.2.19-2) ... 224s Selecting previously unselected package librust-num-integer-dev:s390x. 224s Preparing to unpack .../089-librust-num-integer-dev_0.1.46-1_s390x.deb ... 224s Unpacking librust-num-integer-dev:s390x (0.1.46-1) ... 224s Selecting previously unselected package librust-anstyle-dev:s390x. 224s Preparing to unpack .../090-librust-anstyle-dev_1.0.8-1_s390x.deb ... 224s Unpacking librust-anstyle-dev:s390x (1.0.8-1) ... 224s Selecting previously unselected package librust-serde-derive-dev:s390x. 224s Preparing to unpack .../091-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 224s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 224s Selecting previously unselected package librust-serde-dev:s390x. 224s Preparing to unpack .../092-librust-serde-dev_1.0.217-1_s390x.deb ... 224s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 224s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 224s Preparing to unpack .../093-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 224s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 224s Selecting previously unselected package librust-zeroize-dev:s390x. 224s Preparing to unpack .../094-librust-zeroize-dev_1.8.1-1_s390x.deb ... 224s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 224s Selecting previously unselected package librust-arrayvec-dev:s390x. 224s Preparing to unpack .../095-librust-arrayvec-dev_0.7.6-1_s390x.deb ... 224s Unpacking librust-arrayvec-dev:s390x (0.7.6-1) ... 224s Selecting previously unselected package librust-utf8parse-dev:s390x. 224s Preparing to unpack .../096-librust-utf8parse-dev_0.2.1-1_s390x.deb ... 224s Unpacking librust-utf8parse-dev:s390x (0.2.1-1) ... 224s Selecting previously unselected package librust-anstyle-parse-dev:s390x. 224s Preparing to unpack .../097-librust-anstyle-parse-dev_0.2.1-1_s390x.deb ... 224s Unpacking librust-anstyle-parse-dev:s390x (0.2.1-1) ... 224s Selecting previously unselected package librust-anstyle-query-dev:s390x. 224s Preparing to unpack .../098-librust-anstyle-query-dev_1.0.0-1_s390x.deb ... 224s Unpacking librust-anstyle-query-dev:s390x (1.0.0-1) ... 224s Selecting previously unselected package librust-colorchoice-dev:s390x. 224s Preparing to unpack .../099-librust-colorchoice-dev_1.0.0-1_s390x.deb ... 224s Unpacking librust-colorchoice-dev:s390x (1.0.0-1) ... 224s Selecting previously unselected package librust-anstream-dev:s390x. 224s Preparing to unpack .../100-librust-anstream-dev_0.6.15-1_s390x.deb ... 224s Unpacking librust-anstream-dev:s390x (0.6.15-1) ... 224s Selecting previously unselected package librust-sval-derive-dev:s390x. 224s Preparing to unpack .../101-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 224s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 224s Selecting previously unselected package librust-sval-dev:s390x. 224s Preparing to unpack .../102-librust-sval-dev_2.6.1-2_s390x.deb ... 224s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 224s Selecting previously unselected package librust-sval-ref-dev:s390x. 224s Preparing to unpack .../103-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 224s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 224s Selecting previously unselected package librust-erased-serde-dev:s390x. 224s Preparing to unpack .../104-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 224s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 224s Selecting previously unselected package librust-serde-fmt-dev. 224s Preparing to unpack .../105-librust-serde-fmt-dev_1.0.3-3_all.deb ... 224s Unpacking librust-serde-fmt-dev (1.0.3-3) ... 224s Selecting previously unselected package librust-equivalent-dev:s390x. 224s Preparing to unpack .../106-librust-equivalent-dev_1.0.1-1_s390x.deb ... 224s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 224s Selecting previously unselected package librust-critical-section-dev:s390x. 224s Preparing to unpack .../107-librust-critical-section-dev_1.2.0-1_s390x.deb ... 224s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 224s Selecting previously unselected package librust-portable-atomic-dev:s390x. 224s Preparing to unpack .../108-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 224s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 224s Selecting previously unselected package librust-cfg-if-dev:s390x. 224s Preparing to unpack .../109-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 224s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 224s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 224s Preparing to unpack .../110-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 224s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 224s Selecting previously unselected package librust-libc-dev:s390x. 224s Preparing to unpack .../111-librust-libc-dev_0.2.169-1_s390x.deb ... 224s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 224s Selecting previously unselected package librust-getrandom-dev:s390x. 224s Preparing to unpack .../112-librust-getrandom-dev_0.2.15-1_s390x.deb ... 224s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 224s Selecting previously unselected package librust-smallvec-dev:s390x. 224s Preparing to unpack .../113-librust-smallvec-dev_1.13.2-1_s390x.deb ... 224s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 225s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 225s Preparing to unpack .../114-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 225s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 225s Selecting previously unselected package librust-once-cell-dev:s390x. 225s Preparing to unpack .../115-librust-once-cell-dev_1.20.2-1_s390x.deb ... 225s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 225s Selecting previously unselected package librust-crunchy-dev:s390x. 225s Preparing to unpack .../116-librust-crunchy-dev_0.2.2-1_s390x.deb ... 225s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 225s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 225s Preparing to unpack .../117-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 225s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 225s Selecting previously unselected package librust-const-random-macro-dev:s390x. 225s Preparing to unpack .../118-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 225s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 225s Selecting previously unselected package librust-const-random-dev:s390x. 225s Preparing to unpack .../119-librust-const-random-dev_0.1.17-2_s390x.deb ... 225s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 225s Selecting previously unselected package librust-version-check-dev:s390x. 225s Preparing to unpack .../120-librust-version-check-dev_0.9.5-1_s390x.deb ... 225s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 225s Selecting previously unselected package librust-byteorder-dev:s390x. 225s Preparing to unpack .../121-librust-byteorder-dev_1.5.0-1_s390x.deb ... 225s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 225s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 225s Preparing to unpack .../122-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 225s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 225s Selecting previously unselected package librust-zerocopy-dev:s390x. 225s Preparing to unpack .../123-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 225s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 225s Selecting previously unselected package librust-ahash-dev. 225s Preparing to unpack .../124-librust-ahash-dev_0.8.11-8_all.deb ... 225s Unpacking librust-ahash-dev (0.8.11-8) ... 225s Selecting previously unselected package librust-allocator-api2-dev:s390x. 225s Preparing to unpack .../125-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 225s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 225s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 225s Preparing to unpack .../126-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 225s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 225s Selecting previously unselected package librust-either-dev:s390x. 225s Preparing to unpack .../127-librust-either-dev_1.13.0-1_s390x.deb ... 225s Unpacking librust-either-dev:s390x (1.13.0-1) ... 225s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 225s Preparing to unpack .../128-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 225s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 225s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 225s Preparing to unpack .../129-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 225s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 225s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 225s Preparing to unpack .../130-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 225s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 225s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 225s Preparing to unpack .../131-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 225s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 225s Selecting previously unselected package librust-rayon-core-dev:s390x. 225s Preparing to unpack .../132-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 225s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 225s Selecting previously unselected package librust-rayon-dev:s390x. 225s Preparing to unpack .../133-librust-rayon-dev_1.10.0-1_s390x.deb ... 225s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 225s Selecting previously unselected package librust-hashbrown-dev:s390x. 225s Preparing to unpack .../134-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 225s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 225s Selecting previously unselected package librust-indexmap-dev:s390x. 225s Preparing to unpack .../135-librust-indexmap-dev_2.7.0-1_s390x.deb ... 225s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 225s Selecting previously unselected package librust-no-panic-dev:s390x. 225s Preparing to unpack .../136-librust-no-panic-dev_0.1.32-1_s390x.deb ... 225s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 225s Selecting previously unselected package librust-itoa-dev:s390x. 225s Preparing to unpack .../137-librust-itoa-dev_1.0.14-1_s390x.deb ... 225s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 225s Selecting previously unselected package librust-memchr-dev:s390x. 225s Preparing to unpack .../138-librust-memchr-dev_2.7.4-1_s390x.deb ... 225s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 225s Selecting previously unselected package librust-ryu-dev:s390x. 225s Preparing to unpack .../139-librust-ryu-dev_1.0.15-1_s390x.deb ... 225s Unpacking librust-ryu-dev:s390x (1.0.15-1) ... 225s Selecting previously unselected package librust-serde-json-dev:s390x. 225s Preparing to unpack .../140-librust-serde-json-dev_1.0.133-1_s390x.deb ... 225s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 225s Selecting previously unselected package librust-serde-test-dev:s390x. 225s Preparing to unpack .../141-librust-serde-test-dev_1.0.171-1_s390x.deb ... 225s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 225s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 225s Preparing to unpack .../142-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 225s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 225s Selecting previously unselected package librust-sval-buffer-dev:s390x. 225s Preparing to unpack .../143-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 225s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 225s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 225s Preparing to unpack .../144-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 225s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 225s Selecting previously unselected package librust-sval-fmt-dev:s390x. 225s Preparing to unpack .../145-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 225s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 225s Selecting previously unselected package librust-sval-serde-dev:s390x. 225s Preparing to unpack .../146-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 225s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 225s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 225s Preparing to unpack .../147-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 225s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 225s Selecting previously unselected package librust-value-bag-dev:s390x. 225s Preparing to unpack .../148-librust-value-bag-dev_1.9.0-1_s390x.deb ... 225s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 225s Selecting previously unselected package librust-log-dev:s390x. 225s Preparing to unpack .../149-librust-log-dev_0.4.22-1_s390x.deb ... 225s Unpacking librust-log-dev:s390x (0.4.22-1) ... 225s Selecting previously unselected package librust-aho-corasick-dev:s390x. 225s Preparing to unpack .../150-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 225s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 225s Selecting previously unselected package librust-regex-syntax-dev:s390x. 225s Preparing to unpack .../151-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 225s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 225s Selecting previously unselected package librust-regex-automata-dev:s390x. 225s Preparing to unpack .../152-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 225s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 225s Selecting previously unselected package librust-regex-dev:s390x. 225s Preparing to unpack .../153-librust-regex-dev_1.11.1-2_s390x.deb ... 225s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 225s Selecting previously unselected package librust-env-filter-dev:s390x. 225s Preparing to unpack .../154-librust-env-filter-dev_0.1.3-1_s390x.deb ... 225s Unpacking librust-env-filter-dev:s390x (0.1.3-1) ... 225s Selecting previously unselected package librust-humantime-dev:s390x. 225s Preparing to unpack .../155-librust-humantime-dev_2.1.0-2_s390x.deb ... 225s Unpacking librust-humantime-dev:s390x (2.1.0-2) ... 225s Selecting previously unselected package librust-env-logger-dev:s390x. 225s Preparing to unpack .../156-librust-env-logger-dev_0.11.5-2_s390x.deb ... 225s Unpacking librust-env-logger-dev:s390x (0.11.5-2) ... 225s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 225s Preparing to unpack .../157-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 225s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 225s Selecting previously unselected package librust-rand-core-dev:s390x. 225s Preparing to unpack .../158-librust-rand-core-dev_0.6.4-2_s390x.deb ... 225s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 225s Selecting previously unselected package librust-rand-chacha-dev:s390x. 225s Preparing to unpack .../159-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 225s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 225s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 225s Preparing to unpack .../160-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 225s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 225s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 225s Preparing to unpack .../161-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 225s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 225s Selecting previously unselected package librust-rand-core+std-dev:s390x. 225s Preparing to unpack .../162-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 225s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 225s Selecting previously unselected package librust-rand-dev:s390x. 225s Preparing to unpack .../163-librust-rand-dev_0.8.5-1_s390x.deb ... 225s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 225s Selecting previously unselected package librust-quickcheck-dev:s390x. 225s Preparing to unpack .../164-librust-quickcheck-dev_1.0.3-5_s390x.deb ... 225s Unpacking librust-quickcheck-dev:s390x (1.0.3-5) ... 225s Selecting previously unselected package librust-num-bigint-dev:s390x. 225s Preparing to unpack .../165-librust-num-bigint-dev_0.4.6-1_s390x.deb ... 225s Unpacking librust-num-bigint-dev:s390x (0.4.6-1) ... 225s Selecting previously unselected package librust-addchain-dev:s390x. 225s Preparing to unpack .../166-librust-addchain-dev_0.2.0-1_s390x.deb ... 225s Unpacking librust-addchain-dev:s390x (0.2.0-1) ... 225s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 225s Preparing to unpack .../167-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 225s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 225s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 225s Preparing to unpack .../168-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 225s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 225s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 225s Preparing to unpack .../169-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 225s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 225s Selecting previously unselected package librust-gimli-dev:s390x. 225s Preparing to unpack .../170-librust-gimli-dev_0.31.1-2_s390x.deb ... 225s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 225s Selecting previously unselected package librust-memmap2-dev:s390x. 225s Preparing to unpack .../171-librust-memmap2-dev_0.9.5-1_s390x.deb ... 225s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 225s Selecting previously unselected package librust-crc32fast-dev:s390x. 225s Preparing to unpack .../172-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 225s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 225s Selecting previously unselected package librust-pkg-config-dev:s390x. 225s Preparing to unpack .../173-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 225s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 225s Selecting previously unselected package librust-libz-sys-dev:s390x. 225s Preparing to unpack .../174-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 225s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 225s Selecting previously unselected package librust-adler-dev:s390x. 225s Preparing to unpack .../175-librust-adler-dev_1.0.2-2_s390x.deb ... 225s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 225s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 225s Preparing to unpack .../176-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 225s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 225s Selecting previously unselected package librust-flate2-dev:s390x. 225s Preparing to unpack .../177-librust-flate2-dev_1.0.34-1_s390x.deb ... 225s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 225s Selecting previously unselected package librust-cfg-if-0.1-dev:s390x. 225s Preparing to unpack .../178-librust-cfg-if-0.1-dev_0.1.10-3_s390x.deb ... 225s Unpacking librust-cfg-if-0.1-dev:s390x (0.1.10-3) ... 225s Selecting previously unselected package librust-blobby-dev:s390x. 225s Preparing to unpack .../179-librust-blobby-dev_0.3.1-1_s390x.deb ... 225s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 225s Selecting previously unselected package librust-typenum-dev:s390x. 225s Preparing to unpack .../180-librust-typenum-dev_1.17.0-2_s390x.deb ... 225s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 225s Selecting previously unselected package librust-generic-array-dev:s390x. 225s Preparing to unpack .../181-librust-generic-array-dev_0.14.7-1_s390x.deb ... 225s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 225s Selecting previously unselected package librust-block-buffer-dev:s390x. 225s Preparing to unpack .../182-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 225s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 225s Selecting previously unselected package librust-const-oid-dev:s390x. 225s Preparing to unpack .../183-librust-const-oid-dev_0.9.6-1_s390x.deb ... 225s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 226s Selecting previously unselected package librust-crypto-common-dev:s390x. 226s Preparing to unpack .../184-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 226s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 226s Selecting previously unselected package librust-subtle-dev:s390x. 226s Preparing to unpack .../185-librust-subtle-dev_2.6.1-1_s390x.deb ... 226s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 226s Selecting previously unselected package librust-digest-dev:s390x. 226s Preparing to unpack .../186-librust-digest-dev_0.10.7-2_s390x.deb ... 226s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 226s Selecting previously unselected package librust-static-assertions-dev:s390x. 226s Preparing to unpack .../187-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 226s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 226s Selecting previously unselected package librust-twox-hash-dev:s390x. 226s Preparing to unpack .../188-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 226s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 226s Selecting previously unselected package librust-ruzstd-dev:s390x. 226s Preparing to unpack .../189-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 226s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 226s Selecting previously unselected package librust-object-dev:s390x. 226s Preparing to unpack .../190-librust-object-dev_0.36.5-2_s390x.deb ... 226s Unpacking librust-object-dev:s390x (0.36.5-2) ... 226s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 226s Preparing to unpack .../191-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 226s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 226s Selecting previously unselected package librust-typed-arena-dev:s390x. 226s Preparing to unpack .../192-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 226s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 226s Selecting previously unselected package librust-addr2line-dev:s390x. 226s Preparing to unpack .../193-librust-addr2line-dev_0.24.2-2_s390x.deb ... 226s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 226s Selecting previously unselected package librust-bytes-dev:s390x. 226s Preparing to unpack .../194-librust-bytes-dev_1.9.0-1_s390x.deb ... 226s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 226s Selecting previously unselected package librust-bitflags-1-dev:s390x. 226s Preparing to unpack .../195-librust-bitflags-1-dev_1.3.2-7_s390x.deb ... 226s Unpacking librust-bitflags-1-dev:s390x (1.3.2-7) ... 226s Selecting previously unselected package librust-thiserror-impl-dev:s390x. 226s Preparing to unpack .../196-librust-thiserror-impl-dev_2.0.11-1_s390x.deb ... 226s Unpacking librust-thiserror-impl-dev:s390x (2.0.11-1) ... 226s Selecting previously unselected package librust-thiserror-dev:s390x. 226s Preparing to unpack .../197-librust-thiserror-dev_2.0.11-1_s390x.deb ... 226s Unpacking librust-thiserror-dev:s390x (2.0.11-1) ... 226s Selecting previously unselected package librust-defmt-parser-dev:s390x. 226s Preparing to unpack .../198-librust-defmt-parser-dev_0.4.1-1_s390x.deb ... 226s Unpacking librust-defmt-parser-dev:s390x (0.4.1-1) ... 226s Selecting previously unselected package librust-proc-macro-error-attr2-dev:s390x. 226s Preparing to unpack .../199-librust-proc-macro-error-attr2-dev_2.0.0-1_s390x.deb ... 226s Unpacking librust-proc-macro-error-attr2-dev:s390x (2.0.0-1) ... 226s Selecting previously unselected package librust-proc-macro-error2-dev:s390x. 226s Preparing to unpack .../200-librust-proc-macro-error2-dev_2.0.1-1_s390x.deb ... 226s Unpacking librust-proc-macro-error2-dev:s390x (2.0.1-1) ... 226s Selecting previously unselected package librust-defmt-macros-dev:s390x. 226s Preparing to unpack .../201-librust-defmt-macros-dev_0.4.0-1_s390x.deb ... 226s Unpacking librust-defmt-macros-dev:s390x (0.4.0-1) ... 226s Selecting previously unselected package librust-defmt-dev:s390x. 226s Preparing to unpack .../202-librust-defmt-dev_0.3.10-1_s390x.deb ... 226s Unpacking librust-defmt-dev:s390x (0.3.10-1) ... 226s Selecting previously unselected package librust-hash32-dev:s390x. 226s Preparing to unpack .../203-librust-hash32-dev_0.3.1-2_s390x.deb ... 226s Unpacking librust-hash32-dev:s390x (0.3.1-2) ... 226s Selecting previously unselected package librust-ufmt-write-dev:s390x. 226s Preparing to unpack .../204-librust-ufmt-write-dev_0.1.0-1_s390x.deb ... 226s Unpacking librust-ufmt-write-dev:s390x (0.1.0-1) ... 226s Selecting previously unselected package librust-heapless-dev:s390x. 226s Preparing to unpack .../205-librust-heapless-dev_0.8.0-2_s390x.deb ... 226s Unpacking librust-heapless-dev:s390x (0.8.0-2) ... 226s Selecting previously unselected package librust-aead-dev:s390x. 226s Preparing to unpack .../206-librust-aead-dev_0.5.2-2_s390x.deb ... 226s Unpacking librust-aead-dev:s390x (0.5.2-2) ... 226s Selecting previously unselected package librust-block-padding-dev:s390x. 226s Preparing to unpack .../207-librust-block-padding-dev_0.3.3-1_s390x.deb ... 226s Unpacking librust-block-padding-dev:s390x (0.3.3-1) ... 226s Selecting previously unselected package librust-inout-dev:s390x. 226s Preparing to unpack .../208-librust-inout-dev_0.1.3-3_s390x.deb ... 226s Unpacking librust-inout-dev:s390x (0.1.3-3) ... 226s Selecting previously unselected package librust-cipher-dev:s390x. 226s Preparing to unpack .../209-librust-cipher-dev_0.4.4-3_s390x.deb ... 226s Unpacking librust-cipher-dev:s390x (0.4.4-3) ... 226s Selecting previously unselected package librust-cpufeatures-dev:s390x. 226s Preparing to unpack .../210-librust-cpufeatures-dev_0.2.16-1_s390x.deb ... 226s Unpacking librust-cpufeatures-dev:s390x (0.2.16-1) ... 226s Selecting previously unselected package librust-aes-dev:s390x. 226s Preparing to unpack .../211-librust-aes-dev_0.8.4-1_s390x.deb ... 226s Unpacking librust-aes-dev:s390x (0.8.4-1) ... 226s Selecting previously unselected package librust-ctr-dev:s390x. 226s Preparing to unpack .../212-librust-ctr-dev_0.9.2-1_s390x.deb ... 226s Unpacking librust-ctr-dev:s390x (0.9.2-1) ... 226s Selecting previously unselected package librust-opaque-debug-dev:s390x. 226s Preparing to unpack .../213-librust-opaque-debug-dev_0.3.0-1_s390x.deb ... 226s Unpacking librust-opaque-debug-dev:s390x (0.3.0-1) ... 226s Selecting previously unselected package librust-universal-hash-dev:s390x. 226s Preparing to unpack .../214-librust-universal-hash-dev_0.5.1-1_s390x.deb ... 226s Unpacking librust-universal-hash-dev:s390x (0.5.1-1) ... 226s Selecting previously unselected package librust-polyval-dev:s390x. 226s Preparing to unpack .../215-librust-polyval-dev_0.6.1-1_s390x.deb ... 226s Unpacking librust-polyval-dev:s390x (0.6.1-1) ... 226s Selecting previously unselected package librust-ghash-dev:s390x. 226s Preparing to unpack .../216-librust-ghash-dev_0.5.0-1_s390x.deb ... 226s Unpacking librust-ghash-dev:s390x (0.5.0-1) ... 226s Selecting previously unselected package librust-aes-gcm-dev:s390x. 226s Preparing to unpack .../217-librust-aes-gcm-dev_0.10.3-2_s390x.deb ... 226s Unpacking librust-aes-gcm-dev:s390x (0.10.3-2) ... 226s Selecting previously unselected package librust-anes-dev:s390x. 226s Preparing to unpack .../218-librust-anes-dev_0.1.6-1_s390x.deb ... 226s Unpacking librust-anes-dev:s390x (0.1.6-1) ... 226s Selecting previously unselected package librust-backtrace-dev:s390x. 226s Preparing to unpack .../219-librust-backtrace-dev_0.3.74-3_s390x.deb ... 226s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 226s Selecting previously unselected package librust-anyhow-dev:s390x. 226s Preparing to unpack .../220-librust-anyhow-dev_1.0.86-1_s390x.deb ... 226s Unpacking librust-anyhow-dev:s390x (1.0.86-1) ... 226s Selecting previously unselected package librust-winapi-i686-pc-windows-gnu-dev:s390x. 226s Preparing to unpack .../221-librust-winapi-i686-pc-windows-gnu-dev_0.4.0-1_s390x.deb ... 226s Unpacking librust-winapi-i686-pc-windows-gnu-dev:s390x (0.4.0-1) ... 226s Selecting previously unselected package librust-winapi-x86-64-pc-windows-gnu-dev:s390x. 226s Preparing to unpack .../222-librust-winapi-x86-64-pc-windows-gnu-dev_0.4.0-1_s390x.deb ... 226s Unpacking librust-winapi-x86-64-pc-windows-gnu-dev:s390x (0.4.0-1) ... 226s Selecting previously unselected package librust-winapi-dev:s390x. 226s Preparing to unpack .../223-librust-winapi-dev_0.3.9-1_s390x.deb ... 226s Unpacking librust-winapi-dev:s390x (0.3.9-1) ... 226s Selecting previously unselected package librust-dirs-sys-next-dev:s390x. 226s Preparing to unpack .../224-librust-dirs-sys-next-dev_0.1.1-1_s390x.deb ... 226s Unpacking librust-dirs-sys-next-dev:s390x (0.1.1-1) ... 226s Selecting previously unselected package librust-dirs-next-dev:s390x. 226s Preparing to unpack .../225-librust-dirs-next-dev_2.0.0-1_s390x.deb ... 226s Unpacking librust-dirs-next-dev:s390x (2.0.0-1) ... 226s Selecting previously unselected package librust-rustversion-dev:s390x. 226s Preparing to unpack .../226-librust-rustversion-dev_1.0.14-1_s390x.deb ... 226s Unpacking librust-rustversion-dev:s390x (1.0.14-1) ... 226s Selecting previously unselected package librust-term-dev:s390x. 226s Preparing to unpack .../227-librust-term-dev_0.7.0-1_s390x.deb ... 226s Unpacking librust-term-dev:s390x (0.7.0-1) ... 226s Selecting previously unselected package librust-ascii-canvas-dev:s390x. 226s Preparing to unpack .../228-librust-ascii-canvas-dev_3.0.0-1_s390x.deb ... 226s Unpacking librust-ascii-canvas-dev:s390x (3.0.0-1) ... 226s Selecting previously unselected package librust-syn-1-dev:s390x. 226s Preparing to unpack .../229-librust-syn-1-dev_1.0.109-3_s390x.deb ... 226s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 226s Selecting previously unselected package librust-async-attributes-dev. 226s Preparing to unpack .../230-librust-async-attributes-dev_1.1.2-6_all.deb ... 226s Unpacking librust-async-attributes-dev (1.1.2-6) ... 226s Selecting previously unselected package librust-concurrent-queue-dev:s390x. 226s Preparing to unpack .../231-librust-concurrent-queue-dev_2.5.0-4_s390x.deb ... 226s Unpacking librust-concurrent-queue-dev:s390x (2.5.0-4) ... 226s Selecting previously unselected package librust-parking-dev:s390x. 226s Preparing to unpack .../232-librust-parking-dev_2.2.0-1_s390x.deb ... 226s Unpacking librust-parking-dev:s390x (2.2.0-1) ... 226s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 226s Preparing to unpack .../233-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 226s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 226s Selecting previously unselected package librust-event-listener-dev. 226s Preparing to unpack .../234-librust-event-listener-dev_5.4.0-2_all.deb ... 226s Unpacking librust-event-listener-dev (5.4.0-2) ... 226s Selecting previously unselected package librust-event-listener-strategy-dev:s390x. 226s Preparing to unpack .../235-librust-event-listener-strategy-dev_0.5.3-1_s390x.deb ... 226s Unpacking librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 226s Selecting previously unselected package librust-futures-core-dev:s390x. 226s Preparing to unpack .../236-librust-futures-core-dev_0.3.31-1_s390x.deb ... 226s Unpacking librust-futures-core-dev:s390x (0.3.31-1) ... 226s Selecting previously unselected package librust-async-channel-dev. 226s Preparing to unpack .../237-librust-async-channel-dev_2.3.1-8_all.deb ... 226s Unpacking librust-async-channel-dev (2.3.1-8) ... 226s Selecting previously unselected package librust-async-task-dev. 226s Preparing to unpack .../238-librust-async-task-dev_4.7.1-3_all.deb ... 226s Unpacking librust-async-task-dev (4.7.1-3) ... 226s Selecting previously unselected package librust-fastrand-dev:s390x. 226s Preparing to unpack .../239-librust-fastrand-dev_2.1.1-1_s390x.deb ... 226s Unpacking librust-fastrand-dev:s390x (2.1.1-1) ... 226s Selecting previously unselected package librust-futures-io-dev:s390x. 226s Preparing to unpack .../240-librust-futures-io-dev_0.3.31-1_s390x.deb ... 226s Unpacking librust-futures-io-dev:s390x (0.3.31-1) ... 226s Selecting previously unselected package librust-futures-lite-dev:s390x. 226s Preparing to unpack .../241-librust-futures-lite-dev_2.3.0-2_s390x.deb ... 226s Unpacking librust-futures-lite-dev:s390x (2.3.0-2) ... 226s Selecting previously unselected package librust-slab-dev:s390x. 226s Preparing to unpack .../242-librust-slab-dev_0.4.9-1_s390x.deb ... 226s Unpacking librust-slab-dev:s390x (0.4.9-1) ... 226s Selecting previously unselected package librust-async-executor-dev. 226s Preparing to unpack .../243-librust-async-executor-dev_1.13.1-1_all.deb ... 226s Unpacking librust-async-executor-dev (1.13.1-1) ... 226s Selecting previously unselected package librust-async-lock-dev. 226s Preparing to unpack .../244-librust-async-lock-dev_3.4.0-4_all.deb ... 226s Unpacking librust-async-lock-dev (3.4.0-4) ... 226s Selecting previously unselected package librust-atomic-waker-dev:s390x. 226s Preparing to unpack .../245-librust-atomic-waker-dev_1.1.2-1_s390x.deb ... 226s Unpacking librust-atomic-waker-dev:s390x (1.1.2-1) ... 226s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 226s Preparing to unpack .../246-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 226s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 226s Selecting previously unselected package librust-valuable-derive-dev:s390x. 226s Preparing to unpack .../247-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 226s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 226s Selecting previously unselected package librust-valuable-dev:s390x. 226s Preparing to unpack .../248-librust-valuable-dev_0.1.0-4_s390x.deb ... 226s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 226s Selecting previously unselected package librust-tracing-core-dev:s390x. 226s Preparing to unpack .../249-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 226s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 226s Selecting previously unselected package librust-tracing-dev:s390x. 226s Preparing to unpack .../250-librust-tracing-dev_0.1.40-1_s390x.deb ... 226s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 226s Selecting previously unselected package librust-blocking-dev. 227s Preparing to unpack .../251-librust-blocking-dev_1.6.1-5_all.deb ... 227s Unpacking librust-blocking-dev (1.6.1-5) ... 227s Selecting previously unselected package librust-async-fs-dev. 227s Preparing to unpack .../252-librust-async-fs-dev_2.1.2-4_all.deb ... 227s Unpacking librust-async-fs-dev (2.1.2-4) ... 227s Selecting previously unselected package librust-bytemuck-derive-dev:s390x. 227s Preparing to unpack .../253-librust-bytemuck-derive-dev_1.5.0-2_s390x.deb ... 227s Unpacking librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 227s Selecting previously unselected package librust-bytemuck-dev:s390x. 227s Preparing to unpack .../254-librust-bytemuck-dev_1.21.0-1_s390x.deb ... 227s Unpacking librust-bytemuck-dev:s390x (1.21.0-1) ... 227s Selecting previously unselected package librust-bitflags-dev:s390x. 227s Preparing to unpack .../255-librust-bitflags-dev_2.6.0-1_s390x.deb ... 227s Unpacking librust-bitflags-dev:s390x (2.6.0-1) ... 227s Selecting previously unselected package librust-compiler-builtins+core-dev:s390x. 227s Preparing to unpack .../256-librust-compiler-builtins+core-dev_0.1.139-1_s390x.deb ... 227s Unpacking librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 227s Selecting previously unselected package librust-compiler-builtins+rustc-dep-of-std-dev:s390x. 227s Preparing to unpack .../257-librust-compiler-builtins+rustc-dep-of-std-dev_0.1.139-1_s390x.deb ... 227s Unpacking librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 227s Selecting previously unselected package librust-errno-dev:s390x. 227s Preparing to unpack .../258-librust-errno-dev_0.3.8-1_s390x.deb ... 227s Unpacking librust-errno-dev:s390x (0.3.8-1) ... 227s Selecting previously unselected package librust-linux-raw-sys-dev:s390x. 227s Preparing to unpack .../259-librust-linux-raw-sys-dev_0.4.14-1_s390x.deb ... 227s Unpacking librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 227s Selecting previously unselected package librust-rustix-dev:s390x. 227s Preparing to unpack .../260-librust-rustix-dev_0.38.37-1_s390x.deb ... 227s Unpacking librust-rustix-dev:s390x (0.38.37-1) ... 227s Selecting previously unselected package librust-polling-dev:s390x. 227s Preparing to unpack .../261-librust-polling-dev_3.4.0-1_s390x.deb ... 227s Unpacking librust-polling-dev:s390x (3.4.0-1) ... 227s Selecting previously unselected package librust-async-io-dev:s390x. 227s Preparing to unpack .../262-librust-async-io-dev_2.3.3-4_s390x.deb ... 227s Unpacking librust-async-io-dev:s390x (2.3.3-4) ... 227s Selecting previously unselected package librust-mio-dev:s390x. 227s Preparing to unpack .../263-librust-mio-dev_1.0.2-3_s390x.deb ... 227s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 227s Selecting previously unselected package librust-owning-ref-dev:s390x. 227s Preparing to unpack .../264-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 227s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 227s Selecting previously unselected package librust-scopeguard-dev:s390x. 227s Preparing to unpack .../265-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 227s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 227s Selecting previously unselected package librust-lock-api-dev:s390x. 227s Preparing to unpack .../266-librust-lock-api-dev_0.4.12-1_s390x.deb ... 227s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 227s Selecting previously unselected package librust-parking-lot-dev:s390x. 227s Preparing to unpack .../267-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 227s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 227s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 227s Preparing to unpack .../268-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 227s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 227s Selecting previously unselected package librust-socket2-dev:s390x. 227s Preparing to unpack .../269-librust-socket2-dev_0.5.8-1_s390x.deb ... 227s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 227s Selecting previously unselected package librust-tokio-macros-dev:s390x. 227s Preparing to unpack .../270-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 227s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 227s Selecting previously unselected package librust-tokio-dev:s390x. 227s Preparing to unpack .../271-librust-tokio-dev_1.43.0-1_s390x.deb ... 227s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 227s Selecting previously unselected package librust-async-global-executor-dev:s390x. 227s Preparing to unpack .../272-librust-async-global-executor-dev_2.4.1-5_s390x.deb ... 227s Unpacking librust-async-global-executor-dev:s390x (2.4.1-5) ... 227s Selecting previously unselected package librust-async-net-dev. 227s Preparing to unpack .../273-librust-async-net-dev_2.0.0-4_all.deb ... 227s Unpacking librust-async-net-dev (2.0.0-4) ... 227s Selecting previously unselected package librust-async-signal-dev:s390x. 227s Preparing to unpack .../274-librust-async-signal-dev_0.2.10-1_s390x.deb ... 227s Unpacking librust-async-signal-dev:s390x (0.2.10-1) ... 227s Selecting previously unselected package librust-async-process-dev. 227s Preparing to unpack .../275-librust-async-process-dev_2.3.0-1_all.deb ... 227s Unpacking librust-async-process-dev (2.3.0-1) ... 227s Selecting previously unselected package librust-kv-log-macro-dev. 227s Preparing to unpack .../276-librust-kv-log-macro-dev_1.0.8-4_all.deb ... 227s Unpacking librust-kv-log-macro-dev (1.0.8-4) ... 227s Selecting previously unselected package librust-pin-utils-dev:s390x. 227s Preparing to unpack .../277-librust-pin-utils-dev_0.1.0-1_s390x.deb ... 227s Unpacking librust-pin-utils-dev:s390x (0.1.0-1) ... 227s Selecting previously unselected package librust-async-std-dev. 227s Preparing to unpack .../278-librust-async-std-dev_1.13.0-3_all.deb ... 227s Unpacking librust-async-std-dev (1.13.0-3) ... 227s Selecting previously unselected package librust-atomic-dev:s390x. 227s Preparing to unpack .../279-librust-atomic-dev_0.6.0-1_s390x.deb ... 227s Unpacking librust-atomic-dev:s390x (0.6.0-1) ... 227s Selecting previously unselected package librust-base16ct-dev:s390x. 227s Preparing to unpack .../280-librust-base16ct-dev_0.2.0-1_s390x.deb ... 227s Unpacking librust-base16ct-dev:s390x (0.2.0-1) ... 227s Selecting previously unselected package librust-base64-dev:s390x. 227s Preparing to unpack .../281-librust-base64-dev_0.22.1-1_s390x.deb ... 227s Unpacking librust-base64-dev:s390x (0.22.1-1) ... 227s Selecting previously unselected package librust-base64ct-dev:s390x. 227s Preparing to unpack .../282-librust-base64ct-dev_1.6.0-1_s390x.deb ... 227s Unpacking librust-base64ct-dev:s390x (1.6.0-1) ... 227s Selecting previously unselected package librust-minimal-lexical-dev:s390x. 227s Preparing to unpack .../283-librust-minimal-lexical-dev_0.2.1-2_s390x.deb ... 227s Unpacking librust-minimal-lexical-dev:s390x (0.2.1-2) ... 227s Selecting previously unselected package librust-nom-dev:s390x. 227s Preparing to unpack .../284-librust-nom-dev_7.1.3-1_s390x.deb ... 227s Unpacking librust-nom-dev:s390x (7.1.3-1) ... 227s Selecting previously unselected package librust-nom+std-dev:s390x. 227s Preparing to unpack .../285-librust-nom+std-dev_7.1.3-1_s390x.deb ... 227s Unpacking librust-nom+std-dev:s390x (7.1.3-1) ... 227s Selecting previously unselected package librust-cexpr-dev:s390x. 227s Preparing to unpack .../286-librust-cexpr-dev_0.6.0-2_s390x.deb ... 227s Unpacking librust-cexpr-dev:s390x (0.6.0-2) ... 227s Selecting previously unselected package librust-glob-dev:s390x. 227s Preparing to unpack .../287-librust-glob-dev_0.3.2-1_s390x.deb ... 227s Unpacking librust-glob-dev:s390x (0.3.2-1) ... 227s Selecting previously unselected package librust-libloading-dev:s390x. 227s Preparing to unpack .../288-librust-libloading-dev_0.8.5-1_s390x.deb ... 227s Unpacking librust-libloading-dev:s390x (0.8.5-1) ... 227s Selecting previously unselected package llvm-19-runtime. 227s Preparing to unpack .../289-llvm-19-runtime_1%3a19.1.7-1ubuntu1_s390x.deb ... 227s Unpacking llvm-19-runtime (1:19.1.7-1ubuntu1) ... 227s Selecting previously unselected package llvm-runtime:s390x. 227s Preparing to unpack .../290-llvm-runtime_1%3a19.0-63_s390x.deb ... 227s Unpacking llvm-runtime:s390x (1:19.0-63) ... 227s Selecting previously unselected package libpfm4:s390x. 227s Preparing to unpack .../291-libpfm4_4.13.0+git83-g91970fe-1_s390x.deb ... 227s Unpacking libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 227s Selecting previously unselected package llvm-19. 227s Preparing to unpack .../292-llvm-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 227s Unpacking llvm-19 (1:19.1.7-1ubuntu1) ... 228s Selecting previously unselected package llvm. 228s Preparing to unpack .../293-llvm_1%3a19.0-63_s390x.deb ... 228s Unpacking llvm (1:19.0-63) ... 228s Selecting previously unselected package librust-clang-sys-dev:s390x. 228s Preparing to unpack .../294-librust-clang-sys-dev_1.8.1-3_s390x.deb ... 228s Unpacking librust-clang-sys-dev:s390x (1.8.1-3) ... 228s Selecting previously unselected package librust-itertools-dev:s390x. 228s Preparing to unpack .../295-librust-itertools-dev_0.13.0-3_s390x.deb ... 228s Unpacking librust-itertools-dev:s390x (0.13.0-3) ... 228s Selecting previously unselected package librust-prettyplease-dev:s390x. 228s Preparing to unpack .../296-librust-prettyplease-dev_0.2.6-1_s390x.deb ... 228s Unpacking librust-prettyplease-dev:s390x (0.2.6-1) ... 228s Selecting previously unselected package librust-rustc-hash-dev:s390x. 228s Preparing to unpack .../297-librust-rustc-hash-dev_1.1.0-1_s390x.deb ... 228s Unpacking librust-rustc-hash-dev:s390x (1.1.0-1) ... 228s Selecting previously unselected package librust-shlex-dev:s390x. 228s Preparing to unpack .../298-librust-shlex-dev_1.3.0-1_s390x.deb ... 228s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 228s Selecting previously unselected package librust-bindgen-dev:s390x. 228s Preparing to unpack .../299-librust-bindgen-dev_0.70.1-2_s390x.deb ... 228s Unpacking librust-bindgen-dev:s390x (0.70.1-2) ... 228s Selecting previously unselected package librust-bit-field-dev:s390x. 228s Preparing to unpack .../300-librust-bit-field-dev_0.10.2-1_s390x.deb ... 228s Unpacking librust-bit-field-dev:s390x (0.10.2-1) ... 228s Selecting previously unselected package librust-bit-vec-dev:s390x. 228s Preparing to unpack .../301-librust-bit-vec-dev_0.6.3-1_s390x.deb ... 228s Unpacking librust-bit-vec-dev:s390x (0.6.3-1) ... 228s Selecting previously unselected package librust-bit-set-dev:s390x. 228s Preparing to unpack .../302-librust-bit-set-dev_0.5.2-1_s390x.deb ... 228s Unpacking librust-bit-set-dev:s390x (0.5.2-1) ... 228s Selecting previously unselected package librust-funty-dev:s390x. 228s Preparing to unpack .../303-librust-funty-dev_2.0.0-1_s390x.deb ... 228s Unpacking librust-funty-dev:s390x (2.0.0-1) ... 228s Selecting previously unselected package librust-radium-dev:s390x. 228s Preparing to unpack .../304-librust-radium-dev_1.1.0-1_s390x.deb ... 228s Unpacking librust-radium-dev:s390x (1.1.0-1) ... 228s Selecting previously unselected package librust-tap-dev:s390x. 228s Preparing to unpack .../305-librust-tap-dev_1.0.1-1_s390x.deb ... 228s Unpacking librust-tap-dev:s390x (1.0.1-1) ... 228s Selecting previously unselected package librust-traitobject-dev:s390x. 228s Preparing to unpack .../306-librust-traitobject-dev_0.1.0-1_s390x.deb ... 228s Unpacking librust-traitobject-dev:s390x (0.1.0-1) ... 228s Selecting previously unselected package librust-unsafe-any-dev:s390x. 228s Preparing to unpack .../307-librust-unsafe-any-dev_0.4.2-2_s390x.deb ... 228s Unpacking librust-unsafe-any-dev:s390x (0.4.2-2) ... 228s Selecting previously unselected package librust-typemap-dev:s390x. 228s Preparing to unpack .../308-librust-typemap-dev_0.3.3-2_s390x.deb ... 228s Unpacking librust-typemap-dev:s390x (0.3.3-2) ... 228s Selecting previously unselected package librust-wyz-dev:s390x. 228s Preparing to unpack .../309-librust-wyz-dev_0.5.1-1_s390x.deb ... 228s Unpacking librust-wyz-dev:s390x (0.5.1-1) ... 228s Selecting previously unselected package librust-bitvec-dev:s390x. 228s Preparing to unpack .../310-librust-bitvec-dev_1.0.1-1_s390x.deb ... 228s Unpacking librust-bitvec-dev:s390x (1.0.1-1) ... 228s Selecting previously unselected package librust-blowfish-dev:s390x. 228s Preparing to unpack .../311-librust-blowfish-dev_0.9.1-1_s390x.deb ... 228s Unpacking librust-blowfish-dev:s390x (0.9.1-1) ... 228s Selecting previously unselected package librust-botan-sys-dev:s390x. 228s Preparing to unpack .../312-librust-botan-sys-dev_0.10.5-1_s390x.deb ... 228s Unpacking librust-botan-sys-dev:s390x (0.10.5-1) ... 228s Selecting previously unselected package librust-botan-dev:s390x. 228s Preparing to unpack .../313-librust-botan-dev_0.10.7-1_s390x.deb ... 228s Unpacking librust-botan-dev:s390x (0.10.7-1) ... 228s Selecting previously unselected package librust-jobserver-dev:s390x. 228s Preparing to unpack .../314-librust-jobserver-dev_0.1.32-1_s390x.deb ... 228s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 228s Selecting previously unselected package librust-cc-dev:s390x. 228s Preparing to unpack .../315-librust-cc-dev_1.1.14-1_s390x.deb ... 228s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 228s Selecting previously unselected package librust-bzip2-sys-dev:s390x. 228s Preparing to unpack .../316-librust-bzip2-sys-dev_0.1.11-1_s390x.deb ... 228s Unpacking librust-bzip2-sys-dev:s390x (0.1.11-1) ... 228s Selecting previously unselected package librust-bzip2-dev:s390x. 228s Preparing to unpack .../317-librust-bzip2-dev_0.4.4-1_s390x.deb ... 228s Unpacking librust-bzip2-dev:s390x (0.4.4-1) ... 228s Selecting previously unselected package librust-spin-dev:s390x. 228s Preparing to unpack .../318-librust-spin-dev_0.9.8-4_s390x.deb ... 228s Unpacking librust-spin-dev:s390x (0.9.8-4) ... 228s Selecting previously unselected package librust-lazy-static-dev:s390x. 228s Preparing to unpack .../319-librust-lazy-static-dev_1.5.0-1_s390x.deb ... 228s Unpacking librust-lazy-static-dev:s390x (1.5.0-1) ... 228s Selecting previously unselected package librust-buffered-reader-dev:s390x. 228s Preparing to unpack .../320-librust-buffered-reader-dev_1.3.1-2_s390x.deb ... 228s Unpacking librust-buffered-reader-dev:s390x (1.3.1-2) ... 228s Selecting previously unselected package librust-bumpalo-dev:s390x. 228s Preparing to unpack .../321-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 228s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 228s Selecting previously unselected package librust-bytecheck-derive-dev:s390x. 228s Preparing to unpack .../322-librust-bytecheck-derive-dev_0.6.12-1_s390x.deb ... 228s Unpacking librust-bytecheck-derive-dev:s390x (0.6.12-1) ... 228s Selecting previously unselected package librust-ptr-meta-derive-dev:s390x. 228s Preparing to unpack .../323-librust-ptr-meta-derive-dev_0.1.4-1_s390x.deb ... 228s Unpacking librust-ptr-meta-derive-dev:s390x (0.1.4-1) ... 228s Selecting previously unselected package librust-ptr-meta-dev:s390x. 228s Preparing to unpack .../324-librust-ptr-meta-dev_0.1.4-1_s390x.deb ... 228s Unpacking librust-ptr-meta-dev:s390x (0.1.4-1) ... 228s Selecting previously unselected package librust-simdutf8-dev:s390x. 228s Preparing to unpack .../325-librust-simdutf8-dev_0.1.4-4_s390x.deb ... 228s Unpacking librust-simdutf8-dev:s390x (0.1.4-4) ... 228s Selecting previously unselected package librust-md5-asm-dev:s390x. 228s Preparing to unpack .../326-librust-md5-asm-dev_0.5.0-2_s390x.deb ... 228s Unpacking librust-md5-asm-dev:s390x (0.5.0-2) ... 228s Selecting previously unselected package librust-md-5-dev:s390x. 228s Preparing to unpack .../327-librust-md-5-dev_0.10.6-1_s390x.deb ... 228s Unpacking librust-md-5-dev:s390x (0.10.6-1) ... 228s Selecting previously unselected package librust-sha1-asm-dev:s390x. 228s Preparing to unpack .../328-librust-sha1-asm-dev_0.5.1-2_s390x.deb ... 228s Unpacking librust-sha1-asm-dev:s390x (0.5.1-2) ... 228s Selecting previously unselected package librust-sha1-dev:s390x. 228s Preparing to unpack .../329-librust-sha1-dev_0.10.6-1_s390x.deb ... 228s Unpacking librust-sha1-dev:s390x (0.10.6-1) ... 228s Selecting previously unselected package librust-slog-dev:s390x. 228s Preparing to unpack .../330-librust-slog-dev_2.7.0-1_s390x.deb ... 228s Unpacking librust-slog-dev:s390x (2.7.0-1) ... 228s Selecting previously unselected package librust-uuid-dev:s390x. 228s Preparing to unpack .../331-librust-uuid-dev_1.10.0-1_s390x.deb ... 228s Unpacking librust-uuid-dev:s390x (1.10.0-1) ... 228s Selecting previously unselected package librust-bytecheck-dev:s390x. 228s Preparing to unpack .../332-librust-bytecheck-dev_0.6.12-1_s390x.deb ... 228s Unpacking librust-bytecheck-dev:s390x (0.6.12-1) ... 228s Selecting previously unselected package librust-camellia-dev:s390x. 228s Preparing to unpack .../333-librust-camellia-dev_0.1.0-1_s390x.deb ... 228s Unpacking librust-camellia-dev:s390x (0.1.0-1) ... 228s Selecting previously unselected package librust-cast-dev:s390x. 228s Preparing to unpack .../334-librust-cast-dev_0.3.0-1_s390x.deb ... 228s Unpacking librust-cast-dev:s390x (0.3.0-1) ... 228s Selecting previously unselected package librust-cast5-dev:s390x. 228s Preparing to unpack .../335-librust-cast5-dev_0.11.1-1_s390x.deb ... 228s Unpacking librust-cast5-dev:s390x (0.11.1-1) ... 228s Selecting previously unselected package librust-cbc-dev:s390x. 228s Preparing to unpack .../336-librust-cbc-dev_0.1.2-1_s390x.deb ... 228s Unpacking librust-cbc-dev:s390x (0.1.2-1) ... 228s Selecting previously unselected package librust-cfb-mode-dev:s390x. 228s Preparing to unpack .../337-librust-cfb-mode-dev_0.8.2-1_s390x.deb ... 228s Unpacking librust-cfb-mode-dev:s390x (0.8.2-1) ... 228s Selecting previously unselected package librust-iana-time-zone-dev:s390x. 228s Preparing to unpack .../338-librust-iana-time-zone-dev_0.1.60-1_s390x.deb ... 228s Unpacking librust-iana-time-zone-dev:s390x (0.1.60-1) ... 228s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 228s Preparing to unpack .../339-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 228s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 228s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 228s Preparing to unpack .../340-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 228s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 228s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 228s Preparing to unpack .../341-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 228s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 228s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 228s Preparing to unpack .../342-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 228s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 228s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 228s Preparing to unpack .../343-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 228s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 228s Selecting previously unselected package librust-js-sys-dev:s390x. 228s Preparing to unpack .../344-librust-js-sys-dev_0.3.64-1_s390x.deb ... 228s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 228s Selecting previously unselected package librust-pure-rust-locales-dev:s390x. 228s Preparing to unpack .../345-librust-pure-rust-locales-dev_0.8.1-1_s390x.deb ... 228s Unpacking librust-pure-rust-locales-dev:s390x (0.8.1-1) ... 228s Selecting previously unselected package librust-chrono-dev:s390x. 228s Preparing to unpack .../346-librust-chrono-dev_0.4.39-2_s390x.deb ... 228s Unpacking librust-chrono-dev:s390x (0.4.39-2) ... 228s Selecting previously unselected package librust-ciborium-io-dev:s390x. 228s Preparing to unpack .../347-librust-ciborium-io-dev_0.2.2-1_s390x.deb ... 228s Unpacking librust-ciborium-io-dev:s390x (0.2.2-1) ... 228s Selecting previously unselected package librust-rand-distr-dev:s390x. 228s Preparing to unpack .../348-librust-rand-distr-dev_0.4.3-1_s390x.deb ... 228s Unpacking librust-rand-distr-dev:s390x (0.4.3-1) ... 228s Selecting previously unselected package librust-rend-dev:s390x. 228s Preparing to unpack .../349-librust-rend-dev_0.4.0-1_s390x.deb ... 228s Unpacking librust-rend-dev:s390x (0.4.0-1) ... 228s Selecting previously unselected package librust-rkyv-derive-dev:s390x. 229s Preparing to unpack .../350-librust-rkyv-derive-dev_0.7.44-1_s390x.deb ... 229s Unpacking librust-rkyv-derive-dev:s390x (0.7.44-1) ... 229s Selecting previously unselected package librust-seahash-dev:s390x. 229s Preparing to unpack .../351-librust-seahash-dev_4.1.0-1_s390x.deb ... 229s Unpacking librust-seahash-dev:s390x (4.1.0-1) ... 229s Selecting previously unselected package librust-smol-str-dev:s390x. 229s Preparing to unpack .../352-librust-smol-str-dev_0.2.0-1_s390x.deb ... 229s Unpacking librust-smol-str-dev:s390x (0.2.0-1) ... 229s Selecting previously unselected package librust-tinyvec-dev:s390x. 229s Preparing to unpack .../353-librust-tinyvec-dev_1.6.0-2_s390x.deb ... 229s Unpacking librust-tinyvec-dev:s390x (1.6.0-2) ... 229s Selecting previously unselected package librust-tinyvec-macros-dev:s390x. 229s Preparing to unpack .../354-librust-tinyvec-macros-dev_0.1.0-1_s390x.deb ... 229s Unpacking librust-tinyvec-macros-dev:s390x (0.1.0-1) ... 229s Selecting previously unselected package librust-tinyvec+tinyvec-macros-dev:s390x. 229s Preparing to unpack .../355-librust-tinyvec+tinyvec-macros-dev_1.6.0-2_s390x.deb ... 229s Unpacking librust-tinyvec+tinyvec-macros-dev:s390x (1.6.0-2) ... 229s Selecting previously unselected package librust-rkyv-dev:s390x. 229s Preparing to unpack .../356-librust-rkyv-dev_0.7.44-1_s390x.deb ... 229s Unpacking librust-rkyv-dev:s390x (0.7.44-1) ... 229s Selecting previously unselected package librust-half-dev:s390x. 229s Preparing to unpack .../357-librust-half-dev_2.4.1-1_s390x.deb ... 229s Unpacking librust-half-dev:s390x (2.4.1-1) ... 229s Selecting previously unselected package librust-ciborium-ll-dev:s390x. 229s Preparing to unpack .../358-librust-ciborium-ll-dev_0.2.2-2_s390x.deb ... 229s Unpacking librust-ciborium-ll-dev:s390x (0.2.2-2) ... 229s Selecting previously unselected package librust-ciborium-dev:s390x. 229s Preparing to unpack .../359-librust-ciborium-dev_0.2.2-2_s390x.deb ... 229s Unpacking librust-ciborium-dev:s390x (0.2.2-2) ... 229s Selecting previously unselected package librust-clap-lex-dev:s390x. 229s Preparing to unpack .../360-librust-clap-lex-dev_0.7.4-1_s390x.deb ... 229s Unpacking librust-clap-lex-dev:s390x (0.7.4-1) ... 229s Selecting previously unselected package librust-strsim-dev:s390x. 229s Preparing to unpack .../361-librust-strsim-dev_0.11.1-1_s390x.deb ... 229s Unpacking librust-strsim-dev:s390x (0.11.1-1) ... 229s Selecting previously unselected package librust-terminal-size-dev:s390x. 229s Preparing to unpack .../362-librust-terminal-size-dev_0.3.0-2_s390x.deb ... 229s Unpacking librust-terminal-size-dev:s390x (0.3.0-2) ... 229s Selecting previously unselected package librust-unicase-dev:s390x. 229s Preparing to unpack .../363-librust-unicase-dev_2.8.0-1_s390x.deb ... 229s Unpacking librust-unicase-dev:s390x (2.8.0-1) ... 229s Selecting previously unselected package librust-unicode-width-dev:s390x. 229s Preparing to unpack .../364-librust-unicode-width-dev_0.2.0-1_s390x.deb ... 229s Unpacking librust-unicode-width-dev:s390x (0.2.0-1) ... 229s Selecting previously unselected package librust-clap-builder-dev:s390x. 229s Preparing to unpack .../365-librust-clap-builder-dev_4.5.23-1_s390x.deb ... 229s Unpacking librust-clap-builder-dev:s390x (4.5.23-1) ... 229s Selecting previously unselected package librust-unicode-segmentation-dev:s390x. 229s Preparing to unpack .../366-librust-unicode-segmentation-dev_1.12.0-1_s390x.deb ... 229s Unpacking librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 229s Selecting previously unselected package librust-heck-dev:s390x. 229s Preparing to unpack .../367-librust-heck-dev_0.4.1-1_s390x.deb ... 229s Unpacking librust-heck-dev:s390x (0.4.1-1) ... 229s Selecting previously unselected package librust-clap-derive-dev:s390x. 229s Preparing to unpack .../368-librust-clap-derive-dev_4.5.18-1_s390x.deb ... 229s Unpacking librust-clap-derive-dev:s390x (4.5.18-1) ... 229s Selecting previously unselected package librust-clap-dev:s390x. 229s Preparing to unpack .../369-librust-clap-dev_4.5.23-1_s390x.deb ... 229s Unpacking librust-clap-dev:s390x (4.5.23-1) ... 229s Selecting previously unselected package librust-roff-dev:s390x. 229s Preparing to unpack .../370-librust-roff-dev_0.2.1-1_s390x.deb ... 229s Unpacking librust-roff-dev:s390x (0.2.1-1) ... 229s Selecting previously unselected package librust-clap-mangen-dev:s390x. 229s Preparing to unpack .../371-librust-clap-mangen-dev_0.2.20-1_s390x.deb ... 229s Unpacking librust-clap-mangen-dev:s390x (0.2.20-1) ... 229s Selecting previously unselected package librust-dbl-dev:s390x. 229s Preparing to unpack .../372-librust-dbl-dev_0.3.2-1_s390x.deb ... 229s Unpacking librust-dbl-dev:s390x (0.3.2-1) ... 229s Selecting previously unselected package librust-cmac-dev:s390x. 229s Preparing to unpack .../373-librust-cmac-dev_0.7.2-1_s390x.deb ... 229s Unpacking librust-cmac-dev:s390x (0.7.2-1) ... 229s Selecting previously unselected package librust-color-quant-dev:s390x. 229s Preparing to unpack .../374-librust-color-quant-dev_1.1.0-1_s390x.deb ... 229s Unpacking librust-color-quant-dev:s390x (1.1.0-1) ... 229s Selecting previously unselected package librust-csv-core-dev:s390x. 229s Preparing to unpack .../375-librust-csv-core-dev_0.1.11-1_s390x.deb ... 229s Unpacking librust-csv-core-dev:s390x (0.1.11-1) ... 229s Selecting previously unselected package librust-csv-dev:s390x. 229s Preparing to unpack .../376-librust-csv-dev_1.3.0-1_s390x.deb ... 229s Unpacking librust-csv-dev:s390x (1.3.0-1) ... 229s Selecting previously unselected package librust-futures-sink-dev:s390x. 229s Preparing to unpack .../377-librust-futures-sink-dev_0.3.31-1_s390x.deb ... 229s Unpacking librust-futures-sink-dev:s390x (0.3.31-1) ... 229s Selecting previously unselected package librust-futures-channel-dev:s390x. 229s Preparing to unpack .../378-librust-futures-channel-dev_0.3.31-1_s390x.deb ... 229s Unpacking librust-futures-channel-dev:s390x (0.3.31-1) ... 229s Selecting previously unselected package librust-futures-task-dev:s390x. 229s Preparing to unpack .../379-librust-futures-task-dev_0.3.31-3_s390x.deb ... 229s Unpacking librust-futures-task-dev:s390x (0.3.31-3) ... 229s Selecting previously unselected package librust-futures-macro-dev:s390x. 229s Preparing to unpack .../380-librust-futures-macro-dev_0.3.31-1_s390x.deb ... 229s Unpacking librust-futures-macro-dev:s390x (0.3.31-1) ... 229s Selecting previously unselected package librust-futures-util-dev:s390x. 229s Preparing to unpack .../381-librust-futures-util-dev_0.3.31-1_s390x.deb ... 229s Unpacking librust-futures-util-dev:s390x (0.3.31-1) ... 229s Selecting previously unselected package librust-num-cpus-dev:s390x. 229s Preparing to unpack .../382-librust-num-cpus-dev_1.16.0-1_s390x.deb ... 229s Unpacking librust-num-cpus-dev:s390x (1.16.0-1) ... 229s Selecting previously unselected package librust-futures-executor-dev:s390x. 229s Preparing to unpack .../383-librust-futures-executor-dev_0.3.31-1_s390x.deb ... 229s Unpacking librust-futures-executor-dev:s390x (0.3.31-1) ... 229s Selecting previously unselected package librust-futures-dev:s390x. 229s Preparing to unpack .../384-librust-futures-dev_0.3.30-2_s390x.deb ... 229s Unpacking librust-futures-dev:s390x (0.3.30-2) ... 229s Selecting previously unselected package librust-is-terminal-dev:s390x. 229s Preparing to unpack .../385-librust-is-terminal-dev_0.4.13-1_s390x.deb ... 229s Unpacking librust-is-terminal-dev:s390x (0.4.13-1) ... 229s Selecting previously unselected package librust-oorandom-dev:s390x. 229s Preparing to unpack .../386-librust-oorandom-dev_11.1.3-1_s390x.deb ... 229s Unpacking librust-oorandom-dev:s390x (11.1.3-1) ... 229s Selecting previously unselected package librust-option-ext-dev:s390x. 229s Preparing to unpack .../387-librust-option-ext-dev_0.2.0-1_s390x.deb ... 229s Unpacking librust-option-ext-dev:s390x (0.2.0-1) ... 229s Selecting previously unselected package librust-dirs-sys-dev:s390x. 229s Preparing to unpack .../388-librust-dirs-sys-dev_0.4.1-1_s390x.deb ... 229s Unpacking librust-dirs-sys-dev:s390x (0.4.1-1) ... 229s Selecting previously unselected package librust-dirs-dev:s390x. 229s Preparing to unpack .../389-librust-dirs-dev_5.0.1-1_s390x.deb ... 229s Unpacking librust-dirs-dev:s390x (5.0.1-1) ... 229s Selecting previously unselected package librust-float-ord-dev:s390x. 229s Preparing to unpack .../390-librust-float-ord-dev_0.3.2-1_s390x.deb ... 229s Unpacking librust-float-ord-dev:s390x (0.3.2-1) ... 229s Selecting previously unselected package librust-freetype-sys-dev:s390x. 229s Preparing to unpack .../391-librust-freetype-sys-dev_0.20.1-1_s390x.deb ... 229s Unpacking librust-freetype-sys-dev:s390x (0.20.1-1) ... 229s Selecting previously unselected package librust-freetype-dev:s390x. 229s Preparing to unpack .../392-librust-freetype-dev_0.7.2-1_s390x.deb ... 229s Unpacking librust-freetype-dev:s390x (0.7.2-1) ... 229s Selecting previously unselected package librust-semver-dev:s390x. 229s Preparing to unpack .../393-librust-semver-dev_1.0.23-1_s390x.deb ... 229s Unpacking librust-semver-dev:s390x (1.0.23-1) ... 229s Selecting previously unselected package librust-rustc-version-dev:s390x. 229s Preparing to unpack .../394-librust-rustc-version-dev_0.4.0-1_s390x.deb ... 229s Unpacking librust-rustc-version-dev:s390x (0.4.0-1) ... 229s Selecting previously unselected package librust-pathfinder-simd-dev:s390x. 229s Preparing to unpack .../395-librust-pathfinder-simd-dev_0.5.2-1_s390x.deb ... 229s Unpacking librust-pathfinder-simd-dev:s390x (0.5.2-1) ... 229s Selecting previously unselected package librust-pathfinder-geometry-dev:s390x. 229s Preparing to unpack .../396-librust-pathfinder-geometry-dev_0.5.1-1_s390x.deb ... 229s Unpacking librust-pathfinder-geometry-dev:s390x (0.5.1-1) ... 229s Selecting previously unselected package librust-winapi-util-dev:s390x. 229s Preparing to unpack .../397-librust-winapi-util-dev_0.1.6-1_s390x.deb ... 229s Unpacking librust-winapi-util-dev:s390x (0.1.6-1) ... 229s Selecting previously unselected package librust-same-file-dev:s390x. 229s Preparing to unpack .../398-librust-same-file-dev_1.0.6-1_s390x.deb ... 229s Unpacking librust-same-file-dev:s390x (1.0.6-1) ... 229s Selecting previously unselected package librust-walkdir-dev:s390x. 229s Preparing to unpack .../399-librust-walkdir-dev_2.5.0-1_s390x.deb ... 229s Unpacking librust-walkdir-dev:s390x (2.5.0-1) ... 229s Selecting previously unselected package librust-cstr-dev:s390x. 229s Preparing to unpack .../400-librust-cstr-dev_0.2.11-1_s390x.deb ... 229s Unpacking librust-cstr-dev:s390x (0.2.11-1) ... 229s Selecting previously unselected package librust-dlib-dev:s390x. 229s Preparing to unpack .../401-librust-dlib-dev_0.5.2-2_s390x.deb ... 229s Unpacking librust-dlib-dev:s390x (0.5.2-2) ... 229s Selecting previously unselected package librust-yeslogic-fontconfig-sys-dev:s390x. 229s Preparing to unpack .../402-librust-yeslogic-fontconfig-sys-dev_5.0.0-1_s390x.deb ... 229s Unpacking librust-yeslogic-fontconfig-sys-dev:s390x (5.0.0-1) ... 229s Selecting previously unselected package librust-font-kit-dev:s390x. 229s Preparing to unpack .../403-librust-font-kit-dev_0.14.2-2_s390x.deb ... 229s Unpacking librust-font-kit-dev:s390x (0.14.2-2) ... 229s Selecting previously unselected package librust-nanorand-dev. 229s Preparing to unpack .../404-librust-nanorand-dev_0.7.0-11_all.deb ... 229s Unpacking librust-nanorand-dev (0.7.0-11) ... 229s Selecting previously unselected package librust-flume-dev. 229s Preparing to unpack .../405-librust-flume-dev_0.11.1+20241019-1_all.deb ... 229s Unpacking librust-flume-dev (0.11.1+20241019-1) ... 229s Selecting previously unselected package librust-lebe-dev:s390x. 229s Preparing to unpack .../406-librust-lebe-dev_0.5.2-1_s390x.deb ... 229s Unpacking librust-lebe-dev:s390x (0.5.2-1) ... 229s Selecting previously unselected package librust-simd-adler32-dev:s390x. 229s Preparing to unpack .../407-librust-simd-adler32-dev_0.3.7-1_s390x.deb ... 229s Unpacking librust-simd-adler32-dev:s390x (0.3.7-1) ... 229s Selecting previously unselected package librust-zune-inflate-dev:s390x. 229s Preparing to unpack .../408-librust-zune-inflate-dev_0.2.54-1_s390x.deb ... 229s Unpacking librust-zune-inflate-dev:s390x (0.2.54-1) ... 229s Selecting previously unselected package librust-exr-dev:s390x. 229s Preparing to unpack .../409-librust-exr-dev_1.72.0-1_s390x.deb ... 229s Unpacking librust-exr-dev:s390x (1.72.0-1) ... 229s Selecting previously unselected package librust-weezl-dev:s390x. 229s Preparing to unpack .../410-librust-weezl-dev_0.1.8-1_s390x.deb ... 229s Unpacking librust-weezl-dev:s390x (0.1.8-1) ... 229s Selecting previously unselected package librust-gif-dev:s390x. 229s Preparing to unpack .../411-librust-gif-dev_0.13.1-1_s390x.deb ... 229s Unpacking librust-gif-dev:s390x (0.13.1-1) ... 229s Selecting previously unselected package librust-quick-error-dev:s390x. 230s Preparing to unpack .../412-librust-quick-error-dev_2.0.1-1_s390x.deb ... 230s Unpacking librust-quick-error-dev:s390x (2.0.1-1) ... 230s Selecting previously unselected package librust-image-webp-dev:s390x. 230s Preparing to unpack .../413-librust-image-webp-dev_0.2.0-2_s390x.deb ... 230s Unpacking librust-image-webp-dev:s390x (0.2.0-2) ... 230s Selecting previously unselected package librust-png-dev:s390x. 230s Preparing to unpack .../414-librust-png-dev_0.17.7-3_s390x.deb ... 230s Unpacking librust-png-dev:s390x (0.17.7-3) ... 230s Selecting previously unselected package librust-qoi-dev:s390x. 230s Preparing to unpack .../415-librust-qoi-dev_0.4.1-2_s390x.deb ... 230s Unpacking librust-qoi-dev:s390x (0.4.1-2) ... 230s Selecting previously unselected package librust-rgb-dev:s390x. 230s Preparing to unpack .../416-librust-rgb-dev_0.8.50-1_s390x.deb ... 230s Unpacking librust-rgb-dev:s390x (0.8.50-1) ... 230s Selecting previously unselected package librust-jpeg-decoder-dev:s390x. 230s Preparing to unpack .../417-librust-jpeg-decoder-dev_0.3.0-1_s390x.deb ... 230s Unpacking librust-jpeg-decoder-dev:s390x (0.3.0-1) ... 230s Selecting previously unselected package librust-tiff-dev:s390x. 230s Preparing to unpack .../418-librust-tiff-dev_0.9.0-1_s390x.deb ... 230s Unpacking librust-tiff-dev:s390x (0.9.0-1) ... 230s Selecting previously unselected package librust-zune-core-dev:s390x. 230s Preparing to unpack .../419-librust-zune-core-dev_0.4.12-1_s390x.deb ... 230s Unpacking librust-zune-core-dev:s390x (0.4.12-1) ... 230s Selecting previously unselected package librust-zune-jpeg-dev:s390x. 230s Preparing to unpack .../420-librust-zune-jpeg-dev_0.4.13-2_s390x.deb ... 230s Unpacking librust-zune-jpeg-dev:s390x (0.4.13-2) ... 230s Selecting previously unselected package librust-image-dev:s390x. 230s Preparing to unpack .../421-librust-image-dev_0.25.5-3_s390x.deb ... 230s Unpacking librust-image-dev:s390x (0.25.5-3) ... 230s Selecting previously unselected package librust-plotters-backend-dev:s390x. 230s Preparing to unpack .../422-librust-plotters-backend-dev_0.3.7-1_s390x.deb ... 230s Unpacking librust-plotters-backend-dev:s390x (0.3.7-1) ... 230s Selecting previously unselected package librust-plotters-bitmap-dev:s390x. 230s Preparing to unpack .../423-librust-plotters-bitmap-dev_0.3.7-3_s390x.deb ... 230s Unpacking librust-plotters-bitmap-dev:s390x (0.3.7-3) ... 230s Selecting previously unselected package librust-plotters-svg-dev:s390x. 230s Preparing to unpack .../424-librust-plotters-svg-dev_0.3.7-1_s390x.deb ... 230s Unpacking librust-plotters-svg-dev:s390x (0.3.7-1) ... 230s Selecting previously unselected package librust-plotters-dev:s390x. 230s Preparing to unpack .../425-librust-plotters-dev_0.3.7-2_s390x.deb ... 230s Unpacking librust-plotters-dev:s390x (0.3.7-2) ... 230s Selecting previously unselected package librust-smol-dev. 230s Preparing to unpack .../426-librust-smol-dev_2.0.2-1_all.deb ... 230s Unpacking librust-smol-dev (2.0.2-1) ... 230s Selecting previously unselected package librust-tinytemplate-dev:s390x. 230s Preparing to unpack .../427-librust-tinytemplate-dev_1.2.1-1_s390x.deb ... 230s Unpacking librust-tinytemplate-dev:s390x (1.2.1-1) ... 230s Selecting previously unselected package librust-criterion-dev. 230s Preparing to unpack .../428-librust-criterion-dev_0.5.1-8_all.deb ... 230s Unpacking librust-criterion-dev (0.5.1-8) ... 230s Selecting previously unselected package librust-proc-macro-error-attr-dev:s390x. 230s Preparing to unpack .../429-librust-proc-macro-error-attr-dev_1.0.4-1_s390x.deb ... 230s Unpacking librust-proc-macro-error-attr-dev:s390x (1.0.4-1) ... 230s Selecting previously unselected package librust-proc-macro-error-dev:s390x. 230s Preparing to unpack .../430-librust-proc-macro-error-dev_1.0.4-1_s390x.deb ... 230s Unpacking librust-proc-macro-error-dev:s390x (1.0.4-1) ... 230s Selecting previously unselected package librust-der-derive-dev:s390x. 230s Preparing to unpack .../431-librust-der-derive-dev_0.7.1-1_s390x.deb ... 230s Unpacking librust-der-derive-dev:s390x (0.7.1-1) ... 230s Selecting previously unselected package librust-flagset-dev:s390x. 230s Preparing to unpack .../432-librust-flagset-dev_0.4.3-1_s390x.deb ... 230s Unpacking librust-flagset-dev:s390x (0.4.3-1) ... 230s Selecting previously unselected package librust-pem-rfc7468-dev:s390x. 230s Preparing to unpack .../433-librust-pem-rfc7468-dev_0.7.0-1_s390x.deb ... 230s Unpacking librust-pem-rfc7468-dev:s390x (0.7.0-1) ... 230s Selecting previously unselected package librust-powerfmt-macros-dev:s390x. 230s Preparing to unpack .../434-librust-powerfmt-macros-dev_0.1.0-1_s390x.deb ... 230s Unpacking librust-powerfmt-macros-dev:s390x (0.1.0-1) ... 230s Selecting previously unselected package librust-powerfmt-dev:s390x. 230s Preparing to unpack .../435-librust-powerfmt-dev_0.2.0-1_s390x.deb ... 230s Unpacking librust-powerfmt-dev:s390x (0.2.0-1) ... 230s Selecting previously unselected package librust-deranged-dev:s390x. 230s Preparing to unpack .../436-librust-deranged-dev_0.3.11-1_s390x.deb ... 230s Unpacking librust-deranged-dev:s390x (0.3.11-1) ... 230s Selecting previously unselected package librust-num-conv-dev:s390x. 230s Preparing to unpack .../437-librust-num-conv-dev_0.1.0-1_s390x.deb ... 230s Unpacking librust-num-conv-dev:s390x (0.1.0-1) ... 230s Selecting previously unselected package librust-num-threads-dev:s390x. 230s Preparing to unpack .../438-librust-num-threads-dev_0.1.7-1_s390x.deb ... 230s Unpacking librust-num-threads-dev:s390x (0.1.7-1) ... 230s Selecting previously unselected package librust-time-core-dev:s390x. 230s Preparing to unpack .../439-librust-time-core-dev_0.1.2-1_s390x.deb ... 230s Unpacking librust-time-core-dev:s390x (0.1.2-1) ... 230s Selecting previously unselected package librust-time-macros-dev:s390x. 230s Preparing to unpack .../440-librust-time-macros-dev_0.2.19-1_s390x.deb ... 230s Unpacking librust-time-macros-dev:s390x (0.2.19-1) ... 230s Selecting previously unselected package librust-time-dev:s390x. 230s Preparing to unpack .../441-librust-time-dev_0.3.37-1_s390x.deb ... 230s Unpacking librust-time-dev:s390x (0.3.37-1) ... 230s Selecting previously unselected package librust-der-dev:s390x. 230s Preparing to unpack .../442-librust-der-dev_0.7.7-1_s390x.deb ... 230s Unpacking librust-der-dev:s390x (0.7.7-1) ... 230s Selecting previously unselected package librust-rlp-derive-dev:s390x. 230s Preparing to unpack .../443-librust-rlp-derive-dev_0.1.0-1_s390x.deb ... 230s Unpacking librust-rlp-derive-dev:s390x (0.1.0-1) ... 230s Selecting previously unselected package librust-rustc-hex-dev:s390x. 230s Preparing to unpack .../444-librust-rustc-hex-dev_2.1.0-1_s390x.deb ... 230s Unpacking librust-rustc-hex-dev:s390x (2.1.0-1) ... 230s Selecting previously unselected package librust-rlp-dev:s390x. 230s Preparing to unpack .../445-librust-rlp-dev_0.5.2-2_s390x.deb ... 230s Unpacking librust-rlp-dev:s390x (0.5.2-2) ... 230s Selecting previously unselected package librust-serdect-dev:s390x. 230s Preparing to unpack .../446-librust-serdect-dev_0.2.0-1_s390x.deb ... 230s Unpacking librust-serdect-dev:s390x (0.2.0-1) ... 230s Selecting previously unselected package librust-crypto-bigint-dev:s390x. 230s Preparing to unpack .../447-librust-crypto-bigint-dev_0.5.2-1_s390x.deb ... 230s Unpacking librust-crypto-bigint-dev:s390x (0.5.2-1) ... 230s Selecting previously unselected package librust-des-dev:s390x. 230s Preparing to unpack .../448-librust-des-dev_0.8.1-1_s390x.deb ... 230s Unpacking librust-des-dev:s390x (0.8.1-1) ... 230s Selecting previously unselected package librust-num-iter-dev:s390x. 230s Preparing to unpack .../449-librust-num-iter-dev_0.1.42-1_s390x.deb ... 230s Unpacking librust-num-iter-dev:s390x (0.1.42-1) ... 230s Selecting previously unselected package librust-num-bigint-dig-dev:s390x. 230s Preparing to unpack .../450-librust-num-bigint-dig-dev_0.8.2-2_s390x.deb ... 230s Unpacking librust-num-bigint-dig-dev:s390x (0.8.2-2) ... 230s Selecting previously unselected package librust-hmac-dev:s390x. 230s Preparing to unpack .../451-librust-hmac-dev_0.12.1-1_s390x.deb ... 230s Unpacking librust-hmac-dev:s390x (0.12.1-1) ... 230s Selecting previously unselected package librust-password-hash-dev:s390x. 230s Preparing to unpack .../452-librust-password-hash-dev_0.5.0-1_s390x.deb ... 230s Unpacking librust-password-hash-dev:s390x (0.5.0-1) ... 230s Selecting previously unselected package librust-sha2-asm-dev:s390x. 230s Preparing to unpack .../453-librust-sha2-asm-dev_0.6.2-2_s390x.deb ... 230s Unpacking librust-sha2-asm-dev:s390x (0.6.2-2) ... 230s Selecting previously unselected package librust-sha2-dev:s390x. 230s Preparing to unpack .../454-librust-sha2-dev_0.10.8-1_s390x.deb ... 230s Unpacking librust-sha2-dev:s390x (0.10.8-1) ... 230s Selecting previously unselected package librust-pbkdf2-dev:s390x. 230s Preparing to unpack .../455-librust-pbkdf2-dev_0.12.2-1_s390x.deb ... 230s Unpacking librust-pbkdf2-dev:s390x (0.12.2-1) ... 230s Selecting previously unselected package librust-salsa20-dev:s390x. 230s Preparing to unpack .../456-librust-salsa20-dev_0.10.2-1_s390x.deb ... 230s Unpacking librust-salsa20-dev:s390x (0.10.2-1) ... 230s Selecting previously unselected package librust-scrypt-dev:s390x. 230s Preparing to unpack .../457-librust-scrypt-dev_0.11.0-1_s390x.deb ... 230s Unpacking librust-scrypt-dev:s390x (0.11.0-1) ... 230s Selecting previously unselected package librust-spki-dev:s390x. 230s Preparing to unpack .../458-librust-spki-dev_0.7.3-1_s390x.deb ... 230s Unpacking librust-spki-dev:s390x (0.7.3-1) ... 230s Selecting previously unselected package librust-pkcs5-dev:s390x. 230s Preparing to unpack .../459-librust-pkcs5-dev_0.7.1-1_s390x.deb ... 230s Unpacking librust-pkcs5-dev:s390x (0.7.1-1) ... 230s Selecting previously unselected package librust-pkcs8-dev. 230s Preparing to unpack .../460-librust-pkcs8-dev_0.10.2+ds-11_all.deb ... 230s Unpacking librust-pkcs8-dev (0.10.2+ds-11) ... 230s Selecting previously unselected package librust-rfc6979-dev:s390x. 230s Preparing to unpack .../461-librust-rfc6979-dev_0.4.0-1_s390x.deb ... 230s Unpacking librust-rfc6979-dev:s390x (0.4.0-1) ... 230s Selecting previously unselected package librust-signature-dev. 230s Preparing to unpack .../462-librust-signature-dev_2.2.0+ds-4_all.deb ... 230s Unpacking librust-signature-dev (2.2.0+ds-4) ... 230s Selecting previously unselected package librust-dsa-dev:s390x. 230s Preparing to unpack .../463-librust-dsa-dev_0.6.3-1_s390x.deb ... 230s Unpacking librust-dsa-dev:s390x (0.6.3-1) ... 230s Selecting previously unselected package librust-dyn-clone-dev:s390x. 230s Preparing to unpack .../464-librust-dyn-clone-dev_1.0.16-1_s390x.deb ... 230s Unpacking librust-dyn-clone-dev:s390x (1.0.16-1) ... 230s Selecting previously unselected package librust-eax-dev:s390x. 230s Preparing to unpack .../465-librust-eax-dev_0.5.0-1_s390x.deb ... 230s Unpacking librust-eax-dev:s390x (0.5.0-1) ... 230s Selecting previously unselected package librust-ecb-dev:s390x. 230s Preparing to unpack .../466-librust-ecb-dev_0.1.1-1_s390x.deb ... 230s Unpacking librust-ecb-dev:s390x (0.1.1-1) ... 230s Selecting previously unselected package librust-ff-derive-dev:s390x. 230s Preparing to unpack .../467-librust-ff-derive-dev_0.13.0-1_s390x.deb ... 230s Unpacking librust-ff-derive-dev:s390x (0.13.0-1) ... 230s Selecting previously unselected package librust-ff-dev:s390x. 230s Preparing to unpack .../468-librust-ff-dev_0.13.0-1_s390x.deb ... 230s Unpacking librust-ff-dev:s390x (0.13.0-1) ... 230s Selecting previously unselected package librust-nonempty-dev:s390x. 230s Preparing to unpack .../469-librust-nonempty-dev_0.11.0-1_s390x.deb ... 230s Unpacking librust-nonempty-dev:s390x (0.11.0-1) ... 230s Selecting previously unselected package librust-memuse-dev:s390x. 230s Preparing to unpack .../470-librust-memuse-dev_0.2.2-1_s390x.deb ... 230s Unpacking librust-memuse-dev:s390x (0.2.2-1) ... 230s Selecting previously unselected package librust-rand-xorshift-dev:s390x. 230s Preparing to unpack .../471-librust-rand-xorshift-dev_0.3.0-2_s390x.deb ... 230s Unpacking librust-rand-xorshift-dev:s390x (0.3.0-2) ... 231s Selecting previously unselected package librust-group-dev:s390x. 231s Preparing to unpack .../472-librust-group-dev_0.13.0-1_s390x.deb ... 231s Unpacking librust-group-dev:s390x (0.13.0-1) ... 231s Selecting previously unselected package librust-hex-literal-dev:s390x. 231s Preparing to unpack .../473-librust-hex-literal-dev_0.4.1-1_s390x.deb ... 231s Unpacking librust-hex-literal-dev:s390x (0.4.1-1) ... 231s Selecting previously unselected package librust-hkdf-dev:s390x. 231s Preparing to unpack .../474-librust-hkdf-dev_0.12.4-1_s390x.deb ... 231s Unpacking librust-hkdf-dev:s390x (0.12.4-1) ... 231s Selecting previously unselected package librust-sec1-dev:s390x. 231s Preparing to unpack .../475-librust-sec1-dev_0.7.2-1_s390x.deb ... 231s Unpacking librust-sec1-dev:s390x (0.7.2-1) ... 231s Selecting previously unselected package librust-elliptic-curve-dev:s390x. 231s Preparing to unpack .../476-librust-elliptic-curve-dev_0.13.8-1_s390x.deb ... 231s Unpacking librust-elliptic-curve-dev:s390x (0.13.8-1) ... 231s Selecting previously unselected package librust-ecdsa-dev:s390x. 231s Preparing to unpack .../477-librust-ecdsa-dev_0.16.9-1_s390x.deb ... 231s Unpacking librust-ecdsa-dev:s390x (0.16.9-1) ... 231s Selecting previously unselected package librust-serde-bytes-dev:s390x. 231s Preparing to unpack .../478-librust-serde-bytes-dev_0.11.12-1_s390x.deb ... 231s Unpacking librust-serde-bytes-dev:s390x (0.11.12-1) ... 231s Selecting previously unselected package librust-ed25519-dev. 231s Preparing to unpack .../479-librust-ed25519-dev_2.2.3+ds-5_all.deb ... 231s Unpacking librust-ed25519-dev (2.2.3+ds-5) ... 231s Selecting previously unselected package librust-ena-dev:s390x. 231s Preparing to unpack .../480-librust-ena-dev_0.14.0-2_s390x.deb ... 231s Unpacking librust-ena-dev:s390x (0.14.0-2) ... 231s Selecting previously unselected package librust-fixedbitset-dev:s390x. 231s Preparing to unpack .../481-librust-fixedbitset-dev_0.4.2-1_s390x.deb ... 231s Unpacking librust-fixedbitset-dev:s390x (0.4.2-1) ... 231s Selecting previously unselected package librust-foreign-types-shared-0.1-dev:s390x. 231s Preparing to unpack .../482-librust-foreign-types-shared-0.1-dev_0.1.1-2_s390x.deb ... 231s Unpacking librust-foreign-types-shared-0.1-dev:s390x (0.1.1-2) ... 231s Selecting previously unselected package librust-foreign-types-0.3-dev:s390x. 231s Preparing to unpack .../483-librust-foreign-types-0.3-dev_0.3.2-2_s390x.deb ... 231s Unpacking librust-foreign-types-0.3-dev:s390x (0.3.2-2) ... 231s Selecting previously unselected package librust-idea-dev:s390x. 231s Preparing to unpack .../484-librust-idea-dev_0.5.1-1_s390x.deb ... 231s Unpacking librust-idea-dev:s390x (0.5.1-1) ... 231s Selecting previously unselected package librust-unicode-bidi-dev:s390x. 231s Preparing to unpack .../485-librust-unicode-bidi-dev_0.3.17-1_s390x.deb ... 231s Unpacking librust-unicode-bidi-dev:s390x (0.3.17-1) ... 231s Selecting previously unselected package librust-unicode-normalization-dev:s390x. 231s Preparing to unpack .../486-librust-unicode-normalization-dev_0.1.22-1_s390x.deb ... 231s Unpacking librust-unicode-normalization-dev:s390x (0.1.22-1) ... 231s Selecting previously unselected package librust-idna-dev:s390x. 231s Preparing to unpack .../487-librust-idna-dev_0.4.0-1_s390x.deb ... 231s Unpacking librust-idna-dev:s390x (0.4.0-1) ... 231s Selecting previously unselected package librust-lalrpop-util-dev:s390x. 231s Preparing to unpack .../488-librust-lalrpop-util-dev_0.20.0-1_s390x.deb ... 231s Unpacking librust-lalrpop-util-dev:s390x (0.20.0-1) ... 231s Selecting previously unselected package librust-petgraph-dev:s390x. 231s Preparing to unpack .../489-librust-petgraph-dev_0.6.4-1_s390x.deb ... 231s Unpacking librust-petgraph-dev:s390x (0.6.4-1) ... 231s Selecting previously unselected package librust-pico-args-dev:s390x. 231s Preparing to unpack .../490-librust-pico-args-dev_0.5.0-1_s390x.deb ... 231s Unpacking librust-pico-args-dev:s390x (0.5.0-1) ... 231s Selecting previously unselected package librust-new-debug-unreachable-dev:s390x. 231s Preparing to unpack .../491-librust-new-debug-unreachable-dev_1.0.4-1_s390x.deb ... 231s Unpacking librust-new-debug-unreachable-dev:s390x (1.0.4-1) ... 231s Selecting previously unselected package librust-siphasher-dev:s390x. 231s Preparing to unpack .../492-librust-siphasher-dev_1.0.1-1_s390x.deb ... 231s Unpacking librust-siphasher-dev:s390x (1.0.1-1) ... 231s Selecting previously unselected package librust-phf-shared-dev:s390x. 231s Preparing to unpack .../493-librust-phf-shared-dev_0.11.2-2_s390x.deb ... 231s Unpacking librust-phf-shared-dev:s390x (0.11.2-2) ... 231s Selecting previously unselected package librust-precomputed-hash-dev:s390x. 231s Preparing to unpack .../494-librust-precomputed-hash-dev_0.1.1-1_s390x.deb ... 231s Unpacking librust-precomputed-hash-dev:s390x (0.1.1-1) ... 231s Selecting previously unselected package librust-string-cache-dev:s390x. 231s Preparing to unpack .../495-librust-string-cache-dev_0.8.7-1_s390x.deb ... 231s Unpacking librust-string-cache-dev:s390x (0.8.7-1) ... 231s Selecting previously unselected package librust-unicode-xid-dev:s390x. 231s Preparing to unpack .../496-librust-unicode-xid-dev_0.2.4-1_s390x.deb ... 231s Unpacking librust-unicode-xid-dev:s390x (0.2.4-1) ... 231s Selecting previously unselected package librust-lalrpop-dev:s390x. 231s Preparing to unpack .../497-librust-lalrpop-dev_0.20.2-1build2_s390x.deb ... 231s Unpacking librust-lalrpop-dev:s390x (0.20.2-1build2) ... 231s Selecting previously unselected package librust-memsec-dev:s390x. 231s Preparing to unpack .../498-librust-memsec-dev_0.7.0-1_s390x.deb ... 231s Unpacking librust-memsec-dev:s390x (0.7.0-1) ... 231s Selecting previously unselected package librust-tempfile-dev:s390x. 231s Preparing to unpack .../499-librust-tempfile-dev_3.15.0-1_s390x.deb ... 231s Unpacking librust-tempfile-dev:s390x (3.15.0-1) ... 231s Selecting previously unselected package nettle-dev:s390x. 231s Preparing to unpack .../500-nettle-dev_3.10-1_s390x.deb ... 231s Unpacking nettle-dev:s390x (3.10-1) ... 231s Selecting previously unselected package librust-nettle-sys-dev:s390x. 231s Preparing to unpack .../501-librust-nettle-sys-dev_2.2.0-3_s390x.deb ... 231s Unpacking librust-nettle-sys-dev:s390x (2.2.0-3) ... 231s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 231s Preparing to unpack .../502-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 231s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 231s Selecting previously unselected package librust-thiserror-1-dev:s390x. 231s Preparing to unpack .../503-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 231s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 231s Selecting previously unselected package librust-nettle-dev:s390x. 231s Preparing to unpack .../504-librust-nettle-dev_7.3.0-1_s390x.deb ... 231s Unpacking librust-nettle-dev:s390x (7.3.0-1) ... 231s Selecting previously unselected package librust-openssl-macros-dev:s390x. 231s Preparing to unpack .../505-librust-openssl-macros-dev_0.1.0-1_s390x.deb ... 231s Unpacking librust-openssl-macros-dev:s390x (0.1.0-1) ... 231s Selecting previously unselected package librust-vcpkg-dev:s390x. 231s Preparing to unpack .../506-librust-vcpkg-dev_0.2.8-1_s390x.deb ... 231s Unpacking librust-vcpkg-dev:s390x (0.2.8-1) ... 231s Selecting previously unselected package libssl-dev:s390x. 231s Preparing to unpack .../507-libssl-dev_3.4.0-1ubuntu2_s390x.deb ... 231s Unpacking libssl-dev:s390x (3.4.0-1ubuntu2) ... 231s Selecting previously unselected package librust-openssl-sys-dev:s390x. 231s Preparing to unpack .../508-librust-openssl-sys-dev_0.9.104-1_s390x.deb ... 231s Unpacking librust-openssl-sys-dev:s390x (0.9.104-1) ... 231s Selecting previously unselected package librust-openssl-dev:s390x. 231s Preparing to unpack .../509-librust-openssl-dev_0.10.68-1_s390x.deb ... 231s Unpacking librust-openssl-dev:s390x (0.10.68-1) ... 231s Selecting previously unselected package librust-primeorder-dev:s390x. 231s Preparing to unpack .../510-librust-primeorder-dev_0.13.6-1_s390x.deb ... 231s Unpacking librust-primeorder-dev:s390x (0.13.6-1) ... 231s Selecting previously unselected package librust-p256-dev:s390x. 231s Preparing to unpack .../511-librust-p256-dev_0.13.2-1_s390x.deb ... 231s Unpacking librust-p256-dev:s390x (0.13.2-1) ... 231s Selecting previously unselected package librust-p384-dev:s390x. 231s Preparing to unpack .../512-librust-p384-dev_0.13.0-1_s390x.deb ... 231s Unpacking librust-p384-dev:s390x (0.13.0-1) ... 231s Selecting previously unselected package librust-ripemd-dev:s390x. 231s Preparing to unpack .../513-librust-ripemd-dev_0.1.3-1_s390x.deb ... 231s Unpacking librust-ripemd-dev:s390x (0.1.3-1) ... 231s Selecting previously unselected package librust-rtoolbox-dev:s390x. 231s Preparing to unpack .../514-librust-rtoolbox-dev_0.0.1-1_s390x.deb ... 231s Unpacking librust-rtoolbox-dev:s390x (0.0.1-1) ... 231s Selecting previously unselected package librust-rpassword-dev:s390x. 231s Preparing to unpack .../515-librust-rpassword-dev_7.2.0-1_s390x.deb ... 231s Unpacking librust-rpassword-dev:s390x (7.2.0-1) ... 231s Selecting previously unselected package librust-sha1collisiondetection-dev:s390x. 231s Preparing to unpack .../516-librust-sha1collisiondetection-dev_0.3.2-1build1_s390x.deb ... 231s Unpacking librust-sha1collisiondetection-dev:s390x (0.3.2-1build1) ... 231s Selecting previously unselected package librust-twofish-dev:s390x. 231s Preparing to unpack .../517-librust-twofish-dev_0.7.1-1_s390x.deb ... 231s Unpacking librust-twofish-dev:s390x (0.7.1-1) ... 231s Selecting previously unselected package librust-xxhash-rust-dev:s390x. 231s Preparing to unpack .../518-librust-xxhash-rust-dev_0.8.6-1_s390x.deb ... 231s Unpacking librust-xxhash-rust-dev:s390x (0.8.6-1) ... 231s Selecting previously unselected package librust-sequoia-openpgp-dev:s390x. 231s Preparing to unpack .../519-librust-sequoia-openpgp-dev_1.21.2-2_s390x.deb ... 231s Unpacking librust-sequoia-openpgp-dev:s390x (1.21.2-2) ... 232s Setting up librust-ciborium-io-dev:s390x (0.2.2-1) ... 232s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 232s Setting up librust-parking-dev:s390x (2.2.0-1) ... 232s Setting up libtspi1 (0.3.15-0.4) ... 232s Setting up librust-pin-utils-dev:s390x (0.1.0-1) ... 232s Setting up librust-simd-adler32-dev:s390x (0.3.7-1) ... 232s Setting up librust-foreign-types-shared-0.1-dev:s390x (0.1.1-2) ... 232s Setting up librust-quick-error-dev:s390x (2.0.1-1) ... 232s Setting up librust-traitobject-dev:s390x (0.1.0-1) ... 232s Setting up librust-either-dev:s390x (1.13.0-1) ... 232s Setting up librust-adler-dev:s390x (1.0.2-2) ... 232s Setting up dh-cargo-tools (31ubuntu4) ... 232s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 232s Setting up librust-base64-dev:s390x (0.22.1-1) ... 232s Setting up librust-anstyle-dev:s390x (1.0.8-1) ... 232s Setting up librust-winapi-i686-pc-windows-gnu-dev:s390x (0.4.0-1) ... 232s Setting up libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 232s Setting up librust-futures-task-dev:s390x (0.3.31-3) ... 232s Setting up librust-rustc-hash-dev:s390x (1.1.0-1) ... 232s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 232s Setting up libarchive-zip-perl (1.68-1) ... 232s Setting up librust-colorchoice-dev:s390x (1.0.0-1) ... 232s Setting up librust-fastrand-dev:s390x (2.1.1-1) ... 232s Setting up libdebhelper-perl (13.23ubuntu1) ... 232s Setting up librust-unsafe-any-dev:s390x (0.4.2-2) ... 232s Setting up librust-glob-dev:s390x (0.3.2-1) ... 232s Setting up librust-opaque-debug-dev:s390x (0.3.0-1) ... 232s Setting up librust-tinyvec-macros-dev:s390x (0.1.0-1) ... 232s Setting up librust-libm-dev:s390x (0.2.8-1) ... 232s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 232s Setting up librust-strsim-dev:s390x (0.11.1-1) ... 232s Setting up librust-option-ext-dev:s390x (0.2.0-1) ... 232s Setting up m4 (1.4.19-5) ... 232s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 232s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 232s Setting up librust-ryu-dev:s390x (1.0.15-1) ... 232s Setting up librust-humantime-dev:s390x (2.1.0-2) ... 232s Setting up librust-anstyle-query-dev:s390x (1.0.0-1) ... 232s Setting up librust-cast-dev:s390x (0.3.0-1) ... 232s Setting up libgomp1:s390x (14.2.0-13ubuntu1) ... 232s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 232s Setting up librust-simdutf8-dev:s390x (0.1.4-4) ... 232s Setting up librust-atomic-waker-dev:s390x (1.1.2-1) ... 232s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 232s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 232s Setting up librust-rustc-hex-dev:s390x (2.1.0-1) ... 232s Setting up librust-new-debug-unreachable-dev:s390x (1.0.4-1) ... 232s Setting up librust-ufmt-write-dev:s390x (0.1.0-1) ... 232s Setting up librust-unicode-segmentation-dev:s390x (1.12.0-1) ... 232s Setting up librust-typemap-dev:s390x (0.3.3-2) ... 232s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 232s Setting up librust-zune-inflate-dev:s390x (0.2.54-1) ... 232s Setting up librust-weezl-dev:s390x (0.1.8-1) ... 232s Setting up librust-utf8parse-dev:s390x (0.2.1-1) ... 232s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 232s Setting up librust-hex-literal-dev:s390x (0.4.1-1) ... 232s Setting up autotools-dev (20220109.1) ... 232s Setting up librust-tap-dev:s390x (1.0.1-1) ... 232s Setting up libpkgconf3:s390x (1.8.1-4) ... 232s Setting up libgmpxx4ldbl:s390x (2:6.3.0+dfsg-2ubuntu7) ... 232s Setting up libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 232s Setting up librust-oorandom-dev:s390x (11.1.3-1) ... 232s Setting up libexpat1-dev:s390x (2.6.4-1) ... 232s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 232s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 232s Setting up librust-bit-field-dev:s390x (0.10.2-1) ... 232s Setting up librust-funty-dev:s390x (2.0.0-1) ... 232s Setting up librust-vcpkg-dev:s390x (0.2.8-1) ... 232s Setting up librust-foreign-types-0.3-dev:s390x (0.3.2-2) ... 232s Setting up librust-futures-io-dev:s390x (0.3.31-1) ... 232s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 232s Setting up uuid-dev:s390x (2.40.2-14ubuntu1) ... 232s Setting up librust-core-maths-dev:s390x (0.1.0-2) ... 232s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 232s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 232s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 232s Setting up librust-iana-time-zone-dev:s390x (0.1.60-1) ... 232s Setting up fonts-dejavu-mono (2.37-8) ... 232s Setting up libssl-dev:s390x (3.4.0-1ubuntu2) ... 232s Setting up libmpc3:s390x (1.3.1-1build2) ... 232s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 232s Setting up autopoint (0.23.1-1) ... 232s Setting up librust-lebe-dev:s390x (0.5.2-1) ... 232s Setting up fonts-dejavu-core (2.37-8) ... 232s Setting up librust-seahash-dev:s390x (4.1.0-1) ... 232s Setting up pkgconf-bin (1.8.1-4) ... 232s Setting up librust-ab-glyph-rasterizer-dev:s390x (0.1.7-1) ... 232s Setting up librust-xxhash-rust-dev:s390x (0.8.6-1) ... 232s Setting up librust-time-core-dev:s390x (0.1.2-1) ... 232s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 232s Setting up libgc1:s390x (1:8.2.8-1) ... 232s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 232s Setting up librust-unicase-dev:s390x (2.8.0-1) ... 232s Setting up librust-unicode-width-dev:s390x (0.2.0-1) ... 232s Setting up autoconf (2.72-3) ... 232s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 232s Setting up libubsan1:s390x (14.2.0-13ubuntu1) ... 232s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 232s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 232s Setting up librust-minimal-lexical-dev:s390x (0.2.1-2) ... 232s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 232s Setting up dwz (0.15-1build6) ... 232s Setting up librust-bitflags-1-dev:s390x (1.3.2-7) ... 232s Setting up librust-slog-dev:s390x (2.7.0-1) ... 232s Setting up librust-base16ct-dev:s390x (0.2.0-1) ... 232s Setting up librust-pure-rust-locales-dev:s390x (0.8.1-1) ... 232s Setting up libasan8:s390x (14.2.0-13ubuntu1) ... 232s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 232s Setting up librust-ttf-parser-dev:s390x (0.24.1-1) ... 232s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 232s Setting up librust-unicode-xid-dev:s390x (0.2.4-1) ... 232s Setting up debugedit (1:5.1-1) ... 232s Setting up librust-color-quant-dev:s390x (1.1.0-1) ... 232s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 232s Setting up librust-dyn-clone-dev:s390x (1.0.16-1) ... 232s Setting up llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 232s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 232s Setting up librust-pico-args-dev:s390x (0.5.0-1) ... 232s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 232s Setting up librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 232s Setting up librust-float-ord-dev:s390x (0.3.2-1) ... 232s Setting up librust-roff-dev:s390x (0.2.1-1) ... 232s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 232s Setting up librust-rustversion-dev:s390x (1.0.14-1) ... 232s Setting up libisl23:s390x (0.27-1) ... 232s Setting up llvm-19-runtime (1:19.1.7-1ubuntu1) ... 232s Setting up librust-futures-sink-dev:s390x (0.3.31-1) ... 232s Setting up librust-cfg-if-0.1-dev:s390x (0.1.10-3) ... 232s Setting up librust-tinyvec-dev:s390x (1.6.0-2) ... 232s Setting up librust-base64ct-dev:s390x (1.6.0-1) ... 232s Setting up librust-plotters-backend-dev:s390x (0.3.7-1) ... 232s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 232s Setting up librust-precomputed-hash-dev:s390x (0.1.1-1) ... 232s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 232s Setting up librust-winapi-x86-64-pc-windows-gnu-dev:s390x (0.4.0-1) ... 232s Setting up libcc1-0:s390x (14.2.0-13ubuntu1) ... 232s Setting up libbrotli-dev:s390x (1.1.0-2build3) ... 232s Setting up libbotan-2-19:s390x (2.19.3+dfsg-1ubuntu2) ... 232s Setting up libitm1:s390x (14.2.0-13ubuntu1) ... 232s Setting up librust-clap-lex-dev:s390x (0.7.4-1) ... 232s Setting up libclang-cpp19 (1:19.1.7-1ubuntu1) ... 232s Setting up librust-itertools-dev:s390x (0.13.0-3) ... 232s Setting up librust-heck-dev:s390x (0.4.1-1) ... 232s Setting up libbz2-dev:s390x (1.0.8-6) ... 232s Setting up librust-num-conv-dev:s390x (0.1.0-1) ... 232s Setting up automake (1:1.16.5-1.3ubuntu1) ... 232s update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode 232s Setting up libfile-stripnondeterminism-perl (1.14.1-1) ... 232s Setting up librust-owned-ttf-parser-dev:s390x (0.24.0-1) ... 232s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 232s Setting up librust-libc-dev:s390x (0.2.169-1) ... 232s Setting up librust-is-terminal-dev:s390x (0.4.13-1) ... 232s Setting up librust-dirs-sys-dev:s390x (0.4.1-1) ... 232s Setting up gettext (0.23.1-1) ... 232s Setting up libgmp-dev:s390x (2:6.3.0+dfsg-2ubuntu7) ... 232s Setting up librust-gif-dev:s390x (0.13.1-1) ... 232s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 232s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 232s Setting up nettle-dev:s390x (3.10-1) ... 232s Setting up librust-image-webp-dev:s390x (0.2.0-2) ... 232s Setting up librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 232s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 232s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 232s Setting up librust-libloading-dev:s390x (0.8.5-1) ... 232s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 232s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 232s Setting up librust-ab-glyph-rasterizer+libm-dev:s390x (0.1.7-1) ... 232s Setting up libpng-dev:s390x (1.6.44-3) ... 232s Setting up librust-tinyvec+tinyvec-macros-dev:s390x (1.6.0-2) ... 232s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 232s Setting up librust-num-cpus-dev:s390x (1.16.0-1) ... 232s Setting up librust-cpufeatures-dev:s390x (0.2.16-1) ... 232s Setting up librust-hash32-dev:s390x (0.3.1-2) ... 232s Setting up libobjc4:s390x (14.2.0-13ubuntu1) ... 232s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 232s Setting up librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 232s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 232s Setting up librust-winapi-dev:s390x (0.3.9-1) ... 232s Setting up pkgconf:s390x (1.8.1-4) ... 232s Setting up librust-ab-glyph-dev:s390x (0.2.28-1) ... 232s Setting up libfreetype-dev:s390x (2.13.3+dfsg-1) ... 232s Setting up intltool-debian (0.35.0+20060710.6) ... 232s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 232s Setting up librust-rand-xorshift-dev:s390x (0.3.0-2) ... 232s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 232s Setting up librust-errno-dev:s390x (0.3.8-1) ... 232s Setting up librust-anes-dev:s390x (0.1.6-1) ... 232s Setting up llvm-runtime:s390x (1:19.0-63) ... 232s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 232s Setting up cpp-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 232s Setting up cpp-14 (14.2.0-13ubuntu1) ... 232s Setting up dh-strip-nondeterminism (1.14.1-1) ... 232s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 232s Setting up librust-pem-rfc7468-dev:s390x (0.7.0-1) ... 232s Setting up librust-num-traits-dev:s390x (0.2.19-2) ... 232s Setting up librust-winapi-util-dev:s390x (0.1.6-1) ... 232s Setting up libbotan-2-dev (2.19.3+dfsg-1ubuntu2) ... 232s Setting up llvm-19 (1:19.1.7-1ubuntu1) ... 232s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 232s Setting up libgcc-14-dev:s390x (14.2.0-13ubuntu1) ... 232s Setting up librust-same-file-dev:s390x (1.0.6-1) ... 232s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 232s Setting up librust-dirs-dev:s390x (5.0.1-1) ... 232s Setting up librust-time-macros-dev:s390x (0.2.19-1) ... 232s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 232s Setting up libstdc++-14-dev:s390x (14.2.0-13ubuntu1) ... 232s Setting up librust-jpeg-decoder-dev:s390x (0.3.0-1) ... 232s Setting up librust-dirs-sys-next-dev:s390x (0.1.1-1) ... 232s Setting up librust-num-integer-dev:s390x (0.1.46-1) ... 232s Setting up librust-memsec-dev:s390x (0.7.0-1) ... 232s Setting up librust-dirs-next-dev:s390x (2.0.0-1) ... 232s Setting up librust-num-threads-dev:s390x (0.1.7-1) ... 232s Setting up librust-dlib-dev:s390x (0.5.2-2) ... 232s Setting up cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 232s Setting up libfontconfig-dev:s390x (2.15.0-1.1ubuntu2) ... 232s Setting up po-debconf (1.0.21+nmu1) ... 232s Setting up librust-quote-dev:s390x (1.0.37-1) ... 232s Setting up librust-botan-sys-dev:s390x (0.10.5-1) ... 232s Setting up librust-proc-macro-error-attr2-dev:s390x (2.0.0-1) ... 232s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 232s Setting up librust-syn-dev:s390x (2.0.96-2) ... 232s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 232s Setting up libobjc-14-dev:s390x (14.2.0-13ubuntu1) ... 232s Setting up librust-powerfmt-macros-dev:s390x (0.1.0-1) ... 232s Setting up clang-19 (1:19.1.7-1ubuntu1) ... 232s Setting up gcc-14-s390x-linux-gnu (14.2.0-13ubuntu1) ... 232s Setting up gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 232s Setting up librust-powerfmt-dev:s390x (0.2.0-1) ... 232s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 232s Setting up clang (1:19.0-63) ... 232s Setting up librust-cc-dev:s390x (1.1.14-1) ... 232s Setting up librust-term-dev:s390x (0.7.0-1) ... 232s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 232s Setting up llvm (1:19.0-63) ... 232s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 232s Setting up librust-proc-macro-error-attr-dev:s390x (1.0.4-1) ... 232s Setting up librust-clap-derive-dev:s390x (4.5.18-1) ... 232s Setting up librust-bytecheck-derive-dev:s390x (0.6.12-1) ... 232s Setting up librust-proc-macro-error2-dev:s390x (2.0.1-1) ... 232s Setting up librust-num-iter-dev:s390x (0.1.42-1) ... 232s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 232s Setting up cpp (4:14.1.0-2ubuntu1) ... 232s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 232s Setting up librust-walkdir-dev:s390x (2.5.0-1) ... 232s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 232s Setting up librust-sha1-asm-dev:s390x (0.5.1-2) ... 232s Setting up libclang-19-dev (1:19.1.7-1ubuntu1) ... 232s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 232s Setting up librust-serde-dev:s390x (1.0.217-1) ... 232s Setting up librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 232s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 232s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 232s Setting up librust-botan-dev:s390x (0.10.7-1) ... 232s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 232s Setting up librust-ascii-canvas-dev:s390x (3.0.0-1) ... 232s Setting up librust-thiserror-impl-dev:s390x (2.0.11-1) ... 232s Setting up librust-async-attributes-dev (1.1.2-6) ... 232s Setting up librust-password-hash-dev:s390x (0.5.0-1) ... 232s Setting up librust-futures-macro-dev:s390x (0.3.31-1) ... 232s Setting up librust-rlp-derive-dev:s390x (0.1.0-1) ... 232s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 232s Setting up librust-proc-macro-error-dev:s390x (1.0.4-1) ... 232s Setting up librust-prettyplease-dev:s390x (0.2.6-1) ... 232s Setting up librust-thiserror-dev:s390x (2.0.11-1) ... 232s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 232s Setting up librust-cstr-dev:s390x (0.2.11-1) ... 232s Setting up libclang-dev (1:19.0-63) ... 232s Setting up librust-ptr-meta-derive-dev:s390x (0.1.4-1) ... 232s Setting up librust-serde-fmt-dev (1.0.3-3) ... 232s Setting up libtool (2.5.4-2.1) ... 232s Setting up librust-sha2-asm-dev:s390x (0.6.2-2) ... 232s Setting up librust-serde-bytes-dev:s390x (0.11.12-1) ... 232s Setting up librust-openssl-macros-dev:s390x (0.1.0-1) ... 232s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 232s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 232s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 232s Setting up librust-freetype-sys-dev:s390x (0.20.1-1) ... 232s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 232s Setting up librust-ptr-meta-dev:s390x (0.1.4-1) ... 232s Setting up librust-sval-dev:s390x (2.6.1-2) ... 232s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 232s Setting up gcc-14 (14.2.0-13ubuntu1) ... 232s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 232s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 232s Setting up dh-autoreconf (20) ... 232s Setting up librust-bzip2-sys-dev:s390x (0.1.11-1) ... 232s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 232s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 232s Setting up librust-rkyv-derive-dev:s390x (0.7.44-1) ... 232s Setting up librust-fixedbitset-dev:s390x (0.4.2-1) ... 232s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 232s Setting up librust-md5-asm-dev:s390x (0.5.0-2) ... 232s Setting up librust-flagset-dev:s390x (0.4.3-1) ... 232s Setting up librust-semver-dev:s390x (1.0.23-1) ... 232s Setting up librust-freetype-dev:s390x (0.7.2-1) ... 232s Setting up librust-bytemuck-dev:s390x (1.21.0-1) ... 232s Setting up librust-bit-vec-dev:s390x (0.6.3-1) ... 232s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 232s Setting up librust-rlp-dev:s390x (0.5.2-2) ... 232s Setting up librust-slab-dev:s390x (0.4.9-1) ... 232s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 232s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 232s Setting up librust-der-derive-dev:s390x (0.7.1-1) ... 232s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 232s Setting up librust-nonempty-dev:s390x (0.11.0-1) ... 232s Setting up librust-bit-set-dev:s390x (0.5.2-1) ... 232s Setting up librust-concurrent-queue-dev:s390x (2.5.0-4) ... 232s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 232s Setting up librust-radium-dev:s390x (1.1.0-1) ... 232s Setting up librust-defmt-parser-dev:s390x (0.4.1-1) ... 232s Setting up librust-tiff-dev:s390x (0.9.0-1) ... 232s Setting up librust-smol-str-dev:s390x (0.2.0-1) ... 232s Setting up librust-atomic-dev:s390x (0.6.0-1) ... 232s Setting up librust-defmt-macros-dev:s390x (0.4.0-1) ... 232s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 232s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 232s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 232s Setting up librust-clang-sys-dev:s390x (1.8.1-3) ... 232s Setting up librust-spin-dev:s390x (0.9.8-4) ... 232s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 232s Setting up librust-qoi-dev:s390x (0.4.1-2) ... 232s Setting up librust-async-task-dev (4.7.1-3) ... 232s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 232s Setting up librust-bzip2-dev:s390x (0.4.4-1) ... 232s Setting up librust-futures-core-dev:s390x (0.3.31-1) ... 232s Setting up librust-lazy-static-dev:s390x (1.5.0-1) ... 232s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 232s Setting up librust-arrayvec-dev:s390x (0.7.6-1) ... 232s Setting up librust-memuse-dev:s390x (0.2.2-1) ... 232s Setting up librust-png-dev:s390x (0.17.7-3) ... 232s Setting up librust-rustc-version-dev:s390x (0.4.0-1) ... 232s Setting up librust-event-listener-dev (5.4.0-2) ... 232s Setting up debhelper (13.23ubuntu1) ... 232s Setting up librust-dbl-dev:s390x (0.3.2-1) ... 232s Setting up librust-nanorand-dev (0.7.0-11) ... 232s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 232s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 232s Setting up librust-universal-hash-dev:s390x (0.5.1-1) ... 232s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 232s Setting up gcc (4:14.1.0-2ubuntu1) ... 232s Setting up librust-anstyle-parse-dev:s390x (0.2.1-1) ... 232s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 232s Setting up librust-pathfinder-simd-dev:s390x (0.5.2-1) ... 232s Setting up librust-unicode-normalization-dev:s390x (0.1.22-1) ... 232s Setting up librust-serdect-dev:s390x (0.2.0-1) ... 232s Setting up librust-anstream-dev:s390x (0.6.15-1) ... 232s Setting up librust-bitflags-dev:s390x (2.6.0-1) ... 232s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 232s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 232s Setting up rustc (1.84.0ubuntu1) ... 232s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 232s Setting up librust-block-padding-dev:s390x (0.3.3-1) ... 232s Setting up librust-defmt-dev:s390x (0.3.10-1) ... 232s Setting up librust-heapless-dev:s390x (0.8.0-2) ... 232s Setting up librust-futures-channel-dev:s390x (0.3.31-1) ... 232s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 232s Setting up librust-flume-dev (0.11.1+20241019-1) ... 232s Setting up librust-buffered-reader-dev:s390x (1.3.1-2) ... 232s Setting up librust-digest-dev:s390x (0.10.7-2) ... 232s Setting up librust-md-5-dev:s390x (0.10.6-1) ... 232s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 232s Setting up librust-aead-dev:s390x (0.5.2-2) ... 232s Setting up librust-inout-dev:s390x (0.1.3-3) ... 232s Setting up librust-unicode-bidi-dev:s390x (0.3.17-1) ... 232s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 232s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 232s Setting up librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 232s Setting up librust-cipher-dev:s390x (0.4.4-3) ... 232s Setting up librust-des-dev:s390x (0.8.1-1) ... 232s Setting up librust-polyval-dev:s390x (0.6.1-1) ... 232s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 232s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 232s Setting up librust-signature-dev (2.2.0+ds-4) ... 232s Setting up librust-sha1-dev:s390x (0.10.6-1) ... 232s Setting up librust-ahash-dev (0.8.11-8) ... 232s Setting up librust-async-channel-dev (2.3.1-8) ... 232s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 232s Setting up librust-twofish-dev:s390x (0.7.1-1) ... 232s Setting up librust-salsa20-dev:s390x (0.10.2-1) ... 232s Setting up cargo (1.84.0ubuntu1) ... 232s Setting up dh-cargo (31ubuntu4) ... 232s Setting up librust-blowfish-dev:s390x (0.9.1-1) ... 232s Setting up librust-async-lock-dev (3.4.0-4) ... 232s Setting up librust-cfb-mode-dev:s390x (0.8.2-1) ... 232s Setting up librust-yeslogic-fontconfig-sys-dev:s390x (5.0.0-1) ... 232s Setting up librust-sha2-dev:s390x (0.10.8-1) ... 232s Setting up librust-camellia-dev:s390x (0.1.0-1) ... 232s Setting up librust-aes-dev:s390x (0.8.4-1) ... 232s Setting up librust-cast5-dev:s390x (0.11.1-1) ... 232s Setting up librust-idna-dev:s390x (0.4.0-1) ... 232s Setting up librust-ecb-dev:s390x (0.1.1-1) ... 232s Setting up librust-cbc-dev:s390x (0.1.2-1) ... 232s Setting up librust-hmac-dev:s390x (0.12.1-1) ... 232s Setting up librust-ripemd-dev:s390x (0.1.3-1) ... 232s Setting up librust-rustix-dev:s390x (0.38.37-1) ... 232s Setting up librust-rgb-dev:s390x (0.8.50-1) ... 232s Setting up librust-ghash-dev:s390x (0.5.0-1) ... 232s Setting up librust-wyz-dev:s390x (0.5.1-1) ... 232s Setting up librust-idea-dev:s390x (0.5.1-1) ... 232s Setting up librust-bitvec-dev:s390x (1.0.1-1) ... 232s Setting up librust-rfc6979-dev:s390x (0.4.0-1) ... 232s Setting up librust-ctr-dev:s390x (0.9.2-1) ... 232s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 232s Setting up librust-tempfile-dev:s390x (3.15.0-1) ... 232s Setting up librust-cmac-dev:s390x (0.7.2-1) ... 232s Setting up librust-pbkdf2-dev:s390x (0.12.2-1) ... 232s Setting up librust-aes-gcm-dev:s390x (0.10.3-2) ... 232s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 232s Setting up librust-hkdf-dev:s390x (0.12.4-1) ... 232s Setting up librust-scrypt-dev:s390x (0.11.0-1) ... 232s Setting up librust-terminal-size-dev:s390x (0.3.0-2) ... 232s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 232s Setting up librust-eax-dev:s390x (0.5.0-1) ... 232s Setting up librust-petgraph-dev:s390x (0.6.4-1) ... 232s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 232s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 232s Setting up librust-nom-dev:s390x (7.1.3-1) ... 232s Setting up librust-futures-util-dev:s390x (0.3.31-1) ... 232s Setting up librust-csv-core-dev:s390x (0.1.11-1) ... 232s Setting up librust-futures-lite-dev:s390x (2.3.0-2) ... 232s Setting up librust-csv-dev:s390x (1.3.0-1) ... 232s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 232s Setting up librust-siphasher-dev:s390x (1.0.1-1) ... 232s Setting up librust-async-executor-dev (1.13.1-1) ... 232s Setting up librust-nom+std-dev:s390x (7.1.3-1) ... 232s Setting up librust-rtoolbox-dev:s390x (0.0.1-1) ... 232s Setting up librust-rpassword-dev:s390x (7.2.0-1) ... 232s Setting up librust-phf-shared-dev:s390x (0.11.2-2) ... 232s Setting up librust-futures-executor-dev:s390x (0.3.31-1) ... 232s Setting up librust-cexpr-dev:s390x (0.6.0-2) ... 232s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 232s Setting up librust-tinytemplate-dev:s390x (1.2.1-1) ... 232s Setting up librust-futures-dev:s390x (0.3.30-2) ... 232s Setting up librust-string-cache-dev:s390x (0.8.7-1) ... 232s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 232s Setting up librust-log-dev:s390x (0.4.22-1) ... 232s Setting up librust-kv-log-macro-dev (1.0.8-4) ... 232s Setting up librust-pathfinder-geometry-dev:s390x (0.5.1-1) ... 232s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 232s Setting up librust-polling-dev:s390x (3.4.0-1) ... 232s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 232s Setting up librust-font-kit-dev:s390x (0.14.2-2) ... 232s Setting up librust-async-io-dev:s390x (2.3.3-4) ... 232s Setting up librust-blocking-dev (1.6.1-5) ... 232s Setting up librust-ena-dev:s390x (0.14.0-2) ... 232s Setting up librust-zune-core-dev:s390x (0.4.12-1) ... 232s Setting up librust-async-net-dev (2.0.0-4) ... 232s Setting up librust-rand-dev:s390x (0.8.5-1) ... 232s Setting up librust-mio-dev:s390x (1.0.2-3) ... 232s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 232s Setting up librust-rand-distr-dev:s390x (0.4.3-1) ... 232s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 232s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 232s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 232s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 232s Setting up librust-uuid-dev:s390x (1.10.0-1) ... 232s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 232s Setting up librust-async-signal-dev:s390x (0.2.10-1) ... 232s Setting up librust-bytecheck-dev:s390x (0.6.12-1) ... 232s Setting up librust-num-bigint-dig-dev:s390x (0.8.2-2) ... 232s Setting up librust-zune-jpeg-dev:s390x (0.4.13-2) ... 232s Setting up librust-async-fs-dev (2.1.2-4) ... 232s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 232s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 232s Setting up librust-regex-dev:s390x (1.11.1-2) ... 232s Setting up librust-async-process-dev (2.3.0-1) ... 232s Setting up librust-object-dev:s390x (0.36.5-2) ... 232s Setting up librust-bindgen-dev:s390x (0.70.1-2) ... 232s Setting up librust-lalrpop-util-dev:s390x (0.20.0-1) ... 232s Setting up librust-rend-dev:s390x (0.4.0-1) ... 232s Setting up librust-rkyv-dev:s390x (0.7.44-1) ... 232s Setting up librust-env-filter-dev:s390x (0.1.3-1) ... 232s Setting up librust-lalrpop-dev:s390x (0.20.2-1build2) ... 232s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 232s Setting up librust-half-dev:s390x (2.4.1-1) ... 232s Setting up librust-nettle-sys-dev:s390x (2.2.0-3) ... 232s Setting up librust-smol-dev (2.0.2-1) ... 232s Setting up librust-openssl-sys-dev:s390x (0.9.104-1) ... 232s Setting up librust-ciborium-ll-dev:s390x (0.2.2-2) ... 232s Setting up librust-chrono-dev:s390x (0.4.39-2) ... 232s Setting up librust-nettle-dev:s390x (7.3.0-1) ... 232s Setting up librust-ciborium-dev:s390x (0.2.2-2) ... 232s Setting up librust-exr-dev:s390x (1.72.0-1) ... 232s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 232s Setting up librust-env-logger-dev:s390x (0.11.5-2) ... 232s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 232s Setting up librust-openssl-dev:s390x (0.10.68-1) ... 232s Setting up librust-async-global-executor-dev:s390x (2.4.1-5) ... 232s Setting up librust-clap-builder-dev:s390x (4.5.23-1) ... 232s Setting up librust-image-dev:s390x (0.25.5-3) ... 232s Setting up librust-clap-dev:s390x (4.5.23-1) ... 232s Setting up librust-quickcheck-dev:s390x (1.0.3-5) ... 232s Setting up librust-plotters-bitmap-dev:s390x (0.3.7-3) ... 232s Setting up librust-async-std-dev (1.13.0-3) ... 232s Setting up librust-anyhow-dev:s390x (1.0.86-1) ... 232s Setting up librust-deranged-dev:s390x (0.3.11-1) ... 232s Setting up librust-num-bigint-dev:s390x (0.4.6-1) ... 232s Setting up librust-plotters-svg-dev:s390x (0.3.7-1) ... 232s Setting up librust-clap-mangen-dev:s390x (0.2.20-1) ... 232s Setting up librust-addchain-dev:s390x (0.2.0-1) ... 232s Setting up librust-time-dev:s390x (0.3.37-1) ... 232s Setting up librust-sha1collisiondetection-dev:s390x (0.3.2-1build1) ... 232s Setting up librust-plotters-dev:s390x (0.3.7-2) ... 232s Setting up librust-ff-derive-dev:s390x (0.13.0-1) ... 232s Setting up librust-der-dev:s390x (0.7.7-1) ... 232s Setting up librust-criterion-dev (0.5.1-8) ... 232s Setting up librust-ff-dev:s390x (0.13.0-1) ... 232s Setting up librust-spki-dev:s390x (0.7.3-1) ... 232s Setting up librust-crypto-bigint-dev:s390x (0.5.2-1) ... 232s Setting up librust-pkcs5-dev:s390x (0.7.1-1) ... 232s Setting up librust-pkcs8-dev (0.10.2+ds-11) ... 232s Setting up librust-group-dev:s390x (0.13.0-1) ... 232s Setting up librust-ed25519-dev (2.2.3+ds-5) ... 232s Setting up librust-sec1-dev:s390x (0.7.2-1) ... 232s Setting up librust-dsa-dev:s390x (0.6.3-1) ... 232s Setting up librust-elliptic-curve-dev:s390x (0.13.8-1) ... 232s Setting up librust-primeorder-dev:s390x (0.13.6-1) ... 232s Setting up librust-ecdsa-dev:s390x (0.16.9-1) ... 232s Setting up librust-p384-dev:s390x (0.13.0-1) ... 232s Setting up librust-p256-dev:s390x (0.13.2-1) ... 232s Setting up librust-sequoia-openpgp-dev:s390x (1.21.2-2) ... 232s Processing triggers for install-info (7.1.1-1) ... 232s Processing triggers for libc-bin (2.40-4ubuntu1) ... 232s Processing triggers for systemd (257.1-7ubuntu1) ... 232s Processing triggers for man-db (2.13.0-1) ... 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-sequoia-openpgp-dev'], kind short, sout pipe, serr pipe, env [] 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-packages.all"], kind short, sout raw, serr pipe, env [] 235s autopkgtest: DBG: testbed command exited with code 0 235s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev%3Acompression-packages.all /tmp/autopkgtest-work.vifxrq25/out/librust-sequoia-openpgp-dev%3Acompression-packages.all 235s autopkgtest: DBG: got reply from testbed: ok 235s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.EJJwWD/build.GN9/src'], kind short, sout raw, serr raw, env [] 235s autopkgtest: DBG: testbed command exited with code 0 235s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.EJJwWD/build.GN9/src already exists 235s autopkgtest [10:08:44]: test librust-sequoia-openpgp-dev:compression: /usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression,crypto-nettle 235s autopkgtest [10:08:44]: test librust-sequoia-openpgp-dev:compression: [----------------------- 235s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.EJJwWD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-artifacts --chdir=/tmp/autopkgtest.EJJwWD/build.GN9/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=4 --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.EJJwWD/librust-sequoia-openpgp-dev:compression-stderr --stdout=/tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-stdout --tmp=/tmp/autopkgtest.EJJwWD/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression,crypto-nettle'"], kind test, sout raw, serr raw, env [] 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-artifacts 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: changing to directory: /tmp/autopkgtest.EJJwWD/build.GN9/src 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: setting environment: LANG=C.UTF-8 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LANGUAGE 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_ADDRESS 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_ALL 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_COLLATE 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_CTYPE 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_MEASUREMENT 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_MESSAGES 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_MONETARY 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_NAME 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_NUMERIC 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_PAPER 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_TELEPHONE 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: unsetting environment: LC_TIME 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: pretending to be a login shell 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: will write standard error to /tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-stderr 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: will write stdout to /tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-stdout 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.EJJwWD/autopkgtest_tmp 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test sequoia-openpgp 1.21.2 --all-targets --no-default-features --features compression,crypto-nettle 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: copying /tmp/tmp.wxKVnMF7jF/out to stdout and file: /tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-stdout 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: copying /tmp/tmp.wxKVnMF7jF/err to standard error and file: /tmp/autopkgtest.EJJwWD/librust-sequoia-openpgp-dev:compression-stdout 235s /tmp/autopkgtest.EJJwWD/wrapper.sh: writing script pid 6502 to /tmp/autopkgtest_script_pid 235s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=4'] [] ['-j4'] 0 235s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 235s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 235s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.0FnhCu4C2v/registry/ 235s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=4'] [] ['-j4'] 0 235s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 235s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 235s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j4', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-default-features', '--features', 'compression,crypto-nettle'],) {} 236s Compiling proc-macro2 v1.0.92 236s Compiling libc v0.2.169 236s Compiling unicode-ident v1.0.13 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 236s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=281f50e119612eba -C extra-filename=-281f50e119612eba --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/libc-281f50e119612eba -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 236s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --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=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s Compiling cfg-if v1.0.0 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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] 236s parameters. Structured like an if-else chain, the first matching branch is the 236s item that gets emitted. 236s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=d1208862b452ea42 -C extra-filename=-d1208862b452ea42 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s Compiling autocfg v1.1.0 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s Running `CARGO=/usr/lib/rust-1.84/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.0FnhCu4C2v/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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] 236s parameters. Structured like an if-else chain, the first matching branch is the 236s item that gets emitted. 236s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=ff3ff84a061de73f -C extra-filename=-ff3ff84a061de73f --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 236s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 236s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 236s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 236s ' 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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/libc-3f83b68379fefaf9/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/libc-281f50e119612eba/build-script-build` 236s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 236s | 236s = note: this feature is not stably supported; its behavior can change in the future 236s 236s [libc 0.2.169] cargo:rerun-if-changed=build.rs 236s warning: `cfg-if` (lib) generated 1 warning 236s Compiling shlex v1.3.0 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 236s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern unicode_ident=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libunicode_ident-5d182fe9243248fe.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)'` 236s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 236s [libc 0.2.169] cargo:rustc-cfg=freebsd11 236s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 236s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/libc-3f83b68379fefaf9/out rustc --crate-name libc --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=5c144d8f845513d1 -C extra-filename=-5c144d8f845513d1 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -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"))'` 236s Running `CARGO=/usr/lib/rust-1.84/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_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 236s ' 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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/libc-3957ed3de98302ef/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 236s [libc 0.2.169] cargo:rerun-if-changed=build.rs 236s warning: unexpected `cfg` condition name: `manual_codegen_check` 236s --> /tmp/tmp.0FnhCu4C2v/registry/shlex-1.3.0/src/bytes.rs:353:12 236s | 236s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 236s | ^^^^^^^^^^^^^^^^^^^^ 236s | 236s = 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` 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s = note: `#[warn(unexpected_cfgs)]` on by default 236s 236s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 236s [libc 0.2.169] cargo:rustc-cfg=freebsd11 236s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 236s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 236s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/libc-3957ed3de98302ef/out rustc --crate-name libc --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --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=727bd1461f4c43d1 -C extra-filename=-727bd1461f4c43d1 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/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"))'` 236s warning: `shlex` (lib) generated 1 warning 236s Compiling regex-syntax v0.8.5 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=ab0d8dd00f49479a -C extra-filename=-ab0d8dd00f49479a --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 236s warning: unused import: `crate::ntptimeval` 236s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 236s | 236s 5 | use crate::ntptimeval; 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: `#[warn(unused_imports)]` on by default 236s 236s warning: unused import: `crate::ntptimeval` 236s --> /tmp/tmp.0FnhCu4C2v/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 236s | 236s 5 | use crate::ntptimeval; 236s | ^^^^^^^^^^^^^^^^^ 236s | 236s = note: `#[warn(unused_imports)]` on by default 236s 237s warning: `libc` (lib) generated 2 warnings (1 duplicate) 237s Compiling quote v1.0.37 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern proc_macro2=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 237s Compiling syn v2.0.96 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=bf80c81dd6cb2291 -C extra-filename=-bf80c81dd6cb2291 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern proc_macro2=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 237s Compiling cc v1.1.14 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 237s C compiler to compile native C code into a static archive to be linked into Rust 237s code. 237s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern shlex=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 237s warning: `libc` (lib) generated 1 warning 237s Compiling regex-automata v0.4.9 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_automata CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/regex-automata-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name regex_automata --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=d9666b3547633884 -C extra-filename=-d9666b3547633884 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern regex_syntax=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libregex_syntax-ab0d8dd00f49479a.rmeta --cap-lints warn` 239s Compiling either v1.13.0 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=either CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/either-1.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 239s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name either --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="use_std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "use_std"))' -C metadata=f1f9396993c26404 -C extra-filename=-f1f9396993c26404 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 239s Compiling pkg-config v0.3.31 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 239s Cargo build scripts. 239s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 239s warning: unreachable expression 239s --> /tmp/tmp.0FnhCu4C2v/registry/pkg-config-0.3.31/src/lib.rs:596:9 239s | 239s 592 | return true; 239s | ----------- any code following this expression is unreachable 239s ... 239s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 239s 597 | | // don't use pkg-config if explicitly disabled 239s 598 | | Some(ref val) if val == "0" => false, 239s 599 | | Some(_) => true, 239s ... | 239s 605 | | } 239s 606 | | } 239s | |_________^ unreachable expression 239s | 239s = note: `#[warn(unreachable_code)]` on by default 239s 239s Compiling glob v0.3.2 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=glob CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/glob-0.3.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 239s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name glob --edition=2015 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=976a4ae9f657afff -C extra-filename=-976a4ae9f657afff --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 239s Compiling once_cell v1.20.2 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=344a80bcef92a9c7 -C extra-filename=-344a80bcef92a9c7 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 240s warning: `pkg-config` (lib) generated 1 warning 240s Compiling clang-sys v1.8.1 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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="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=8f07204d4d237361 -C extra-filename=-8f07204d4d237361 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/clang-sys-8f07204d4d237361 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern glob=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libglob-976a4ae9f657afff.rlib --cap-lints warn` 240s Compiling itertools v0.13.0 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=itertools CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/itertools-0.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name itertools --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="use_alloc"' --cfg 'feature="use_std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "use_alloc", "use_std"))' -C metadata=56216bda020db0de -C extra-filename=-56216bda020db0de --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern either=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libeither-f1f9396993c26404.rmeta --cap-lints warn` 240s Compiling regex v1.11.1 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/regex-1.11.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 240s finite automata and guarantees linear time matching on all inputs. 240s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name regex --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=39971a1e8908159b -C extra-filename=-39971a1e8908159b --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern regex_automata=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libregex_automata-d9666b3547633884.rmeta --extern regex_syntax=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libregex_syntax-ab0d8dd00f49479a.rmeta --cap-lints warn` 240s Running `CARGO=/usr/lib/rust-1.84/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_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_LIBLOADING=1 CARGO_FEATURE_RUNTIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1 CARGO_MANIFEST_LINKS=clang CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/clang-sys-303e75b972063fc3/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/clang-sys-8f07204d4d237361/build-script-build` 240s Compiling lock_api v0.4.12 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=f0bfb43d17aabf00 -C extra-filename=-f0bfb43d17aabf00 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/lock_api-f0bfb43d17aabf00 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern autocfg=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 240s Compiling minimal-lexical v0.2.1 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=0556bf2c8c2021bc -C extra-filename=-0556bf2c8c2021bc --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 240s Compiling bitflags v2.6.0 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bitflags-2.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bitflags-2.6.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 240s ' 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.6.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/bitflags-2.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 debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=95f742e4c89a94e1 -C extra-filename=-95f742e4c89a94e1 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 241s Compiling parking_lot_core v0.9.10 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=445a2560fc0e22f7 -C extra-filename=-445a2560fc0e22f7 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/parking_lot_core-445a2560fc0e22f7 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 241s Compiling memchr v2.7.4 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 241s 1, 2 or 3 byte search and single substring search. 241s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=000e3ef941b4fb2c -C extra-filename=-000e3ef941b4fb2c --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 241s Compiling rustix v0.38.37 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=81772580b4c03ea1 -C extra-filename=-81772580b4c03ea1 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/rustix-81772580b4c03ea1 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 241s Running `CARGO=/usr/lib/rust-1.84/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_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/parking_lot_core-fb44243bf24c83bc/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/parking_lot_core-445a2560fc0e22f7/build-script-build` 241s [parking_lot_core 0.9.10] cargo:rerun-if-changed=build.rs 241s Running `CARGO=/usr/lib/rust-1.84/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_ATOMIC_USIZE=1 CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/lock_api-e7bf6fe171179a8a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/lock_api-f0bfb43d17aabf00/build-script-build` 241s [lock_api 0.4.12] cargo:rustc-cfg=has_const_fn_trait_bound 241s Compiling nom v7.1.3 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name nom --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=c735ff987ef9a3fd -C extra-filename=-c735ff987ef9a3fd --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern memchr=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libmemchr-000e3ef941b4fb2c.rmeta --extern minimal_lexical=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libminimal_lexical-0556bf2c8c2021bc.rmeta --cap-lints warn` 241s Compiling dirs-sys-next v0.1.1 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=dirs_sys_next CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/dirs-sys-next-0.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/dirs-sys-next-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='The @xdg-rs members' CARGO_PKG_DESCRIPTION='system-level helper functions for the dirs and directories crates' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dirs-sys-next CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/xdg-rs/dirs/tree/master/dirs-sys' CARGO_PKG_RUST_VERSION='' 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.0FnhCu4C2v/target/debug/deps rustc --crate-name dirs_sys_next --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/dirs-sys-next-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e0f2ce6a49139caa -C extra-filename=-e0f2ce6a49139caa --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern libc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblibc-727bd1461f4c43d1.rmeta --cap-lints warn` 241s warning: unexpected `cfg` condition value: `cargo-clippy` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/lib.rs:375:13 241s | 241s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 241s | ^^^^^^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 241s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s = note: `#[warn(unexpected_cfgs)]` on by default 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/lib.rs:379:12 241s | 241s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = 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` 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/lib.rs:391:12 241s | 241s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/lib.rs:418:14 241s | 241s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unused import: `self::str::*` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/lib.rs:439:9 241s | 241s 439 | pub use self::str::*; 241s | ^^^^^^^^^^^^ 241s | 241s = note: `#[warn(unused_imports)]` on by default 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:49:12 241s | 241s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:96:12 241s | 241s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:340:12 241s | 241s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:357:12 241s | 241s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:374:12 241s | 241s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:392:12 241s | 241s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:409:12 241s | 241s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `nightly` 241s --> /tmp/tmp.0FnhCu4C2v/registry/nom-7.1.3/src/internal.rs:430:12 241s | 241s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 241s | ^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s Running `CARGO=/usr/lib/rust-1.84/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_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/rustix-3d94ad12d678a38b/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/rustix-81772580b4c03ea1/build-script-build` 241s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 241s Compiling errno v0.3.8 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/errno-0.3.8/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 debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a9ef2be50d0aa124 -C extra-filename=-a9ef2be50d0aa124 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern libc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblibc-727bd1461f4c43d1.rmeta --cap-lints warn` 241s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 241s [rustix 0.38.37] cargo:rustc-cfg=libc 241s [rustix 0.38.37] cargo:rustc-cfg=linux_like 241s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 241s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 241s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 241s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 241s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 241s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 241s warning: unexpected `cfg` condition value: `bitrig` 241s --> /tmp/tmp.0FnhCu4C2v/registry/errno-0.3.8/src/unix.rs:77:13 241s | 241s 77 | target_os = "bitrig", 241s | ^^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 241s = note: see for more information about checking conditional configuration 241s = note: `#[warn(unexpected_cfgs)]` on by default 241s 241s Compiling libloading v0.8.5 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libloading CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name libloading --edition=2015 /tmp/tmp.0FnhCu4C2v/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 -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=2506946c9535791f -C extra-filename=-2506946c9535791f --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcfg_if-d1208862b452ea42.rmeta --cap-lints warn` 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/lib.rs:39:13 241s | 241s 39 | #![cfg_attr(libloading_docs, feature(doc_cfg))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = 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` 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s = note: requested on the command line with `-W unexpected-cfgs` 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/lib.rs:45:26 241s | 241s 45 | #[cfg(any(unix, windows, libloading_docs))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/lib.rs:49:26 241s | 241s 49 | #[cfg(any(unix, windows, libloading_docs))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/os/mod.rs:20:17 241s | 241s 20 | #[cfg(any(unix, libloading_docs))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/os/mod.rs:21:12 241s | 241s 21 | #[cfg_attr(libloading_docs, doc(cfg(unix)))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/os/mod.rs:25:20 241s | 241s 25 | #[cfg(any(windows, libloading_docs))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/os/unix/mod.rs:3:11 241s | 241s 3 | #[cfg(all(libloading_docs, not(unix)))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/os/unix/mod.rs:5:15 241s | 241s 5 | #[cfg(any(not(libloading_docs), unix))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/os/unix/consts.rs:46:11 241s | 241s 46 | #[cfg(all(libloading_docs, not(unix)))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/os/unix/consts.rs:55:15 241s | 241s 55 | #[cfg(any(not(libloading_docs), unix))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/safe.rs:1:7 241s | 241s 1 | #[cfg(libloading_docs)] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/safe.rs:3:15 241s | 241s 3 | #[cfg(all(not(libloading_docs), unix))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/safe.rs:5:15 241s | 241s 5 | #[cfg(all(not(libloading_docs), windows))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/safe.rs:15:12 241s | 241s 15 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition name: `libloading_docs` 241s --> /tmp/tmp.0FnhCu4C2v/registry/libloading-0.8.5/src/safe.rs:197:12 241s | 241s 197 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 241s | ^^^^^^^^^^^^^^^ 241s | 241s = help: consider using a Cargo feature instead 241s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 241s [lints.rust] 241s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 241s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 241s = note: see for more information about checking conditional configuration 241s 241s warning: `errno` (lib) generated 1 warning 241s Compiling scopeguard v1.2.0 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=scopeguard CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/scopeguard-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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, 241s even if the code between panics (assuming unwinding panic). 241s 241s Defines the macros `defer'\!'`, `defer_on_unwind'\!'`, `defer_on_success'\!'` as 241s shorthands for guards with one of the implemented strategies. 241s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name scopeguard --edition=2015 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "use_std"))' -C metadata=b7549acbb986dd14 -C extra-filename=-b7549acbb986dd14 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 241s Compiling crunchy v0.2.2 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crunchy-0.2.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/crunchy-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Vurich ' CARGO_PKG_DESCRIPTION='Crunchy unroller: deterministically unroll constant loops' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crunchy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' 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.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/crunchy-0.2.2/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="limit_128"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "limit_1024", "limit_128", "limit_2048", "limit_256", "limit_512", "limit_64", "std"))' -C metadata=5d1a4d328bf6043a -C extra-filename=-5d1a4d328bf6043a --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/crunchy-5d1a4d328bf6043a -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 242s warning: `libloading` (lib) generated 15 warnings 242s Compiling crossbeam-utils v0.8.19 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=1097f3aec3ae50ec -C extra-filename=-1097f3aec3ae50ec --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/crossbeam-utils-1097f3aec3ae50ec -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 242s Compiling cfg-if v0.1.10 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/cfg-if-0.1.10 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/cfg-if-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 242s parameters. Structured like an if-else chain, the first matching branch is the 242s item that gets emitted. 242s ' 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=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/cfg-if-0.1.10/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("core"))' -C metadata=d6185710694f9c54 -C extra-filename=-d6185710694f9c54 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 242s 1, 2 or 3 byte search and single substring search. 242s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=9dfbaa7dc96bc3ae -C extra-filename=-9dfbaa7dc96bc3ae --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 242s Compiling smallvec v1.13.2 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=f7f5371280a70ca7 -C extra-filename=-f7f5371280a70ca7 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 242s Compiling bindgen v0.70.1 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.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.70.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=70 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.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 debuginfo=2 --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=232cd7716c9fd102 -C extra-filename=-232cd7716c9fd102 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/bindgen-232cd7716c9fd102 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 242s warning: `memchr` (lib) generated 1 warning (1 duplicate) 242s Compiling linux-raw-sys v0.4.14 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/linux-raw-sys-0.4.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 debuginfo=2 --cfg 'feature="general"' --cfg 'feature="ioctl"' --cfg 'feature="no_std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=713643e25a8c2c58 -C extra-filename=-713643e25a8c2c58 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 242s Running `CARGO=/usr/lib/rust-1.84/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_RUNTIME=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.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.70.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=70 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/bindgen-17e703bfa5205138/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/bindgen-232cd7716c9fd102/build-script-build` 242s [bindgen 0.70.1] cargo:rerun-if-env-changed=LLVM_CONFIG_PATH 242s [bindgen 0.70.1] cargo:rerun-if-env-changed=LIBCLANG_PATH 242s [bindgen 0.70.1] cargo:rerun-if-env-changed=LIBCLANG_STATIC_PATH 242s [bindgen 0.70.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS 242s [bindgen 0.70.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS_s390x-unknown-linux-gnu 242s [bindgen 0.70.1] cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS_s390x_unknown_linux_gnu 242s Compiling cexpr v0.6.0 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cexpr CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/cexpr-0.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name cexpr --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e99816b58e60d453 -C extra-filename=-e99816b58e60d453 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern nom=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libnom-c735ff987ef9a3fd.rmeta --cap-lints warn` 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/rustix-3d94ad12d678a38b/out rustc --crate-name rustix --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/rustix-0.38.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 debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=b2c6e62aaadba370 -C extra-filename=-b2c6e62aaadba370 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern bitflags=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libbitflags-95f742e4c89a94e1.rmeta --extern libc_errno=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liberrno-a9ef2be50d0aa124.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblibc-727bd1461f4c43d1.rmeta --extern linux_raw_sys=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblinux_raw_sys-713643e25a8c2c58.rmeta --cap-lints warn --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 243s warning: `nom` (lib) generated 13 warnings 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking_lot_core CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/parking_lot_core-fb44243bf24c83bc/out rustc --crate-name parking_lot_core --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=74480c8aa9dd18fd -C extra-filename=-74480c8aa9dd18fd --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcfg_if-d1208862b452ea42.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblibc-727bd1461f4c43d1.rmeta --extern smallvec=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libsmallvec-f7f5371280a70ca7.rmeta --cap-lints warn` 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1148:7 243s | 243s 1148 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s = note: `#[warn(unexpected_cfgs)]` on by default 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:171:11 243s | 243s 171 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:189:19 243s | 243s 189 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1099:11 243s | 243s 1099 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1102:11 243s | 243s 1102 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1135:11 243s | 243s 1135 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1113:15 243s | 243s 1113 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1129:15 243s | 243s 1129 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition value: `deadlock_detection` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1143:15 243s | 243s 1143 | #[cfg(feature = "deadlock_detection")] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `nightly` 243s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unused import: `UnparkHandle` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/thread_parker/mod.rs:85:49 243s | 243s 85 | pub use self::imp::{thread_yield, ThreadParker, UnparkHandle}; 243s | ^^^^^^^^^^^^ 243s | 243s = note: `#[warn(unused_imports)]` on by default 243s 243s warning: unexpected `cfg` condition name: `tsan_enabled` 243s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot_core-0.9.10/src/word_lock.rs:293:13 243s | 243s 293 | if cfg!(tsan_enabled) { 243s | ^^^^^^^^^^^^ 243s | 243s = 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` 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tsan_enabled)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tsan_enabled)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-2055c42ca415ee81/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/crossbeam-utils-1097f3aec3ae50ec/build-script-build` 243s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 243s Compiling dirs-next v2.0.0 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=dirs_next CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/dirs-next-2.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/dirs-next-2.0.0/Cargo.toml CARGO_PKG_AUTHORS='The @xdg-rs members' CARGO_PKG_DESCRIPTION='A tiny low-level library that provides platform-specific standard locations 243s of directories for config, cache and other data on Linux, Windows, macOS 243s and Redox by leveraging the mechanisms defined by the XDG base/user 243s directory specifications on Linux, the Known Folder API on Windows, 243s and the Standard Directory guidelines on macOS. 243s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dirs-next CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/xdg-rs/dirs' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name dirs_next --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/dirs-next-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=696f100c4c982a76 -C extra-filename=-696f100c4c982a76 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcfg_if-d6185710694f9c54.rmeta --extern dirs_sys_next=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libdirs_sys_next-e0f2ce6a49139caa.rmeta --cap-lints warn` 243s warning: `parking_lot_core` (lib) generated 11 warnings 243s Running `CARGO=/usr/lib/rust-1.84/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_LIMIT_128=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crunchy-0.2.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/crunchy-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Vurich ' CARGO_PKG_DESCRIPTION='Crunchy unroller: deterministically unroll constant loops' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crunchy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' 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='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/crunchy-9500ca8e4e8e0751/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/crunchy-5d1a4d328bf6043a/build-script-build` 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=clang_sys CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/clang-sys-303e75b972063fc3/out rustc --crate-name clang_sys --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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="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=043d99f6d9799b4d -C extra-filename=-043d99f6d9799b4d --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern glob=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libglob-976a4ae9f657afff.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblibc-727bd1461f4c43d1.rmeta --extern libloading=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblibloading-2506946c9535791f.rmeta --cap-lints warn` 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lock_api CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/lock_api-e7bf6fe171179a8a/out rustc --crate-name lock_api --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=1b43afc82b8ed247 -C extra-filename=-1b43afc82b8ed247 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern scopeguard=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libscopeguard-b7549acbb986dd14.rmeta --cap-lints warn --cfg has_const_fn_trait_bound` 243s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 243s --> /tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12/src/mutex.rs:148:11 243s | 243s 148 | #[cfg(has_const_fn_trait_bound)] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = 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` 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s = note: `#[warn(unexpected_cfgs)]` on by default 243s 243s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 243s --> /tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12/src/mutex.rs:158:15 243s | 243s 158 | #[cfg(not(has_const_fn_trait_bound))] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 243s --> /tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12/src/remutex.rs:232:11 243s | 243s 232 | #[cfg(has_const_fn_trait_bound)] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 243s --> /tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12/src/remutex.rs:247:15 243s | 243s 247 | #[cfg(not(has_const_fn_trait_bound))] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 243s --> /tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12/src/rwlock.rs:369:11 243s | 243s 369 | #[cfg(has_const_fn_trait_bound)] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: unexpected `cfg` condition name: `has_const_fn_trait_bound` 243s --> /tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12/src/rwlock.rs:379:15 243s | 243s 379 | #[cfg(not(has_const_fn_trait_bound))] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = help: consider using a Cargo feature instead 243s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 243s [lints.rust] 243s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_const_fn_trait_bound)'] } 243s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_const_fn_trait_bound)");` to the top of the `build.rs` 243s = note: see for more information about checking conditional configuration 243s 243s warning: field `0` is never read 243s --> /tmp/tmp.0FnhCu4C2v/registry/lock_api-0.4.12/src/lib.rs:103:24 243s | 243s 103 | pub struct GuardNoSend(*mut ()); 243s | ----------- ^^^^^^^ 243s | | 243s | field in this struct 243s | 243s = help: consider removing this field 243s = note: `#[warn(dead_code)]` on by default 243s 243s warning: `lock_api` (lib) generated 7 warnings 243s Compiling getrandom v0.2.15 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=c2a67bee99704e91 -C extra-filename=-c2a67bee99704e91 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcfg_if-d1208862b452ea42.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblibc-727bd1461f4c43d1.rmeta --cap-lints warn` 243s warning: unexpected `cfg` condition value: `cargo-clippy` 243s --> /tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1/src/lib.rs:23:13 243s | 243s 23 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::unreadable_literal))] 243s | ^^^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s = 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` 243s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s = note: `#[warn(unexpected_cfgs)]` on by default 243s 243s warning: unexpected `cfg` condition value: `cargo-clippy` 243s --> /tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1/src/link.rs:173:24 243s | 243s 173 | #[cfg_attr(feature="cargo-clippy", allow(clippy::missing_safety_doc))] 243s | ^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s ::: /tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1/src/lib.rs:1859:1 243s | 243s 1859 | / link! { 243s 1860 | | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint; 243s 1861 | | pub fn clang_CXCursorSet_insert(set: CXCursorSet, cursor: CXCursor) -> c_uint; 243s 1862 | | pub fn clang_CXIndex_getGlobalOptions(index: CXIndex) -> CXGlobalOptFlags; 243s ... | 243s 2432 | | pub fn clang_VerbatimLineComment_getText(comment: CXComment) -> CXString; 243s 2433 | | } 243s | |_- in this macro invocation 243s | 243s = 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` 243s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s = note: this warning originates in the macro `link` (in Nightly builds, run with -Z macro-backtrace for more info) 243s 243s warning: unexpected `cfg` condition value: `cargo-clippy` 243s --> /tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1/src/link.rs:174:24 243s | 243s 174 | #[cfg_attr(feature="cargo-clippy", allow(clippy::too_many_arguments))] 243s | ^^^^^^^^^^^^^^^^^^^^^^ 243s | 243s ::: /tmp/tmp.0FnhCu4C2v/registry/clang-sys-1.8.1/src/lib.rs:1859:1 243s | 243s 1859 | / link! { 243s 1860 | | pub fn clang_CXCursorSet_contains(set: CXCursorSet, cursor: CXCursor) -> c_uint; 243s 1861 | | pub fn clang_CXCursorSet_insert(set: CXCursorSet, cursor: CXCursor) -> c_uint; 243s 1862 | | pub fn clang_CXIndex_getGlobalOptions(index: CXIndex) -> CXGlobalOptFlags; 243s ... | 243s 2432 | | pub fn clang_VerbatimLineComment_getText(comment: CXComment) -> CXString; 243s 2433 | | } 243s | |_- in this macro invocation 243s | 243s = 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` 243s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s = note: this warning originates in the macro `link` (in Nightly builds, run with -Z macro-backtrace for more info) 243s 243s warning: unexpected `cfg` condition value: `js` 243s --> /tmp/tmp.0FnhCu4C2v/registry/getrandom-0.2.15/src/lib.rs:334:25 243s | 243s 334 | } else if #[cfg(all(feature = "js", 243s | ^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 243s = help: consider adding `js` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s = note: `#[warn(unexpected_cfgs)]` on by default 243s 243s warning: `getrandom` (lib) generated 1 warning 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=5d7625c47b7ad091 -C extra-filename=-5d7625c47b7ad091 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblibc-5c144d8f845513d1.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 243s warning: unexpected `cfg` condition value: `js` 243s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 243s | 243s 334 | } else if #[cfg(all(feature = "js", 243s | ^^^^^^^^^^^^^^ 243s | 243s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 243s = help: consider adding `js` as a feature in `Cargo.toml` 243s = note: see for more information about checking conditional configuration 243s = note: `#[warn(unexpected_cfgs)]` on by default 243s 243s Compiling tiny-keccak v2.0.2 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/Cargo.toml CARGO_PKG_AUTHORS='debris ' CARGO_PKG_DESCRIPTION='An implementation of Keccak derived functions.' CARGO_PKG_HOMEPAGE='https://github.com/debris/tiny-keccak' CARGO_PKG_LICENSE=CC0-1.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tiny-keccak CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="sha3"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("cshake", "default", "fips202", "k12", "keccak", "kmac", "parallel_hash", "sha3", "shake", "sp800", "tuple_hash"))' -C metadata=a41c1bb74bffa903 -C extra-filename=-a41c1bb74bffa903 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/tiny-keccak-a41c1bb74bffa903 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 243s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 243s Compiling siphasher v1.0.1 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=siphasher CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/siphasher-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name siphasher --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=4b9ab36ba684b98f -C extra-filename=-4b9ab36ba684b98f --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 243s Compiling rustc-hash v1.1.0 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustc_hash CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rustc-hash-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name rustc_hash --edition=2015 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4e3823f74184d465 -C extra-filename=-4e3823f74184d465 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 244s Compiling typenum v1.17.0 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 244s compile time. It currently supports bits, unsigned integers, and signed 244s integers. It also provides a type-level array of type-level numbers, but its 244s 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_main --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=ef2812a6bded5202 -C extra-filename=-ef2812a6bded5202 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/typenum-ef2812a6bded5202 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 244s Compiling equivalent v1.0.1 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/equivalent-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a11b0a19a3bf2c19 -C extra-filename=-a11b0a19a3bf2c19 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 244s Compiling serde v1.0.217 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=99acae91072c8674 -C extra-filename=-99acae91072c8674 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/serde-99acae91072c8674 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 244s Compiling fastrand v2.1.1 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/fastrand-2.1.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 debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=d6f98d17913c4faa -C extra-filename=-d6f98d17913c4faa --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 244s warning: unexpected `cfg` condition value: `js` 244s --> /tmp/tmp.0FnhCu4C2v/registry/fastrand-2.1.1/src/global_rng.rs:202:5 244s | 244s 202 | feature = "js" 244s | ^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `alloc`, `default`, and `std` 244s = help: consider adding `js` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s = note: `#[warn(unexpected_cfgs)]` on by default 244s 244s warning: unexpected `cfg` condition value: `js` 244s --> /tmp/tmp.0FnhCu4C2v/registry/fastrand-2.1.1/src/global_rng.rs:214:9 244s | 244s 214 | not(feature = "js") 244s | ^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `alloc`, `default`, and `std` 244s = help: consider adding `js` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s Compiling hashbrown v0.14.5 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=e14e27c8ff208110 -C extra-filename=-e14e27c8ff208110 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 244s warning: `fastrand` (lib) generated 2 warnings 244s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 244s compile time. It currently supports bits, unsigned integers, and signed 244s integers. It also provides a type-level array of type-level numbers, but its 244s 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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/typenum-ef2812a6bded5202/build-script-main` 244s [typenum 1.17.0] cargo:rerun-if-changed=build/main.rs 244s Compiling tempfile v3.15.0 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tempfile CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/tempfile-3.15.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/tempfile-3.15.0/Cargo.toml CARGO_PKG_AUTHORS='Steven Allen :The Rust Project Developers:Ashley Mannix :Jason White ' CARGO_PKG_DESCRIPTION='A library for managing temporary files and directories.' CARGO_PKG_HOMEPAGE='https://stebalien.com/projects/tempfile-rs/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tempfile CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Stebalien/tempfile' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.15.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name tempfile --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/tempfile-3.15.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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="getrandom"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "getrandom", "nightly"))' -C metadata=9a32594d14703b98 -C extra-filename=-9a32594d14703b98 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcfg_if-d1208862b452ea42.rmeta --extern fastrand=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libfastrand-d6f98d17913c4faa.rmeta --extern getrandom=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libgetrandom-c2a67bee99704e91.rmeta --extern once_cell=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libonce_cell-344a80bcef92a9c7.rmeta --extern rustix=/tmp/tmp.0FnhCu4C2v/target/debug/deps/librustix-b2c6e62aaadba370.rmeta --cap-lints warn` 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/lib.rs:14:5 244s | 244s 14 | feature = "nightly", 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s = note: `#[warn(unexpected_cfgs)]` on by default 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/lib.rs:39:13 244s | 244s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/lib.rs:40:13 244s | 244s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/lib.rs:49:7 244s | 244s 49 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/macros.rs:59:7 244s | 244s 59 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/macros.rs:65:11 244s | 244s 65 | #[cfg(not(feature = "nightly"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 244s | 244s 53 | #[cfg(not(feature = "nightly"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 244s | 244s 55 | #[cfg(not(feature = "nightly"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 244s | 244s 57 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 244s | 244s 3549 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 244s | 244s 3661 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 244s | 244s 3678 | #[cfg(not(feature = "nightly"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 244s | 244s 4304 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 244s | 244s 4319 | #[cfg(not(feature = "nightly"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 244s | 244s 7 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 244s | 244s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 244s | 244s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 244s | 244s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `rkyv` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 244s | 244s 3 | #[cfg(feature = "rkyv")] 244s | ^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `rkyv` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:242:11 244s | 244s 242 | #[cfg(not(feature = "nightly"))] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:255:7 244s | 244s 255 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:6517:11 244s | 244s 6517 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:6523:11 244s | 244s 6523 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:6591:11 244s | 244s 6591 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:6597:11 244s | 244s 6597 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:6651:11 244s | 244s 6651 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/map.rs:6657:11 244s | 244s 6657 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/set.rs:1359:11 244s | 244s 1359 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/set.rs:1365:11 244s | 244s 1365 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/set.rs:1383:11 244s | 244s 1383 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition value: `nightly` 244s --> /tmp/tmp.0FnhCu4C2v/registry/hashbrown-0.14.5/src/set.rs:1389:11 244s | 244s 1389 | #[cfg(feature = "nightly")] 244s | ^^^^^^^^^^^^^^^^^^^ 244s | 244s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 244s = help: consider adding `nightly` as a feature in `Cargo.toml` 244s = note: see for more information about checking conditional configuration 244s 245s Compiling indexmap v2.7.0 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.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 debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=1e18ac9265fbd6ac -C extra-filename=-1e18ac9265fbd6ac --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern equivalent=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 245s warning: `hashbrown` (lib) generated 31 warnings 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bindgen CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.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.70.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=70 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/bindgen-17e703bfa5205138/out rustc --crate-name bindgen --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/bindgen-0.70.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 debuginfo=2 --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=4ca978167c15d654 -C extra-filename=-4ca978167c15d654 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern bitflags=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libbitflags-95f742e4c89a94e1.rmeta --extern cexpr=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcexpr-e99816b58e60d453.rmeta --extern clang_sys=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libclang_sys-043d99f6d9799b4d.rmeta --extern itertools=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libitertools-56216bda020db0de.rmeta --extern proc_macro2=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern regex=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libregex-39971a1e8908159b.rmeta --extern rustc_hash=/tmp/tmp.0FnhCu4C2v/target/debug/deps/librustc_hash-4e3823f74184d465.rmeta --extern shlex=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --extern syn=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libsyn-bf80c81dd6cb2291.rmeta --cap-lints warn` 245s warning: unexpected `cfg` condition value: `borsh` 245s --> /tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.0/src/lib.rs:117:7 245s | 245s 117 | #[cfg(feature = "borsh")] 245s | ^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 245s = help: consider adding `borsh` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s = note: `#[warn(unexpected_cfgs)]` on by default 245s 245s warning: unexpected `cfg` condition value: `rustc-rayon` 245s --> /tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.0/src/lib.rs:131:7 245s | 245s 131 | #[cfg(feature = "rustc-rayon")] 245s | ^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 245s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `quickcheck` 245s --> /tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 245s | 245s 38 | #[cfg(feature = "quickcheck")] 245s | ^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 245s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `rustc-rayon` 245s --> /tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.0/src/macros.rs:128:30 245s | 245s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 245s | ^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 245s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `rustc-rayon` 245s --> /tmp/tmp.0FnhCu4C2v/registry/indexmap-2.7.0/src/macros.rs:153:30 245s | 245s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 245s | ^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 245s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_SERDE_DERIVE=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/serde-5e17351a5b17c437/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/serde-99acae91072c8674/build-script-build` 245s [serde 1.0.217] cargo:rerun-if-changed=build.rs 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 245s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 245s Running `CARGO=/usr/lib/rust-1.84/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_SHA3=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/Cargo.toml CARGO_PKG_AUTHORS='debris ' CARGO_PKG_DESCRIPTION='An implementation of Keccak derived functions.' CARGO_PKG_HOMEPAGE='https://github.com/debris/tiny-keccak' CARGO_PKG_LICENSE=CC0-1.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tiny-keccak CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/tiny-keccak-cc8ebbc94f53a1be/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/tiny-keccak-a41c1bb74bffa903/build-script-build` 245s Compiling phf_shared v0.11.2 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=phf_shared CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/phf_shared-0.11.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/phf_shared-0.11.2/Cargo.toml CARGO_PKG_AUTHORS='Steven Fackler ' CARGO_PKG_DESCRIPTION='Support code shared by PHF libraries' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=phf_shared CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-phf/rust-phf' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.11.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name phf_shared --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/phf_shared-0.11.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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "uncased", "unicase"))' -C metadata=96345fb2bb3c7b2c -C extra-filename=-96345fb2bb3c7b2c --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern siphasher=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libsiphasher-4b9ab36ba684b98f.rmeta --cap-lints warn` 245s Compiling parking_lot v0.12.3 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=parking_lot CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/parking_lot-0.12.3 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/parking_lot-0.12.3/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='More compact and efficient implementations of the standard synchronization primitives.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking_lot CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.12.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name parking_lot --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/parking_lot-0.12.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 debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arc_lock", "default", "hardware-lock-elision", "nightly", "owning_ref", "send_guard", "serde"))' -C metadata=7b0768c57f1c1451 -C extra-filename=-7b0768c57f1c1451 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern lock_api=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblock_api-1b43afc82b8ed247.rmeta --extern parking_lot_core=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libparking_lot_core-74480c8aa9dd18fd.rmeta --cap-lints warn` 245s warning: unexpected `cfg` condition value: `deadlock_detection` 245s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot-0.12.3/src/lib.rs:27:7 245s | 245s 27 | #[cfg(feature = "deadlock_detection")] 245s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde` 245s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s = note: `#[warn(unexpected_cfgs)]` on by default 245s 245s warning: unexpected `cfg` condition value: `deadlock_detection` 245s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot-0.12.3/src/lib.rs:29:11 245s | 245s 29 | #[cfg(not(feature = "deadlock_detection"))] 245s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde` 245s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `deadlock_detection` 245s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot-0.12.3/src/lib.rs:34:35 245s | 245s 34 | #[cfg(all(feature = "send_guard", feature = "deadlock_detection"))] 245s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde` 245s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `deadlock_detection` 245s --> /tmp/tmp.0FnhCu4C2v/registry/parking_lot-0.12.3/src/deadlock.rs:36:7 245s | 245s 36 | #[cfg(feature = "deadlock_detection")] 245s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde` 245s = help: consider adding `deadlock_detection` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: `indexmap` (lib) generated 5 warnings 245s Compiling term v0.7.0 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=term CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/term-0.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/term-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Steven Allen' CARGO_PKG_DESCRIPTION='A terminal formatting library 245s ' CARGO_PKG_HOMEPAGE='https://github.com/Stebalien/term' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=term CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Stebalien/term' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name term --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/term-0.7.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 debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default"))' -C metadata=4f4aed37395ca19f -C extra-filename=-4f4aed37395ca19f --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern dirs_next=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libdirs_next-696f100c4c982a76.rmeta --cap-lints warn` 245s warning: `parking_lot` (lib) generated 4 warnings 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crunchy CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crunchy-0.2.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/crunchy-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Vurich ' CARGO_PKG_DESCRIPTION='Crunchy unroller: deterministically unroll constant loops' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crunchy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' 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.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/crunchy-9500ca8e4e8e0751/out rustc --crate-name crunchy --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/crunchy-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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="limit_128"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "limit_1024", "limit_128", "limit_2048", "limit_256", "limit_512", "limit_64", "std"))' -C metadata=858c8617de5c5de3 -C extra-filename=-858c8617de5c5de3 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/crossbeam-utils-2055c42ca415ee81/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=cfdb990f93633e58 -C extra-filename=-cfdb990f93633e58 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 245s | 245s 42 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s | 245s = 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` 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: `#[warn(unexpected_cfgs)]` on by default 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 245s | 245s 65 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:106:11 245s | 245s 106 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 245s | 245s 74 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 245s | 245s 78 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 245s | 245s 81 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 245s | 245s 7 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 245s | 245s 25 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 245s | 245s 28 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 245s | 245s 1 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 245s | 245s 27 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 245s | 245s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 245s | 245s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 245s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 245s | 245s 50 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 245s | 245s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 245s | 245s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 245s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 245s | 245s 101 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 245s | 245s 107 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 79 | impl_atomic!(AtomicBool, bool); 245s | ------------------------------ in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 79 | impl_atomic!(AtomicBool, bool); 245s | ------------------------------ in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 80 | impl_atomic!(AtomicUsize, usize); 245s | -------------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 80 | impl_atomic!(AtomicUsize, usize); 245s | -------------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 81 | impl_atomic!(AtomicIsize, isize); 245s | -------------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 81 | impl_atomic!(AtomicIsize, isize); 245s | -------------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 82 | impl_atomic!(AtomicU8, u8); 245s | -------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 82 | impl_atomic!(AtomicU8, u8); 245s | -------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 83 | impl_atomic!(AtomicI8, i8); 245s | -------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 83 | impl_atomic!(AtomicI8, i8); 245s | -------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 84 | impl_atomic!(AtomicU16, u16); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 84 | impl_atomic!(AtomicU16, u16); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 85 | impl_atomic!(AtomicI16, i16); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 85 | impl_atomic!(AtomicI16, i16); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 87 | impl_atomic!(AtomicU32, u32); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 87 | impl_atomic!(AtomicU32, u32); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 89 | impl_atomic!(AtomicI32, i32); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 89 | impl_atomic!(AtomicI32, i32); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 94 | impl_atomic!(AtomicU64, u64); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 94 | impl_atomic!(AtomicU64, u64); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 245s | 245s 66 | #[cfg(not(crossbeam_no_atomic))] 245s | ^^^^^^^^^^^^^^^^^^^ 245s ... 245s 99 | impl_atomic!(AtomicI64, i64); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 245s | 245s 71 | #[cfg(crossbeam_loom)] 245s | ^^^^^^^^^^^^^^ 245s ... 245s 99 | impl_atomic!(AtomicI64, i64); 245s | ---------------------------- in this macro invocation 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:7:11 245s | 245s 7 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:10:11 245s | 245s 10 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition name: `crossbeam_loom` 245s --> /usr/share/cargo/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:15:11 245s | 245s 15 | #[cfg(not(crossbeam_loom))] 245s | ^^^^^^^^^^^^^^ 245s | 245s = help: consider using a Cargo feature instead 245s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 245s [lints.rust] 245s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 245s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 245s = note: see for more information about checking conditional configuration 245s 246s warning: `crossbeam-utils` (lib) generated 44 warnings (1 duplicate) 246s Compiling zerocopy-derive v0.7.34 246s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=42bb0d7b29bc4c22 -C extra-filename=-42bb0d7b29bc4c22 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern proc_macro2=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libsyn-bf80c81dd6cb2291.rlib --extern proc_macro --cap-lints warn` 246s Compiling serde_derive v1.0.217 246s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/serde_derive-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='Macros 1.1 implementation of #[derive(Serialize, Deserialize)]' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_derive CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/serde_derive-1.0.217/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 debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "deserialize_in_place"))' -C metadata=d463eea10fdd74db -C extra-filename=-d463eea10fdd74db --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern proc_macro2=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libsyn-bf80c81dd6cb2291.rlib --extern proc_macro --cap-lints warn` 247s Compiling bzip2-sys v0.1.11+1.0.8 247s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Bindings to libbzip2 for bzip2 compression and decompression exposed as 247s Reader/Writer streams. 247s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bzip2-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.11+1.0.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("static"))' -C metadata=5eb6bd65044cb60b -C extra-filename=-5eb6bd65044cb60b --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/bzip2-sys-5eb6bd65044cb60b -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcc-6f10d64c68dac13e.rlib --extern pkg_config=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 248s Compiling precomputed-hash v0.1.1 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=precomputed_hash CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/precomputed-hash-0.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/precomputed-hash-0.1.1/Cargo.toml CARGO_PKG_AUTHORS='Emilio Cobos Álvarez ' CARGO_PKG_DESCRIPTION='A library intending to be a base dependency to expose a precomputed hash' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=precomputed-hash CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/emilio/precomputed-hash' CARGO_PKG_RUST_VERSION='' 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.0FnhCu4C2v/target/debug/deps rustc --crate-name precomputed_hash --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/precomputed-hash-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=60413b7789bbcb14 -C extra-filename=-60413b7789bbcb14 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 248s Compiling byteorder v1.5.0 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 248s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 248s Compiling new_debug_unreachable v1.0.4 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=debug_unreachable CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/new_debug_unreachable-1.0.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/new_debug_unreachable-1.0.4/Cargo.toml CARGO_PKG_AUTHORS='Matt Brubeck :Jonathan Reem ' CARGO_PKG_DESCRIPTION='panic in debug, intrinsics::unreachable() in release (fork of debug_unreachable)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=new_debug_unreachable CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/mbrubeck/rust-debug-unreachable' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.4 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name debug_unreachable --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/new_debug_unreachable-1.0.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ae5970d1372d185a -C extra-filename=-ae5970d1372d185a --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 248s Compiling version_check v0.9.5 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/version_check-0.9.5 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name version_check --edition=2015 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=20e83cdf64ec3211 -C extra-filename=-20e83cdf64ec3211 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 248s Compiling same-file v1.0.6 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=same_file CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/same-file-1.0.6 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/same-file-1.0.6/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='A simple crate for determining whether two file paths point to the same file. 248s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/same-file' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=same-file CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/same-file' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.6 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name same_file --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/same-file-1.0.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=500b42da99ec99c8 -C extra-filename=-500b42da99ec99c8 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 248s warning: unused return value of `into_raw_fd` that must be used 248s --> /tmp/tmp.0FnhCu4C2v/registry/same-file-1.0.6/src/unix.rs:23:13 248s | 248s 23 | self.file.take().unwrap().into_raw_fd(); 248s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: losing the raw file descriptor may leak resources 248s = note: `#[warn(unused_must_use)]` on by default 248s help: use `let _ = ...` to ignore the resulting value 248s | 248s 23 | let _ = self.file.take().unwrap().into_raw_fd(); 248s | +++++++ 248s 248s warning: `same-file` (lib) generated 1 warning 248s Compiling fixedbitset v0.4.2 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fixedbitset CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/fixedbitset-0.4.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/fixedbitset-0.4.2/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='FixedBitSet is a simple bitset collection' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fixedbitset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/fixedbitset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name fixedbitset --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/fixedbitset-0.4.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=76901a978d51fb26 -C extra-filename=-76901a978d51fb26 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 248s Compiling log v0.4.22 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 248s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=c9972ef4653dc7ed -C extra-filename=-c9972ef4653dc7ed --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 248s Compiling bit-vec v0.6.3 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_vec CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bit-vec-0.6.3 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bit-vec-0.6.3/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A vector of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-vec' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-vec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-vec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name bit_vec --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/bit-vec-0.6.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_no_std", "serde_std", "std"))' -C metadata=4116b49dbfed1769 -C extra-filename=-4116b49dbfed1769 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 249s Compiling bit-set v0.5.2 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_set CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bit-set-0.5.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bit-set-0.5.2/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A set of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-set' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-set CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-set' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name bit_set --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/bit-set-0.5.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=7dbefdc213f85320 -C extra-filename=-7dbefdc213f85320 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern bit_vec=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libbit_vec-4116b49dbfed1769.rmeta --cap-lints warn` 249s warning: unexpected `cfg` condition value: `nightly` 249s --> /tmp/tmp.0FnhCu4C2v/registry/bit-set-0.5.2/src/lib.rs:52:23 249s | 249s 52 | #![cfg_attr(all(test, feature = "nightly"), feature(test))] 249s | ^^^^^^^^^^^^^^^^^^^ 249s | 249s = note: expected values for `feature` are: `default` and `std` 249s = help: consider adding `nightly` as a feature in `Cargo.toml` 249s = note: see for more information about checking conditional configuration 249s = note: `#[warn(unexpected_cfgs)]` on by default 249s 249s warning: unexpected `cfg` condition value: `nightly` 249s --> /tmp/tmp.0FnhCu4C2v/registry/bit-set-0.5.2/src/lib.rs:53:17 249s | 249s 53 | #[cfg(all(test, feature = "nightly"))] extern crate test; 249s | ^^^^^^^^^^^^^^^^^^^ 249s | 249s = note: expected values for `feature` are: `default` and `std` 249s = help: consider adding `nightly` as a feature in `Cargo.toml` 249s = note: see for more information about checking conditional configuration 249s 249s warning: unexpected `cfg` condition value: `nightly` 249s --> /tmp/tmp.0FnhCu4C2v/registry/bit-set-0.5.2/src/lib.rs:54:17 249s | 249s 54 | #[cfg(all(test, feature = "nightly"))] extern crate rand; 249s | ^^^^^^^^^^^^^^^^^^^ 249s | 249s = note: expected values for `feature` are: `default` and `std` 249s = help: consider adding `nightly` as a feature in `Cargo.toml` 249s = note: see for more information about checking conditional configuration 249s 249s warning: unexpected `cfg` condition value: `nightly` 249s --> /tmp/tmp.0FnhCu4C2v/registry/bit-set-0.5.2/src/lib.rs:1392:17 249s | 249s 1392 | #[cfg(all(test, feature = "nightly"))] 249s | ^^^^^^^^^^^^^^^^^^^ 249s | 249s = note: expected values for `feature` are: `default` and `std` 249s = help: consider adding `nightly` as a feature in `Cargo.toml` 249s = note: see for more information about checking conditional configuration 249s 249s warning: `bit-set` (lib) generated 4 warnings 249s Compiling ena v0.14.0 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ena CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/ena-0.14.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/ena-0.14.0/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis ' CARGO_PKG_DESCRIPTION='Union-find, congruence closure, and other unification code. Based on code from rustc.' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang-nursery/ena' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ena CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/ena' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name ena --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/ena-0.14.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bench", "congruence-closure", "dogged", "persistent", "petgraph"))' -C metadata=49d914b3f968e308 -C extra-filename=-49d914b3f968e308 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern log=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblog-c9972ef4653dc7ed.rmeta --cap-lints warn` 249s warning: `clang-sys` (lib) generated 3 warnings 249s Compiling petgraph v0.6.4 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=petgraph CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/petgraph-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/petgraph-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='bluss:mitchmindtree' CARGO_PKG_DESCRIPTION='Graph data structure library. Provides graph types and graph algorithms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=petgraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/petgraph' CARGO_PKG_RUST_VERSION=1.64 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name petgraph --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/petgraph-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all", "default", "generate", "graphmap", "matrix_graph", "serde", "serde-1", "serde_derive", "stable_graph", "unstable"))' -C metadata=94b4833c470b0400 -C extra-filename=-94b4833c470b0400 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern fixedbitset=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libfixedbitset-76901a978d51fb26.rmeta --extern indexmap=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --cap-lints warn` 249s Compiling walkdir v2.5.0 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=walkdir CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/walkdir-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/walkdir-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Recursively walk a directory.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/walkdir' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=walkdir CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/walkdir' CARGO_PKG_RUST_VERSION='' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name walkdir --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/walkdir-2.5.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=b5e007a0436e0426 -C extra-filename=-b5e007a0436e0426 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern same_file=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libsame_file-500b42da99ec99c8.rmeta --cap-lints warn` 249s warning: unexpected `cfg` condition value: `quickcheck` 249s --> /tmp/tmp.0FnhCu4C2v/registry/petgraph-0.6.4/src/lib.rs:149:7 249s | 249s 149 | #[cfg(feature = "quickcheck")] 249s | ^^^^^^^^^^^^^^^^^^^^^^ 249s | 249s = note: expected values for `feature` are: `all`, `default`, `generate`, `graphmap`, `matrix_graph`, `serde`, `serde-1`, `serde_derive`, `stable_graph`, and `unstable` 249s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 249s = note: see for more information about checking conditional configuration 249s = note: `#[warn(unexpected_cfgs)]` on by default 249s 250s Compiling generic-array v0.14.7 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=f743f1594234f320 -C extra-filename=-f743f1594234f320 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/generic-array-f743f1594234f320 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern version_check=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libversion_check-20e83cdf64ec3211.rlib --cap-lints warn` 250s Compiling string_cache v0.8.7 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=string_cache CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/string_cache-0.8.7 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/string_cache-0.8.7/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION='A string interning library for Rust, developed as part of the Servo project.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=string_cache CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/string-cache' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name string_cache --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/string_cache-0.8.7/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_support"))' -C metadata=03ebe40ce77c0592 -C extra-filename=-03ebe40ce77c0592 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern debug_unreachable=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libdebug_unreachable-ae5970d1372d185a.rmeta --extern once_cell=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libonce_cell-344a80bcef92a9c7.rmeta --extern parking_lot=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libparking_lot-7b0768c57f1c1451.rmeta --extern phf_shared=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libphf_shared-96345fb2bb3c7b2c.rmeta --extern precomputed_hash=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libprecomputed_hash-60413b7789bbcb14.rmeta --cap-lints warn` 250s Compiling zerocopy v0.7.34 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=94e2e239bc0e0ef7 -C extra-filename=-94e2e239bc0e0ef7 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern byteorder=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libzerocopy_derive-42bb0d7b29bc4c22.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 250s warning: method `node_bound_with_dummy` is never used 250s --> /tmp/tmp.0FnhCu4C2v/registry/petgraph-0.6.4/src/algo/matching.rs:108:8 250s | 250s 106 | trait WithDummy: NodeIndexable { 250s | --------- method in this trait 250s 107 | fn dummy_idx(&self) -> usize; 250s 108 | fn node_bound_with_dummy(&self) -> usize; 250s | ^^^^^^^^^^^^^^^^^^^^^ 250s | 250s = note: `#[warn(dead_code)]` on by default 250s 250s warning: field `first_error` is never read 250s --> /tmp/tmp.0FnhCu4C2v/registry/petgraph-0.6.4/src/csr.rs:134:5 250s | 250s 133 | pub struct EdgesNotSorted { 250s | -------------- field in this struct 250s 134 | first_error: (usize, usize), 250s | ^^^^^^^^^^^ 250s | 250s = note: `EdgesNotSorted` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 250s 250s warning: trait `IterUtilsExt` is never used 250s --> /tmp/tmp.0FnhCu4C2v/registry/petgraph-0.6.4/src/iter_utils.rs:1:11 250s | 250s 1 | pub trait IterUtilsExt: Iterator { 250s | ^^^^^^^^^^^^ 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 250s | 250s 597 | let remainder = t.addr() % mem::align_of::(); 250s | ^^^^^^^^^^^^^^^^^^ 250s | 250s note: the lint level is defined here 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 250s | 250s 174 | unused_qualifications, 250s | ^^^^^^^^^^^^^^^^^^^^^ 250s help: remove the unnecessary path segments 250s | 250s 597 - let remainder = t.addr() % mem::align_of::(); 250s 597 + let remainder = t.addr() % align_of::(); 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 250s | 250s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 250s | ^^^^^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 250s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 250s | 250s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 250s | ^^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 250s 488 + align: match NonZeroUsize::new(align_of::()) { 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 250s | 250s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 250s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 250s | 250s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 250s | ^^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 250s 511 + align: match NonZeroUsize::new(align_of::()) { 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 250s | 250s 517 | _elem_size: mem::size_of::(), 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 517 - _elem_size: mem::size_of::(), 250s 517 + _elem_size: size_of::(), 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 250s | 250s 1418 | let len = mem::size_of_val(self); 250s | ^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 1418 - let len = mem::size_of_val(self); 250s 1418 + let len = size_of_val(self); 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 250s | 250s 2714 | let len = mem::size_of_val(self); 250s | ^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 2714 - let len = mem::size_of_val(self); 250s 2714 + let len = size_of_val(self); 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 250s | 250s 2789 | let len = mem::size_of_val(self); 250s | ^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 2789 - let len = mem::size_of_val(self); 250s 2789 + let len = size_of_val(self); 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 250s | 250s 2863 | if bytes.len() != mem::size_of_val(self) { 250s | ^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 2863 - if bytes.len() != mem::size_of_val(self) { 250s 2863 + if bytes.len() != size_of_val(self) { 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 250s | 250s 2920 | let size = mem::size_of_val(self); 250s | ^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 2920 - let size = mem::size_of_val(self); 250s 2920 + let size = size_of_val(self); 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 250s | 250s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 250s | ^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 250s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 250s | 250s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 250s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 250s | 250s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 250s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 250s | 250s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 250s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 250s | 250s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 250s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 250s | 250s 4221 | .checked_rem(mem::size_of::()) 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4221 - .checked_rem(mem::size_of::()) 250s 4221 + .checked_rem(size_of::()) 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 250s | 250s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 250s 4243 + let expected_len = match size_of::().checked_mul(count) { 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 250s | 250s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 250s 4268 + let expected_len = match size_of::().checked_mul(count) { 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 250s | 250s 4795 | let elem_size = mem::size_of::(); 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4795 - let elem_size = mem::size_of::(); 250s 4795 + let elem_size = size_of::(); 250s | 250s 250s warning: unnecessary qualification 250s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 250s | 250s 4825 | let elem_size = mem::size_of::(); 250s | ^^^^^^^^^^^^^^^^^ 250s | 250s help: remove the unnecessary path segments 250s | 250s 4825 - let elem_size = mem::size_of::(); 250s 4825 + let elem_size = size_of::(); 250s | 250s 250s warning: `petgraph` (lib) generated 4 warnings 250s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11 CARGO_MANIFEST_LINKS=bzip2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Bindings to libbzip2 for bzip2 compression and decompression exposed as 250s Reader/Writer streams. 250s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bzip2-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.11+1.0.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/bzip2-sys-ec12917218bcc159/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/bzip2-sys-5eb6bd65044cb60b/build-script-build` 250s [bzip2-sys 0.1.11+1.0.8] cargo:rustc-link-lib=bz2 250s Compiling crossbeam-epoch v0.9.18 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_epoch CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crossbeam-epoch-0.9.18 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name crossbeam_epoch --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=767d467412ccb9fe -C extra-filename=-767d467412ccb9fe --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern crossbeam_utils=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-cfdb990f93633e58.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/lib.rs:66:7 250s | 250s 66 | #[cfg(crossbeam_loom)] 250s | ^^^^^^^^^^^^^^ 250s | 250s = 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` 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s = note: `#[warn(unexpected_cfgs)]` on by default 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/lib.rs:69:7 250s | 250s 69 | #[cfg(crossbeam_loom)] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/lib.rs:91:11 250s | 250s 91 | #[cfg(not(crossbeam_loom))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/atomic.rs:1675:21 250s | 250s 1675 | #[cfg(all(test, not(crossbeam_loom)))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/atomic.rs:350:15 250s | 250s 350 | #[cfg(not(crossbeam_loom))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/atomic.rs:358:11 250s | 250s 358 | #[cfg(crossbeam_loom)] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/collector.rs:112:21 250s | 250s 112 | #[cfg(all(test, not(crossbeam_loom)))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/deferred.rs:90:21 250s | 250s 90 | #[cfg(all(test, not(crossbeam_loom)))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/internal.rs:56:15 250s | 250s 56 | #[cfg(not(any(crossbeam_sanitize, miri)))] 250s | ^^^^^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/internal.rs:59:11 250s | 250s 59 | #[cfg(any(crossbeam_sanitize, miri))] 250s | ^^^^^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/internal.rs:300:15 250s | 250s 300 | #[cfg(not(any(crossbeam_sanitize, miri)))] // `crossbeam_sanitize` and `miri` reduce the size of `Local` 250s | ^^^^^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/internal.rs:557:21 250s | 250s 557 | #[cfg(all(test, not(crossbeam_loom)))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_sanitize` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/internal.rs:202:29 250s | 250s 202 | let steps = if cfg!(crossbeam_sanitize) { 250s | ^^^^^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/sync/mod.rs:5:11 250s | 250s 5 | #[cfg(not(crossbeam_loom))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/sync/list.rs:298:21 250s | 250s 298 | #[cfg(all(test, not(crossbeam_loom)))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/sync/queue.rs:217:21 250s | 250s 217 | #[cfg(all(test, not(crossbeam_loom)))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/default.rs:10:11 250s | 250s 10 | #[cfg(not(crossbeam_loom))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/default.rs:64:21 250s | 250s 64 | #[cfg(all(test, not(crossbeam_loom)))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/default.rs:14:15 250s | 250s 14 | #[cfg(not(crossbeam_loom))] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s warning: unexpected `cfg` condition name: `crossbeam_loom` 250s --> /usr/share/cargo/registry/crossbeam-epoch-0.9.18/src/default.rs:22:11 250s | 250s 22 | #[cfg(crossbeam_loom)] 250s | ^^^^^^^^^^^^^^ 250s | 250s = help: consider using a Cargo feature instead 250s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 250s [lints.rust] 250s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 250s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 250s = note: see for more information about checking conditional configuration 250s 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/serde-5e17351a5b17c437/out rustc --crate-name serde --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/serde-1.0.217/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 debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=563443b1ce5d2a44 -C extra-filename=-563443b1ce5d2a44 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern serde_derive=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libserde_derive-d463eea10fdd74db.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(no_core_cstr)' --check-cfg 'cfg(no_core_error)' --check-cfg 'cfg(no_core_net)' --check-cfg 'cfg(no_core_num_saturating)' --check-cfg 'cfg(no_core_try_from)' --check-cfg 'cfg(no_diagnostic_namespace)' --check-cfg 'cfg(no_float_copysign)' --check-cfg 'cfg(no_num_nonzero_signed)' --check-cfg 'cfg(no_relaxed_trait_bounds)' --check-cfg 'cfg(no_serde_derive)' --check-cfg 'cfg(no_std_atomic)' --check-cfg 'cfg(no_std_atomic64)' --check-cfg 'cfg(no_systemtime_checked_add)' --check-cfg 'cfg(no_target_has_atomic)'` 250s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 250s Compiling ascii-canvas v3.0.0 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ascii_canvas CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/ascii-canvas-3.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/ascii-canvas-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis ' CARGO_PKG_DESCRIPTION='simple canvas for drawing lines and styled text and emitting to the terminal' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ascii-canvas CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nikomatsakis/ascii-canvas' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name ascii_canvas --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/ascii-canvas-3.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=33da29a3b64ccbd1 -C extra-filename=-33da29a3b64ccbd1 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern term=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libterm-4f4aed37395ca19f.rmeta --cap-lints warn` 251s warning: `crossbeam-epoch` (lib) generated 21 warnings (1 duplicate) 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tiny_keccak CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/Cargo.toml CARGO_PKG_AUTHORS='debris ' CARGO_PKG_DESCRIPTION='An implementation of Keccak derived functions.' CARGO_PKG_HOMEPAGE='https://github.com/debris/tiny-keccak' CARGO_PKG_LICENSE=CC0-1.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tiny-keccak CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/debug/build/tiny-keccak-cc8ebbc94f53a1be/out rustc --crate-name tiny_keccak --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="sha3"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("cshake", "default", "fips202", "k12", "keccak", "kmac", "parallel_hash", "sha3", "shake", "sp800", "tuple_hash"))' -C metadata=9558ff4638ded69e -C extra-filename=-9558ff4638ded69e --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern crunchy=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcrunchy-858c8617de5c5de3.rmeta --cap-lints warn` 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/typenum-1.17.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 251s compile time. It currently supports bits, unsigned integers, and signed 251s integers. It also provides a type-level array of type-level numbers, but its 251s 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/typenum-b1daa52c37018028/out rustc --crate-name typenum --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("const-generics", "force_unix_path_separator", "i128", "no_std", "strict"))' -C metadata=c66037e8139405ff -C extra-filename=-c66037e8139405ff --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: struct `EncodedLen` is never constructed 251s --> /tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/src/lib.rs:269:8 251s | 251s 269 | struct EncodedLen { 251s | ^^^^^^^^^^ 251s | 251s = note: `#[warn(dead_code)]` on by default 251s 251s warning: method `value` is never used 251s --> /tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/src/lib.rs:275:8 251s | 251s 274 | impl EncodedLen { 251s | --------------- method in this implementation 251s 275 | fn value(&self) -> &[u8] { 251s | ^^^^^ 251s 251s warning: function `left_encode` is never used 251s --> /tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/src/lib.rs:280:4 251s | 251s 280 | fn left_encode(len: usize) -> EncodedLen { 251s | ^^^^^^^^^^^ 251s 251s warning: function `right_encode` is never used 251s --> /tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/src/lib.rs:292:4 251s | 251s 292 | fn right_encode(len: usize) -> EncodedLen { 251s | ^^^^^^^^^^^^ 251s 251s warning: method `reset` is never used 251s --> /tmp/tmp.0FnhCu4C2v/registry/tiny-keccak-2.0.2/src/lib.rs:469:8 251s | 251s 390 | impl KeccakState

{ 251s | ----------------------------------- method in this implementation 251s ... 251s 469 | fn reset(&mut self) { 251s | ^^^^^ 251s 251s warning: unexpected `cfg` condition value: `cargo-clippy` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:50:5 251s | 251s 50 | feature = "cargo-clippy", 251s | ^^^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s = note: `#[warn(unexpected_cfgs)]` on by default 251s 251s warning: unexpected `cfg` condition value: `cargo-clippy` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:60:13 251s | 251s 60 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::missing_inline_in_public_items))] 251s | ^^^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:119:12 251s | 251s 119 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:125:12 251s | 251s 125 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:131:12 251s | 251s 131 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:19:12 251s | 251s 19 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:32:12 251s | 251s 32 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition name: `tests` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/bit.rs:187:7 251s | 251s 187 | #[cfg(tests)] 251s | ^^^^^ help: there is a config with a similar name: `test` 251s | 251s = help: consider using a Cargo feature instead 251s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 251s [lints.rust] 251s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 251s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:41:12 251s | 251s 41 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:48:12 251s | 251s 48 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/int.rs:71:12 251s | 251s 71 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:49:12 251s | 251s 49 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:147:12 251s | 251s 147 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition name: `tests` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1656:7 251s | 251s 1656 | #[cfg(tests)] 251s | ^^^^^ help: there is a config with a similar name: `test` 251s | 251s = help: consider using a Cargo feature instead 251s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 251s [lints.rust] 251s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tests)'] } 251s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tests)");` to the top of the `build.rs` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `cargo-clippy` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/uint.rs:1709:16 251s | 251s 1709 | #[cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl))] 251s | ^^^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:11:12 251s | 251s 11 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unexpected `cfg` condition value: `scale_info` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/array.rs:23:12 251s | 251s 23 | #[cfg_attr(feature = "scale_info", derive(scale_info::TypeInfo))] 251s | ^^^^^^^^^^^^^^^^^^^^^^ 251s | 251s = note: expected values for `feature` are: `const-generics`, `force_unix_path_separator`, `i128`, `no_std`, and `strict` 251s = help: consider adding `scale_info` as a feature in `Cargo.toml` 251s = note: see for more information about checking conditional configuration 251s 251s warning: unused import: `*` 251s --> /usr/share/cargo/registry/typenum-1.17.0/src/lib.rs:106:25 251s | 251s 106 | N1, N2, Z0, P1, P2, *, 251s | ^ 251s | 251s = note: `#[warn(unused_imports)]` on by default 251s 251s warning: `tiny-keccak` (lib) generated 5 warnings 251s Compiling aho-corasick v1.1.3 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=aho_corasick CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/aho-corasick-1.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name aho_corasick --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="perf-literal"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "logging", "perf-literal", "std"))' -C metadata=fbc72b3c6b57956b -C extra-filename=-fbc72b3c6b57956b --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern memchr=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-9dfbaa7dc96bc3ae.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: `typenum` (lib) generated 19 warnings (1 duplicate) 251s Compiling num-traits v0.2.19 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=53f63b4f6fe2c3cc -C extra-filename=-53f63b4f6fe2c3cc --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/num-traits-53f63b4f6fe2c3cc -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern autocfg=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 252s Compiling unicode-xid v0.2.4 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_xid CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/unicode-xid-0.2.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/unicode-xid-0.2.4/Cargo.toml CARGO_PKG_AUTHORS='erick.tryzelaar :kwantam :Manish Goregaokar ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start 252s or XID_Continue properties according to 252s Unicode Standard Annex #31. 252s ' CARGO_PKG_HOMEPAGE='https://github.com/unicode-rs/unicode-xid' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-xid CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/unicode-rs/unicode-xid' CARGO_PKG_RUST_VERSION=1.17 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.0FnhCu4C2v/target/debug/deps rustc --crate-name unicode_xid --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/unicode-xid-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bench", "default", "no_std"))' -C metadata=dddf1eb994b40714 -C extra-filename=-dddf1eb994b40714 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 252s warning: method `cmpeq` is never used 252s --> /usr/share/cargo/registry/aho-corasick-1.1.3/src/packed/vector.rs:74:15 252s | 252s 28 | pub(crate) trait Vector: 252s | ------ method in this trait 252s ... 252s 74 | unsafe fn cmpeq(self, vector2: Self) -> Self; 252s | ^^^^^ 252s | 252s = note: `#[warn(dead_code)]` on by default 252s 252s Compiling rayon-core v1.12.1 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rayon-core-1.12.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8b2bb024c126eec5 -C extra-filename=-8b2bb024c126eec5 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/rayon-core-8b2bb024c126eec5 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 252s Compiling thiserror v1.0.69 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 252s Compiling serde_json v1.0.133 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A JSON serialization file format' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_json CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/json' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.133 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=133 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "arbitrary_precision", "default", "float_roundtrip", "indexmap", "preserve_order", "raw_value", "std", "unbounded_depth"))' -C metadata=2fa85724bf02f5ac -C extra-filename=-2fa85724bf02f5ac --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/serde_json-2fa85724bf02f5ac -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 252s Compiling adler v1.0.2 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=adler CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/adler-1.0.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/adler-1.0.2/Cargo.toml CARGO_PKG_AUTHORS='Jonas Schievink ' CARGO_PKG_DESCRIPTION='A simple clean-room implementation of the Adler-32 checksum' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='0BSD OR MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=adler CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/jonas-schievink/adler.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name adler --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/adler-1.0.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "default", "rustc-dep-of-std", "std"))' -C metadata=86fb194915ca3f2c -C extra-filename=-86fb194915ca3f2c --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 252s warning: `adler` (lib) generated 1 warning (1 duplicate) 252s Compiling lalrpop-util v0.20.0 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lalrpop_util CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/lalrpop-util-0.20.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/lalrpop-util-0.20.0/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis ' CARGO_PKG_DESCRIPTION='Runtime library for parsers generated by LALRPOP' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lalrpop-util CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/lalrpop/lalrpop' CARGO_PKG_RUST_VERSION=1.64 CARGO_PKG_VERSION=0.20.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name lalrpop_util --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/lalrpop-util-0.20.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "lexer", "regex", "std", "unicode"))' -C metadata=4fbba07d4f82ffc6 -C extra-filename=-4fbba07d4f82ffc6 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=either CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/either-1.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 253s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name either --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="use_std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "use_std"))' -C metadata=0c433bde77a4eceb -C extra-filename=-0c433bde77a4eceb --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 253s warning: `aho-corasick` (lib) generated 2 warnings (1 duplicate) 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=4fc5539eea58731c -C extra-filename=-4fc5539eea58731c --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 253s warning: `either` (lib) generated 1 warning (1 duplicate) 253s Compiling lalrpop v0.20.2 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lalrpop CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/Cargo.toml CARGO_PKG_AUTHORS='Niko Matsakis ' CARGO_PKG_DESCRIPTION='convenient LR(1) parser generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lalrpop CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lalrpop/lalrpop' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=0.20.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name lalrpop --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "lexer", "pico-args", "unicode"))' -C metadata=0e39d0a307f79db1 -C extra-filename=-0e39d0a307f79db1 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern ascii_canvas=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libascii_canvas-33da29a3b64ccbd1.rmeta --extern bit_set=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libbit_set-7dbefdc213f85320.rmeta --extern ena=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libena-49d914b3f968e308.rmeta --extern itertools=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libitertools-56216bda020db0de.rmeta --extern lalrpop_util=/tmp/tmp.0FnhCu4C2v/target/debug/deps/liblalrpop_util-4fbba07d4f82ffc6.rmeta --extern petgraph=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libpetgraph-94b4833c470b0400.rmeta --extern regex=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libregex-39971a1e8908159b.rmeta --extern regex_syntax=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libregex_syntax-ab0d8dd00f49479a.rmeta --extern string_cache=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libstring_cache-03ebe40ce77c0592.rmeta --extern term=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libterm-4f4aed37395ca19f.rmeta --extern tiny_keccak=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libtiny_keccak-9558ff4638ded69e.rmeta --extern unicode_xid=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libunicode_xid-dddf1eb994b40714.rmeta --extern walkdir=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libwalkdir-b5e007a0436e0426.rmeta --cap-lints warn` 253s warning: `serde` (lib) generated 1 warning (1 duplicate) 253s Compiling miniz_oxide v0.7.1 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=miniz_oxide CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/miniz_oxide-0.7.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/miniz_oxide-0.7.1/Cargo.toml CARGO_PKG_AUTHORS='Frommi :oyvindln ' CARGO_PKG_DESCRIPTION='DEFLATE compression and decompression library rewritten in Rust based on miniz' CARGO_PKG_HOMEPAGE='https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide' CARGO_PKG_LICENSE='MIT OR Zlib OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=miniz_oxide CARGO_PKG_README=Readme.md CARGO_PKG_REPOSITORY='https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name miniz_oxide --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/miniz_oxide-0.7.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 debuginfo=2 --cfg 'feature="with-alloc"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "with-alloc"))' -C metadata=1aed742109c868e9 -C extra-filename=-1aed742109c868e9 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern adler=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libadler-86fb194915ca3f2c.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 253s warning: unused doc comment 253s --> /usr/share/cargo/registry/miniz_oxide-0.7.1/src/deflate/core.rs:430:13 253s | 253s 430 | / /// Put HuffmanOxide on the heap with default trick to avoid 253s 431 | | /// excessive stack copies. 253s | |_______________________________________^ 253s 432 | huff: Box::default(), 253s | -------------------- rustdoc does not generate documentation for expression fields 253s | 253s = help: use `//` for a plain comment 253s = note: `#[warn(unused_doc_comments)]` on by default 253s 253s warning: unused doc comment 253s --> /usr/share/cargo/registry/miniz_oxide-0.7.1/src/deflate/core.rs:524:13 253s | 253s 524 | / /// Put HuffmanOxide on the heap with default trick to avoid 253s 525 | | /// excessive stack copies. 253s | |_______________________________________^ 253s 526 | huff: Box::default(), 253s | -------------------- rustdoc does not generate documentation for expression fields 253s | 253s = help: use `//` for a plain comment 253s 253s warning: unexpected `cfg` condition name: `fuzzing` 253s --> /usr/share/cargo/registry/miniz_oxide-0.7.1/src/inflate/core.rs:1744:18 253s | 253s 1744 | if !cfg!(fuzzing) { 253s | ^^^^^^^ 253s | 253s = 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` 253s = help: consider using a Cargo feature instead 253s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 253s [lints.rust] 253s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } 253s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(fuzzing)");` to the top of the `build.rs` 253s = note: see for more information about checking conditional configuration 253s = note: `#[warn(unexpected_cfgs)]` on by default 253s 253s warning: unexpected `cfg` condition value: `simd` 253s --> /usr/share/cargo/registry/miniz_oxide-0.7.1/src/shared.rs:12:11 253s | 253s 12 | #[cfg(not(feature = "simd"))] 253s | ^^^^^^^^^^^^^^^^ 253s | 253s = note: expected values for `feature` are: `default`, `std`, and `with-alloc` 253s = help: consider adding `simd` as a feature in `Cargo.toml` 253s = note: see for more information about checking conditional configuration 253s 253s warning: unexpected `cfg` condition value: `simd` 253s --> /usr/share/cargo/registry/miniz_oxide-0.7.1/src/shared.rs:20:7 253s | 253s 20 | #[cfg(feature = "simd")] 253s | ^^^^^^^^^^^^^^^^ 253s | 253s = note: expected values for `feature` are: `default`, `std`, and `with-alloc` 253s = help: consider adding `simd` as a feature in `Cargo.toml` 253s = note: see for more information about checking conditional configuration 253s 253s warning: elided lifetime has a name 253s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/lr1/lane_table/table/mod.rs:46:65 253s | 253s 45 | impl<'grammar> LaneTable<'grammar> { 253s | -------- lifetime `'grammar` declared here 253s 46 | pub fn new(grammar: &'grammar Grammar, conflicts: usize) -> LaneTable { 253s | ^^^^^^^^^ this elided lifetime gets resolved as `'grammar` 253s | 253s = note: `#[warn(elided_named_lifetimes)]` on by default 253s 253s warning: unexpected `cfg` condition value: `test` 253s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/parser/mod.rs:7:11 253s | 253s 7 | #[cfg(not(feature = "test"))] 253s | ^^^^^^^^^^^^^^^^ 253s | 253s = note: expected values for `feature` are: `default`, `lexer`, `pico-args`, and `unicode` 253s = help: consider adding `test` as a feature in `Cargo.toml` 253s = note: see for more information about checking conditional configuration 253s = note: `#[warn(unexpected_cfgs)]` on by default 253s 253s warning: unexpected `cfg` condition value: `test` 253s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/parser/mod.rs:13:7 253s | 253s 13 | #[cfg(feature = "test")] 253s | ^^^^^^^^^^^^^^^^ 253s | 253s = note: expected values for `feature` are: `default`, `lexer`, `pico-args`, and `unicode` 253s = help: consider adding `test` as a feature in `Cargo.toml` 253s = note: see for more information about checking conditional configuration 253s 253s Compiling nettle-sys v2.2.0 253s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Justus Winter :Kai Michaelis ' CARGO_PKG_DESCRIPTION='Low-level Rust bindings for the Nettle cryptographic library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='LGPL-3.0 OR GPL-2.0 OR GPL-3.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nettle-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/nettle-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ea76b954dca499c7 -C extra-filename=-ea76b954dca499c7 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/nettle-sys-ea76b954dca499c7 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern bindgen=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libbindgen-4ca978167c15d654.rlib --extern cc=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libcc-6f10d64c68dac13e.rlib --extern pkg_config=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --extern tempfile=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libtempfile-9a32594d14703b98.rlib --cap-lints warn` 254s warning: `miniz_oxide` (lib) generated 6 warnings (1 duplicate) 254s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A JSON serialization file format' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_json CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/json' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.133 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=133 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/serde_json-d77da224bdd2f093/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/serde_json-2fa85724bf02f5ac/build-script-build` 254s [serde_json 1.0.133] cargo:rerun-if-changed=build.rs 254s [serde_json 1.0.133] cargo:rustc-check-cfg=cfg(fast_arithmetic, values("32", "64")) 254s [serde_json 1.0.133] cargo:rustc-cfg=fast_arithmetic="64" 254s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 254s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 254s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 254s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 254s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 254s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rayon-core-1.12.1 CARGO_MANIFEST_LINKS=rayon-core CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/rayon-core-ca8028b939b793e4/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/rayon-core-8b2bb024c126eec5/build-script-build` 254s [rayon-core 1.12.1] cargo:rerun-if-changed=build.rs 254s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/num-traits-449fccc4dba2b636/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/num-traits-53f63b4f6fe2c3cc/build-script-build` 254s warning: use of deprecated method `itertools::Itertools::group_by`: Use .chunk_by() instead 254s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/lr1/codegen/parse_table.rs:604:18 254s | 254s 604 | .group_by(|(_, (next_state, _))| *next_state); 254s | ^^^^^^^^ 254s | 254s = note: `#[warn(deprecated)]` on by default 254s 254s warning: use of deprecated method `itertools::Itertools::group_by`: Use .chunk_by() instead 254s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/lr1/codegen/parse_table.rs:625:18 254s | 254s 625 | .group_by(|(next_state, _)| *next_state)) 254s | ^^^^^^^^ 254s 254s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 254s [num-traits 0.2.19] | 254s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 254s [num-traits 0.2.19] 254s [num-traits 0.2.19] warning: 1 warning emitted 254s [num-traits 0.2.19] 254s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 254s [num-traits 0.2.19] | 254s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 254s [num-traits 0.2.19] 254s [num-traits 0.2.19] warning: 1 warning emitted 254s [num-traits 0.2.19] 254s [num-traits 0.2.19] cargo:rustc-cfg=has_total_cmp 254s [num-traits 0.2.19] cargo:rerun-if-changed=build.rs 254s Compiling ppv-lite86 v0.2.20 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=8b36c2c4a075d586 -C extra-filename=-8b36c2c4a075d586 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern zerocopy=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-94e2e239bc0e0ef7.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 254s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 254s Compiling crossbeam-deque v0.8.5 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crossbeam_deque CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crossbeam-deque-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name crossbeam_deque --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=0ff9995dcf6336b4 -C extra-filename=-0ff9995dcf6336b4 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern crossbeam_epoch=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_epoch-767d467412ccb9fe.rmeta --extern crossbeam_utils=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-cfdb990f93633e58.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 254s warning: `crossbeam-deque` (lib) generated 1 warning (1 duplicate) 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bzip2_sys CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Bindings to libbzip2 for bzip2 compression and decompression exposed as 254s Reader/Writer streams. 254s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bzip2-sys CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.11+1.0.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/bzip2-sys-ec12917218bcc159/out rustc --crate-name bzip2_sys --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/bzip2-sys-0.1.11/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("static"))' -C metadata=8daa33fad46db6a2 -C extra-filename=-8daa33fad46db6a2 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern libc=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblibc-5c144d8f845513d1.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -l bz2` 255s warning: `bzip2-sys` (lib) generated 1 warning (1 duplicate) 255s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/generic-array-f9e3eed400fe2d49/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/generic-array-f743f1594234f320/build-script-build` 255s [generic-array 0.14.7] cargo:rustc-cfg=relaxed_coherence 255s Compiling rand_core v0.6.4 255s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 255s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=084b2ad50be27103 -C extra-filename=-084b2ad50be27103 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern getrandom=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-5d7625c47b7ad091.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 255s | 255s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 255s | ^^^^^^^ 255s | 255s = 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` 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s = note: `#[warn(unexpected_cfgs)]` on by default 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 255s | 255s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 255s | ^^^^^^^ 255s | 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 255s | 255s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 255s | ^^^^^^^ 255s | 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 255s | 255s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 255s | ^^^^^^^ 255s | 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 255s | 255s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 255s | ^^^^^^^ 255s | 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s warning: unexpected `cfg` condition name: `doc_cfg` 255s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 255s | 255s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 255s | ^^^^^^^ 255s | 255s = help: consider using a Cargo feature instead 255s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 255s [lints.rust] 255s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 255s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 255s = note: see for more information about checking conditional configuration 255s 255s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.0 CARGO_MANIFEST_LINKS=nettle CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Justus Winter :Kai Michaelis ' CARGO_PKG_DESCRIPTION='Low-level Rust bindings for the Nettle cryptographic library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='LGPL-3.0 OR GPL-2.0 OR GPL-3.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nettle-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/nettle-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/nettle-sys-270a06f14cdc1bdb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/nettle-sys-ea76b954dca499c7/build-script-build` 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_NO_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=SYSROOT 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rustc-link-search=native=/usr/lib/s390x-linux-gnu 255s [nettle-sys 2.2.0] cargo:rustc-link-lib=nettle 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOGWEED_NO_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOGWEED_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOGWEED_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=SYSROOT 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOGWEED_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOGWEED_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rustc-link-search=native=/usr/lib/s390x-linux-gnu 255s [nettle-sys 2.2.0] cargo:rustc-link-lib=hogweed 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOGWEED_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOGWEED_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=GMP_NO_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=GMP_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=GMP_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=SYSROOT 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=GMP_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=GMP_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rustc-link-search=native=/usr/lib/s390x-linux-gnu 255s [nettle-sys 2.2.0] cargo:rustc-link-lib=gmp 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=GMP_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=GMP_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_HAVE_CV448 255s [nettle-sys 2.2.0] OPT_LEVEL = Some(0) 255s [nettle-sys 2.2.0] TARGET = Some(s390x-unknown-linux-gnu) 255s [nettle-sys 2.2.0] OUT_DIR = Some(/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/nettle-sys-270a06f14cdc1bdb/out) 255s [nettle-sys 2.2.0] HOST = Some(s390x-unknown-linux-gnu) 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] CC_s390x-unknown-linux-gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] CC_s390x_unknown_linux_gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_CC 255s [nettle-sys 2.2.0] HOST_CC = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC 255s [nettle-sys 2.2.0] CC = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT 255s [nettle-sys 2.2.0] RUSTC_WRAPPER = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS 255s [nettle-sys 2.2.0] CRATE_CC_NO_DEFAULTS = None 255s [nettle-sys 2.2.0] DEBUG = Some(true) 255s [nettle-sys 2.2.0] CARGO_CFG_TARGET_FEATURE = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CFLAGS_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] CFLAGS_s390x-unknown-linux-gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CFLAGS_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] CFLAGS_s390x_unknown_linux_gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_CFLAGS 255s [nettle-sys 2.2.0] HOST_CFLAGS = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CFLAGS 255s [nettle-sys 2.2.0] CFLAGS = Some(-g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/usr/share/cargo/registry/sequoia-openpgp-1.21.2=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection) 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_SHELL_ESCAPED_FLAGS 255s [nettle-sys 2.2.0] CC_SHELL_ESCAPED_FLAGS = None 255s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 255s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_automata CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/regex-automata-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name regex_automata --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=e2fd649d018d9e86 -C extra-filename=-e2fd649d018d9e86 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern aho_corasick=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libaho_corasick-fbc72b3c6b57956b.rmeta --extern memchr=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-9dfbaa7dc96bc3ae.rmeta --extern regex_syntax=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libregex_syntax-4fc5539eea58731c.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_HAVE_OCB 255s [nettle-sys 2.2.0] OPT_LEVEL = Some(0) 255s [nettle-sys 2.2.0] TARGET = Some(s390x-unknown-linux-gnu) 255s [nettle-sys 2.2.0] OUT_DIR = Some(/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/nettle-sys-270a06f14cdc1bdb/out) 255s [nettle-sys 2.2.0] HOST = Some(s390x-unknown-linux-gnu) 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] CC_s390x-unknown-linux-gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] CC_s390x_unknown_linux_gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_CC 255s [nettle-sys 2.2.0] HOST_CC = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC 255s [nettle-sys 2.2.0] CC = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT 255s [nettle-sys 2.2.0] RUSTC_WRAPPER = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS 255s [nettle-sys 2.2.0] CRATE_CC_NO_DEFAULTS = None 255s [nettle-sys 2.2.0] DEBUG = Some(true) 255s [nettle-sys 2.2.0] CARGO_CFG_TARGET_FEATURE = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CFLAGS_s390x-unknown-linux-gnu 255s [nettle-sys 2.2.0] CFLAGS_s390x-unknown-linux-gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CFLAGS_s390x_unknown_linux_gnu 255s [nettle-sys 2.2.0] CFLAGS_s390x_unknown_linux_gnu = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=HOST_CFLAGS 255s [nettle-sys 2.2.0] HOST_CFLAGS = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CFLAGS 255s [nettle-sys 2.2.0] CFLAGS = Some(-g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/usr/share/cargo/registry/sequoia-openpgp-1.21.2=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection) 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=CC_SHELL_ESCAPED_FLAGS 255s [nettle-sys 2.2.0] CC_SHELL_ESCAPED_FLAGS = None 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_STATIC 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=OUT_DIR 255s [nettle-sys 2.2.0] cargo:rerun-if-env-changed=NETTLE_PREGENERATED_BINDINGS 256s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 256s Compiling thiserror-impl v1.0.69 256s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e53334bd0627d1f8 -C extra-filename=-e53334bd0627d1f8 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern proc_macro2=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libsyn-bf80c81dd6cb2291.rlib --extern proc_macro --cap-lints warn` 256s warning: field `token_span` is never read 256s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/grammar/repr.rs:57:9 256s | 256s 20 | pub struct Grammar { 256s | ------- field in this struct 256s ... 256s 57 | pub token_span: Span, 256s | ^^^^^^^^^^ 256s | 256s = note: `Grammar` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 256s = note: `#[warn(dead_code)]` on by default 256s 256s warning: field `name` is never read 256s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/grammar/repr.rs:89:9 256s | 256s 88 | pub struct NonterminalData { 256s | --------------- field in this struct 256s 89 | pub name: NonterminalString, 256s | ^^^^ 256s | 256s = note: `NonterminalData` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 256s 256s warning: field `0` is never read 256s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/parser/mod.rs:29:13 256s | 256s 29 | TypeRef(TypeRef), 256s | ------- ^^^^^^^ 256s | | 256s | field in this variant 256s | 256s help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field 256s | 256s 29 | TypeRef(()), 256s | ~~ 256s 256s warning: field `0` is never read 256s --> /tmp/tmp.0FnhCu4C2v/registry/lalrpop-0.20.2/src/parser/mod.rs:30:25 256s | 256s 30 | GrammarWhereClauses(Vec>), 256s | ------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^ 256s | | 256s | field in this variant 256s | 256s help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field 256s | 256s 30 | GrammarWhereClauses(()), 256s | ~~ 256s 258s [nettle-sys 2.2.0] Failed to run rustfmt: No such file or directory (os error 2) (non-fatal, continuing) 258s Compiling crc32fast v1.4.2 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=crc32fast CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/crc32fast-1.4.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/crc32fast-1.4.2/Cargo.toml CARGO_PKG_AUTHORS='Sam Rijs :Alex Crichton ' CARGO_PKG_DESCRIPTION='Fast, SIMD-accelerated CRC32 (IEEE) checksum computation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crc32fast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/srijs/rust-crc32fast' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.4.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name crc32fast --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/crc32fast-1.4.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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=f94a558862720a7a -C extra-filename=-f94a558862720a7a --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `crc32fast` (lib) generated 1 warning (1 duplicate) 258s Compiling half v2.4.1 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=half CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/half-2.4.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/half-2.4.1/Cargo.toml CARGO_PKG_AUTHORS='Kathryn Long ' CARGO_PKG_DESCRIPTION='Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=half CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/starkat99/half-rs' CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=2.4.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name half --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/half-2.4.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "bytemuck", "default", "num-traits", "rand_distr", "rkyv", "serde", "std"))' -C metadata=73d8f95faaf5aea9 -C extra-filename=-73d8f95faaf5aea9 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cfg_if=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: unexpected `cfg` condition value: `zerocopy` 258s --> /usr/share/cargo/registry/half-2.4.1/src/lib.rs:173:5 258s | 258s 173 | feature = "zerocopy", 258s | ^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `feature` are: `alloc`, `bytemuck`, `default`, `num-traits`, `rand_distr`, `rkyv`, `serde`, and `std` 258s = help: consider adding `zerocopy` as a feature in `Cargo.toml` 258s = note: see for more information about checking conditional configuration 258s = note: `#[warn(unexpected_cfgs)]` on by default 258s 258s warning: unexpected `cfg` condition value: `zerocopy` 258s --> /usr/share/cargo/registry/half-2.4.1/src/lib.rs:179:9 258s | 258s 179 | not(feature = "zerocopy"), 258s | ^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `feature` are: `alloc`, `bytemuck`, `default`, `num-traits`, `rand_distr`, `rkyv`, `serde`, and `std` 258s = help: consider adding `zerocopy` as a feature in `Cargo.toml` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/lib.rs:200:17 258s | 258s 200 | #![cfg_attr(not(target_arch = "spirv"), warn(missing_debug_implementations))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/lib.rs:216:11 258s | 258s 216 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:12:11 258s | 258s 12 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `zerocopy` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:22:7 258s | 258s 22 | #[cfg(feature = "zerocopy")] 258s | ^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `feature` are: `alloc`, `bytemuck`, `default`, `num-traits`, `rand_distr`, `rkyv`, `serde`, and `std` 258s = help: consider adding `zerocopy` as a feature in `Cargo.toml` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `zerocopy` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:45:12 258s | 258s 45 | #[cfg_attr(feature = "zerocopy", derive(AsBytes, FromBytes))] 258s | ^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `feature` are: `alloc`, `bytemuck`, `default`, `num-traits`, `rand_distr`, `rkyv`, `serde`, and `std` 258s = help: consider adding `zerocopy` as a feature in `Cargo.toml` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition name: `kani` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:46:12 258s | 258s 46 | #[cfg_attr(kani, derive(kani::Arbitrary))] 258s | ^^^^ 258s | 258s = 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` 258s = help: consider using a Cargo feature instead 258s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 258s [lints.rust] 258s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] } 258s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(kani)");` to the top of the `build.rs` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:918:11 258s | 258s 918 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:926:11 258s | 258s 926 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:933:11 258s | 258s 933 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:940:11 258s | 258s 940 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:947:11 258s | 258s 947 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:954:11 258s | 258s 954 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:961:11 258s | 258s 961 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:968:11 258s | 258s 968 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/bfloat.rs:975:11 258s | 258s 975 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:12:11 258s | 258s 12 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `zerocopy` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:22:7 258s | 258s 22 | #[cfg(feature = "zerocopy")] 258s | ^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `feature` are: `alloc`, `bytemuck`, `default`, `num-traits`, `rand_distr`, `rkyv`, `serde`, and `std` 258s = help: consider adding `zerocopy` as a feature in `Cargo.toml` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `zerocopy` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:44:12 258s | 258s 44 | #[cfg_attr(feature = "zerocopy", derive(AsBytes, FromBytes))] 258s | ^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `feature` are: `alloc`, `bytemuck`, `default`, `num-traits`, `rand_distr`, `rkyv`, `serde`, and `std` 258s = help: consider adding `zerocopy` as a feature in `Cargo.toml` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition name: `kani` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:45:12 258s | 258s 45 | #[cfg_attr(kani, derive(kani::Arbitrary))] 258s | ^^^^ 258s | 258s = help: consider using a Cargo feature instead 258s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 258s [lints.rust] 258s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] } 258s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(kani)");` to the top of the `build.rs` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:928:11 258s | 258s 928 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:936:11 258s | 258s 936 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:943:11 258s | 258s 943 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:950:11 258s | 258s 950 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:957:11 258s | 258s 957 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:964:11 258s | 258s 964 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:971:11 258s | 258s 971 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:978:11 258s | 258s 978 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/binary16.rs:985:11 258s | 258s 985 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:4:5 258s | 258s 4 | target_arch = "spirv", 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `IntegerFunctions2INTEL` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:6:9 258s | 258s 6 | target_feature = "IntegerFunctions2INTEL", 258s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_feature` are: `10e60`, `2e3`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `adx`, `aes`, `altivec`, `alu32`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-int8`, `amx-tile`, `atomics`, `avx`, `avx2`, `avx512bf16`, `avx512bitalg`, `avx512bw`, `avx512cd`, `avx512dq`, `avx512f`, `avx512fp16`, `avx512ifma`, `avx512vbmi`, `avx512vbmi2`, `avx512vl`, `avx512vnni`, `avx512vp2intersect`, and `avx512vpopcntdq` and 251 more 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `SPV_INTEL_shader_integer_functions2` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:7:9 258s | 258s 7 | target_feature = "SPV_INTEL_shader_integer_functions2" 258s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_feature` are: `10e60`, `2e3`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `adx`, `aes`, `altivec`, `alu32`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-int8`, `amx-tile`, `atomics`, `avx`, `avx2`, `avx512bf16`, `avx512bitalg`, `avx512bw`, `avx512cd`, `avx512dq`, `avx512f`, `avx512fp16`, `avx512ifma`, `avx512vbmi`, `avx512vbmi2`, `avx512vl`, `avx512vnni`, `avx512vp2intersect`, and `avx512vpopcntdq` and 251 more 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:16:5 258s | 258s 16 | target_arch = "spirv", 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `IntegerFunctions2INTEL` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:18:9 258s | 258s 18 | target_feature = "IntegerFunctions2INTEL", 258s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_feature` are: `10e60`, `2e3`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `adx`, `aes`, `altivec`, `alu32`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-int8`, `amx-tile`, `atomics`, `avx`, `avx2`, `avx512bf16`, `avx512bitalg`, `avx512bw`, `avx512cd`, `avx512dq`, `avx512f`, `avx512fp16`, `avx512ifma`, `avx512vbmi`, `avx512vbmi2`, `avx512vl`, `avx512vnni`, `avx512vp2intersect`, and `avx512vpopcntdq` and 251 more 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `SPV_INTEL_shader_integer_functions2` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:19:9 258s | 258s 19 | target_feature = "SPV_INTEL_shader_integer_functions2" 258s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_feature` are: `10e60`, `2e3`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `adx`, `aes`, `altivec`, `alu32`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-int8`, `amx-tile`, `atomics`, `avx`, `avx2`, `avx512bf16`, `avx512bitalg`, `avx512bw`, `avx512cd`, `avx512dq`, `avx512f`, `avx512fp16`, `avx512ifma`, `avx512vbmi`, `avx512vbmi2`, `avx512vl`, `avx512vnni`, `avx512vp2intersect`, and `avx512vpopcntdq` and 251 more 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:30:9 258s | 258s 30 | target_arch = "spirv", 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `IntegerFunctions2INTEL` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:32:13 258s | 258s 32 | target_feature = "IntegerFunctions2INTEL", 258s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_feature` are: `10e60`, `2e3`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `adx`, `aes`, `altivec`, `alu32`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-int8`, `amx-tile`, `atomics`, `avx`, `avx2`, `avx512bf16`, `avx512bitalg`, `avx512bw`, `avx512cd`, `avx512dq`, `avx512f`, `avx512fp16`, `avx512ifma`, `avx512vbmi`, `avx512vbmi2`, `avx512vl`, `avx512vnni`, `avx512vp2intersect`, and `avx512vpopcntdq` and 251 more 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `SPV_INTEL_shader_integer_functions2` 258s --> /usr/share/cargo/registry/half-2.4.1/src/leading_zeros.rs:33:13 258s | 258s 33 | target_feature = "SPV_INTEL_shader_integer_functions2" 258s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_feature` are: `10e60`, `2e3`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `adx`, `aes`, `altivec`, `alu32`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-int8`, `amx-tile`, `atomics`, `avx`, `avx2`, `avx512bf16`, `avx512bitalg`, `avx512bw`, `avx512cd`, `avx512dq`, `avx512f`, `avx512fp16`, `avx512ifma`, `avx512vbmi`, `avx512vbmi2`, `avx512vl`, `avx512vnni`, `avx512vp2intersect`, and `avx512vpopcntdq` and 251 more 258s = note: see for more information about checking conditional configuration 258s 258s warning: unexpected `cfg` condition value: `spirv` 258s --> /usr/share/cargo/registry/half-2.4.1/src/lib.rs:238:15 258s | 258s 238 | #[cfg(not(target_arch = "spirv"))] 258s | ^^^^^^^^^^^^^^^^^^^^^ 258s | 258s = note: expected values for `target_arch` are: `aarch64`, `arm`, `arm64ec`, `avr`, `bpf`, `csky`, `hexagon`, `loongarch64`, `m68k`, `mips`, `mips32r6`, `mips64`, `mips64r6`, `msp430`, `nvptx64`, `powerpc`, `powerpc64`, `riscv32`, `riscv64`, `s390x`, `sparc`, `sparc64`, `wasm32`, `wasm64`, `x86`, `x86_64`, and `xtensa` 258s = note: see for more information about checking conditional configuration 258s 258s warning: `half` (lib) generated 41 warnings (1 duplicate) 258s Compiling sha1collisiondetection v0.3.2 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2/Cargo.toml CARGO_PKG_AUTHORS='Marc Stevens :Dan Shumow :Justus Winter ' CARGO_PKG_DESCRIPTION='SHA-1 hash function with collision detection and mitigation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1collisiondetection CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/sha1collisiondetection' CARGO_PKG_RUST_VERSION=1.60 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clap", "clap_mangen", "const-oid", "default", "digest", "digest-trait", "oid", "std"))' -C metadata=893511a9e2c0750d -C extra-filename=-893511a9e2c0750d --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/sha1collisiondetection-893511a9e2c0750d -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 258s Compiling ryu v1.0.15 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ryu CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/ryu-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/ryu-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Fast floating point to string conversion' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR BSL-1.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ryu CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/ryu' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name ryu --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/ryu-1.0.15/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("no-panic", "small"))' -C metadata=f7d6c394ace5bca3 -C extra-filename=-f7d6c394ace5bca3 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `ryu` (lib) generated 1 warning (1 duplicate) 258s Compiling ciborium-io v0.2.2 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ciborium_io CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/ciborium-io-0.2.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/ciborium-io-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Nathaniel McCallum ' CARGO_PKG_DESCRIPTION='Simplified Read/Write traits for no_std usage' CARGO_PKG_HOMEPAGE='https://github.com/enarx/ciborium' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ciborium-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/enarx/ciborium' CARGO_PKG_RUST_VERSION=1.58 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.0FnhCu4C2v/target/debug/deps rustc --crate-name ciborium_io --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/ciborium-io-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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "std"))' -C metadata=3afddae67ee21420 -C extra-filename=-3afddae67ee21420 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `ciborium-io` (lib) generated 1 warning (1 duplicate) 258s Compiling clap_lex v0.7.4 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=clap_lex CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/clap_lex-0.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/clap_lex-0.7.4/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Minimal, flexible command line parser' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clap_lex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/clap-rs/clap' CARGO_PKG_RUST_VERSION=1.74 CARGO_PKG_VERSION=0.7.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name clap_lex --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/clap_lex-0.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 debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::uninlined_format_args' '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--allow=clippy::multiple_bound_locations' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' '--allow=clippy::blocks_in_conditions' '--allow=clippy::assigning_clones' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=fa2bd56e1b2ff099 -C extra-filename=-fa2bd56e1b2ff099 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `clap_lex` (lib) generated 1 warning (1 duplicate) 258s Compiling plotters-backend v0.3.7 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=plotters_backend CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/plotters-backend-0.3.7 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/plotters-backend-0.3.7/Cargo.toml CARGO_PKG_AUTHORS='Hao Hou ' CARGO_PKG_DESCRIPTION='Plotters Backend API' CARGO_PKG_HOMEPAGE='https://plotters-rs.github.io' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=plotters-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/plotters-rs/plotters' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name plotters_backend --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/plotters-backend-0.3.7/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=23de1354a6f0ef7f -C extra-filename=-23de1354a6f0ef7f --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `plotters-backend` (lib) generated 1 warning (1 duplicate) 258s Compiling anyhow v1.0.86 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/anyhow-1.0.86/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("backtrace", "default", "std"))' -C metadata=ce1e359b06d9faf4 -C extra-filename=-ce1e359b06d9faf4 --out-dir /tmp/tmp.0FnhCu4C2v/target/debug/build/anyhow-ce1e359b06d9faf4 -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn` 258s Compiling itoa v1.0.14 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=itoa CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/itoa-1.0.14 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/itoa-1.0.14/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Fast integer primitive to string conversion' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=itoa CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/itoa' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=1.0.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name itoa --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/itoa-1.0.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("no-panic"))' -C metadata=a82a426f214c0959 -C extra-filename=-a82a426f214c0959 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s Compiling anstyle v1.0.8 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=anstyle CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/anstyle-1.0.8 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/anstyle-1.0.8/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='ANSI text styling' CARGO_PKG_HOMEPAGE='https://github.com/rust-cli/anstyle' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anstyle CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-cli/anstyle.git' CARGO_PKG_RUST_VERSION=1.65.0 CARGO_PKG_VERSION=1.0.8 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name anstyle --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/anstyle-1.0.8/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 debuginfo=2 '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::single_match_else' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' --warn=rust_2018_idioms '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::match_wildcard_for_single_variants' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::items_after_statements' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=bd63b594ac2d723a -C extra-filename=-bd63b594ac2d723a --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `itoa` (lib) generated 1 warning (1 duplicate) 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=a324a1e73a699a31 -C extra-filename=-a324a1e73a699a31 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `anstyle` (lib) generated 1 warning (1 duplicate) 258s Compiling clap_builder v4.5.23 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=clap_builder CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/clap_builder-4.5.23 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/clap_builder-4.5.23/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A simple to use, efficient, and full-featured Command Line Argument Parser' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clap_builder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/clap-rs/clap' CARGO_PKG_RUST_VERSION=1.74 CARGO_PKG_VERSION=4.5.23 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=23 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name clap_builder --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/clap_builder-4.5.23/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 debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::uninlined_format_args' '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--allow=clippy::multiple_bound_locations' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' '--allow=clippy::blocks_in_conditions' '--allow=clippy::assigning_clones' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("cargo", "color", "debug", "default", "deprecated", "env", "error-context", "help", "std", "string", "suggestions", "unicode", "unstable-doc", "unstable-ext", "unstable-styles", "unstable-v5", "usage", "wrap_help"))' -C metadata=70b582d69257649a -C extra-filename=-70b582d69257649a --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern anstyle=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libanstyle-bd63b594ac2d723a.rmeta --extern clap_lex=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libclap_lex-fa2bd56e1b2ff099.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 258s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 258s Compiling unicode-normalization v0.1.22 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_normalization CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/unicode-normalization-0.1.22 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/unicode-normalization-0.1.22/Cargo.toml CARGO_PKG_AUTHORS='kwantam :Manish Goregaokar ' CARGO_PKG_DESCRIPTION='This crate provides functions for normalization of 258s Unicode strings, including Canonical and Compatible 258s Decomposition and Recomposition, as described in 258s Unicode Standard Annex #15. 258s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name unicode_normalization --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=f29ab9efad115d43 -C extra-filename=-f29ab9efad115d43 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern smallvec=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-a324a1e73a699a31.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 259s warning: `unicode-normalization` (lib) generated 1 warning (1 duplicate) 259s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_json CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A JSON serialization file format' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_json CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/json' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.133 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=133 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/serde_json-d77da224bdd2f093/out rustc --crate-name serde_json --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/serde_json-1.0.133/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "arbitrary_precision", "default", "float_roundtrip", "indexmap", "preserve_order", "raw_value", "std", "unbounded_depth"))' -C metadata=6a526c6c1aefd3b3 -C extra-filename=-6a526c6c1aefd3b3 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern itoa=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libitoa-a82a426f214c0959.rmeta --extern memchr=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-9dfbaa7dc96bc3ae.rmeta --extern ryu=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libryu-f7d6c394ace5bca3.rmeta --extern serde=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libserde-563443b1ce5d2a44.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg 'fast_arithmetic="64"' --check-cfg 'cfg(fast_arithmetic, values("32", "64"))'` 259s warning: `regex-automata` (lib) generated 1 warning (1 duplicate) 259s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/anyhow-1.0.86 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/anyhow-1.0.86/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.86 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=86 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/anyhow-0076587e9dd9f3d8/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/anyhow-ce1e359b06d9faf4/build-script-build` 259s [anyhow 1.0.86] cargo:rerun-if-changed=build/probe.rs 259s [anyhow 1.0.86] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 259s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) 259s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_fmt_arguments_as_str) 259s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_ptr_addr_of) 259s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint) 259s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(doc_cfg) 259s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(error_generic_member_access) 259s [anyhow 1.0.86] cargo:rustc-check-cfg=cfg(std_backtrace) 259s [anyhow 1.0.86] cargo:rustc-cfg=std_backtrace 259s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=d19b769b3f97a3fc -C extra-filename=-d19b769b3f97a3fc --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern thiserror_impl=/tmp/tmp.0FnhCu4C2v/target/debug/deps/libthiserror_impl-e53334bd0627d1f8.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 259s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 259s Compiling plotters-svg v0.3.7 259s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=plotters_svg CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/plotters-svg-0.3.7 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/plotters-svg-0.3.7/Cargo.toml CARGO_PKG_AUTHORS='Hao Hou ' CARGO_PKG_DESCRIPTION='Plotters SVG backend' CARGO_PKG_HOMEPAGE='https://plotters-rs.github.io' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=plotters-svg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/plotters-rs/plotters.git' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name plotters_svg --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/plotters-svg-0.3.7/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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bitmap_encoder", "debug", "image"))' -C metadata=fb258c067d4b65e3 -C extra-filename=-fb258c067d4b65e3 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern plotters_backend=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libplotters_backend-23de1354a6f0ef7f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 259s warning: `plotters-svg` (lib) generated 1 warning (1 duplicate) 259s Compiling ciborium-ll v0.2.2 259s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ciborium_ll CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/ciborium-ll-0.2.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/ciborium-ll-0.2.2/Cargo.toml CARGO_PKG_AUTHORS='Nathaniel McCallum ' CARGO_PKG_DESCRIPTION='Low-level CBOR codec primitives' CARGO_PKG_HOMEPAGE='https://github.com/enarx/ciborium' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ciborium-ll CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/enarx/ciborium' CARGO_PKG_RUST_VERSION=1.58 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.0FnhCu4C2v/target/debug/deps rustc --crate-name ciborium_ll --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/ciborium-ll-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "std"))' -C metadata=e40d342af0fe2a14 -C extra-filename=-e40d342af0fe2a14 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern ciborium_io=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libciborium_io-3afddae67ee21420.rmeta --extern half=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libhalf-73d8f95faaf5aea9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 260s warning: `ciborium-ll` (lib) generated 1 warning (1 duplicate) 260s Running `CARGO=/usr/lib/rust-1.84/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='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2--remap-path-prefix/tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2/Cargo.toml CARGO_PKG_AUTHORS='Marc Stevens :Dan Shumow :Justus Winter ' CARGO_PKG_DESCRIPTION='SHA-1 hash function with collision detection and mitigation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1collisiondetection CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/sha1collisiondetection' CARGO_PKG_RUST_VERSION=1.60 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='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.0FnhCu4C2v/target/debug/deps:/tmp/tmp.0FnhCu4C2v/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=4 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/sha1collisiondetection-b3961c1232439ffb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.0FnhCu4C2v/target/debug/build/sha1collisiondetection-893511a9e2c0750d/build-script-build` 260s Compiling flate2 v1.0.34 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=flate2 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/flate2-1.0.34 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/flate2-1.0.34/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton :Josh Triplett ' CARGO_PKG_DESCRIPTION='DEFLATE compression and decompression exposed as Read/BufRead/Write streams. 260s Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, 260s and raw deflate streams. 260s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/flate2-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=flate2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/flate2-rs' CARGO_PKG_RUST_VERSION=1.56.1 CARGO_PKG_VERSION=1.0.34 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name flate2 --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/flate2-1.0.34/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 debuginfo=2 --cfg 'feature="any_impl"' --cfg 'feature="default"' --cfg 'feature="miniz_oxide"' --cfg 'feature="rust_backend"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("any_impl", "any_zlib", "default", "libz-sys", "miniz-sys", "miniz_oxide", "rust_backend", "zlib", "zlib-default"))' -C metadata=9f4f46ffbad3981b -C extra-filename=-9f4f46ffbad3981b --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern crc32fast=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcrc32fast-f94a558862720a7a.rmeta --extern miniz_oxide=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libminiz_oxide-1aed742109c868e9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 260s warning: `flate2` (lib) generated 1 warning (1 duplicate) 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nettle_sys CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.0/Cargo.toml CARGO_PKG_AUTHORS='Justus Winter :Kai Michaelis ' CARGO_PKG_DESCRIPTION='Low-level Rust bindings for the Nettle cryptographic library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='LGPL-3.0 OR GPL-2.0 OR GPL-3.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nettle-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/nettle-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.2.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/nettle-sys-270a06f14cdc1bdb/out rustc --crate-name nettle_sys --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/nettle-sys-2.2.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f8ae748430e9ceab -C extra-filename=-f8ae748430e9ceab --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern libc=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblibc-5c144d8f845513d1.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu -l nettle -l hogweed -l gmp` 260s warning: `serde_json` (lib) generated 1 warning (1 duplicate) 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/regex-1.11.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 260s finite automata and guarantees linear time matching on all inputs. 260s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name regex --edition=2021 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --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=819b3905501357d4 -C extra-filename=-819b3905501357d4 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern aho_corasick=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libaho_corasick-fbc72b3c6b57956b.rmeta --extern memchr=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-9dfbaa7dc96bc3ae.rmeta --extern regex_automata=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libregex_automata-e2fd649d018d9e86.rmeta --extern regex_syntax=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libregex_syntax-4fc5539eea58731c.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 260s warning: `nettle-sys` (lib) generated 1 warning (1 duplicate) 260s Compiling rand_chacha v0.3.1 260s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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 260s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=57035d168c06bd1c -C extra-filename=-57035d168c06bd1c --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern ppv_lite86=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-8b36c2c4a075d586.rmeta --extern rand_core=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/librand_core-084b2ad50be27103.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 261s warning: `regex` (lib) generated 1 warning (1 duplicate) 261s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/generic-array-0.14.7 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/generic-array-f9e3eed400fe2d49/out rustc --crate-name generic_array --edition=2015 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("more_lengths", "serde", "zeroize"))' -C metadata=f3f323904e9155b7 -C extra-filename=-f3f323904e9155b7 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern typenum=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg relaxed_coherence` 261s warning: unexpected `cfg` condition name: `relaxed_coherence` 261s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:136:19 261s | 261s 136 | #[cfg(relaxed_coherence)] 261s | ^^^^^^^^^^^^^^^^^ 261s ... 261s 183 | / impl_from! { 261s 184 | | 1 => ::typenum::U1, 261s 185 | | 2 => ::typenum::U2, 261s 186 | | 3 => ::typenum::U3, 261s ... | 261s 215 | | 32 => ::typenum::U32 261s 216 | | } 261s | |_- in this macro invocation 261s | 261s = 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` 261s = help: consider using a Cargo feature instead 261s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 261s [lints.rust] 261s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 261s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 261s = note: see for more information about checking conditional configuration 261s = note: `#[warn(unexpected_cfgs)]` on by default 261s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 261s 261s warning: unexpected `cfg` condition name: `relaxed_coherence` 261s --> /usr/share/cargo/registry/generic-array-0.14.7/src/impls.rs:158:23 261s | 261s 158 | #[cfg(not(relaxed_coherence))] 261s | ^^^^^^^^^^^^^^^^^ 261s ... 261s 183 | / impl_from! { 261s 184 | | 1 => ::typenum::U1, 261s 185 | | 2 => ::typenum::U2, 261s 186 | | 3 => ::typenum::U3, 261s ... | 261s 215 | | 32 => ::typenum::U32 261s 216 | | } 261s | |_- in this macro invocation 261s | 261s = help: consider using a Cargo feature instead 261s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 261s [lints.rust] 261s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(relaxed_coherence)'] } 261s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(relaxed_coherence)");` to the top of the `build.rs` 261s = note: see for more information about checking conditional configuration 261s = note: this warning originates in the macro `impl_from` (in Nightly builds, run with -Z macro-backtrace for more info) 261s 261s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 261s Compiling bzip2 v0.4.4 261s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bzip2 CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/bzip2-0.4.4 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/bzip2-0.4.4/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Bindings to libbzip2 for bzip2 compression and decompression exposed as 261s Reader/Writer streams. 261s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bzip2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/bzip2-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name bzip2 --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/bzip2-0.4.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("static"))' -C metadata=83afe45cb14ce0ce -C extra-filename=-83afe45cb14ce0ce --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern bzip2_sys=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libbzip2_sys-8daa33fad46db6a2.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblibc-5c144d8f845513d1.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/lib.rs:74:7 261s | 261s 74 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s = note: `#[warn(unexpected_cfgs)]` on by default 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/lib.rs:77:7 261s | 261s 77 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:6:7 261s | 261s 6 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:8:7 261s | 261s 8 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:122:7 261s | 261s 122 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:135:7 261s | 261s 135 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:239:7 261s | 261s 239 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:252:7 261s | 261s 252 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:299:7 261s | 261s 299 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/bufread.rs:312:7 261s | 261s 312 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:6:7 261s | 261s 6 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:8:7 261s | 261s 8 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:79:7 261s | 261s 79 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:92:7 261s | 261s 92 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:150:7 261s | 261s 150 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:163:7 261s | 261s 163 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:214:7 261s | 261s 214 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/read.rs:227:7 261s | 261s 227 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/write.rs:6:7 261s | 261s 6 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/write.rs:8:7 261s | 261s 8 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/write.rs:154:7 261s | 261s 154 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/write.rs:168:7 261s | 261s 168 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/write.rs:290:7 261s | 261s 290 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition value: `tokio` 261s --> /usr/share/cargo/registry/bzip2-0.4.4/src/write.rs:304:7 261s | 261s 304 | #[cfg(feature = "tokio")] 261s | ^^^^^^^^^^^^^^^^^ 261s | 261s = note: expected values for `feature` are: `static` 261s = help: consider adding `tokio` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: `bzip2` (lib) generated 25 warnings (1 duplicate) 261s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rayon_core CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rayon-core-1.12.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/rayon-core-ca8028b939b793e4/out rustc --crate-name rayon_core --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=81e1b0e896dd4b85 -C extra-filename=-81e1b0e896dd4b85 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern crossbeam_deque=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_deque-0ff9995dcf6336b4.rmeta --extern crossbeam_utils=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcrossbeam_utils-cfdb990f93633e58.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 261s warning: `generic-array` (lib) generated 3 warnings (1 duplicate) 261s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/num-traits-449fccc4dba2b636/out rustc --crate-name num_traits --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/num-traits-0.2.19/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=197e916181f05a7f -C extra-filename=-197e916181f05a7f --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg has_total_cmp` 261s warning: unexpected `cfg` condition value: `web_spin_lock` 261s --> /usr/share/cargo/registry/rayon-core-1.12.1/src/lib.rs:106:11 261s | 261s 106 | #[cfg(not(feature = "web_spin_lock"))] 261s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 261s | 261s = note: no expected values for `feature` 261s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s = note: `#[warn(unexpected_cfgs)]` on by default 261s 261s warning: unexpected `cfg` condition value: `web_spin_lock` 261s --> /usr/share/cargo/registry/rayon-core-1.12.1/src/lib.rs:109:7 261s | 261s 109 | #[cfg(feature = "web_spin_lock")] 261s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 261s | 261s = note: no expected values for `feature` 261s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 261s = note: see for more information about checking conditional configuration 261s 261s warning: unexpected `cfg` condition name: `has_total_cmp` 261s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 261s | 261s 2305 | #[cfg(has_total_cmp)] 261s | ^^^^^^^^^^^^^ 261s ... 261s 2325 | totalorder_impl!(f64, i64, u64, 64); 261s | ----------------------------------- in this macro invocation 261s | 261s = 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` 261s = help: consider using a Cargo feature instead 261s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 261s [lints.rust] 261s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 261s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 261s = note: see for more information about checking conditional configuration 261s = note: `#[warn(unexpected_cfgs)]` on by default 261s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 261s 261s warning: unexpected `cfg` condition name: `has_total_cmp` 261s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 261s | 261s 2311 | #[cfg(not(has_total_cmp))] 261s | ^^^^^^^^^^^^^ 261s ... 261s 2325 | totalorder_impl!(f64, i64, u64, 64); 261s | ----------------------------------- in this macro invocation 261s | 261s = help: consider using a Cargo feature instead 261s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 261s [lints.rust] 261s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 261s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 261s = note: see for more information about checking conditional configuration 261s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 261s 261s warning: unexpected `cfg` condition name: `has_total_cmp` 261s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 261s | 261s 2305 | #[cfg(has_total_cmp)] 261s | ^^^^^^^^^^^^^ 261s ... 261s 2326 | totalorder_impl!(f32, i32, u32, 32); 261s | ----------------------------------- in this macro invocation 261s | 261s = help: consider using a Cargo feature instead 261s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 261s [lints.rust] 261s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 261s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 261s = note: see for more information about checking conditional configuration 261s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 261s 261s warning: unexpected `cfg` condition name: `has_total_cmp` 261s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 261s | 261s 2311 | #[cfg(not(has_total_cmp))] 261s | ^^^^^^^^^^^^^ 261s ... 261s 2326 | totalorder_impl!(f32, i32, u32, 32); 261s | ----------------------------------- in this macro invocation 261s | 261s = help: consider using a Cargo feature instead 261s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 261s [lints.rust] 261s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 261s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 261s = note: see for more information about checking conditional configuration 261s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 261s 261s warning: creating a shared reference to mutable static is discouraged 261s --> /usr/share/cargo/registry/rayon-core-1.12.1/src/registry.rs:167:33 261s | 261s 167 | .or_else(|err| unsafe { THE_REGISTRY.as_ref().ok_or(err) }) 261s | ^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static 261s | 261s = note: for more information, see 261s = 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 261s = note: `#[warn(static_mut_refs)]` on by default 261s 261s warning: creating a mutable reference to mutable static is discouraged 261s --> /usr/share/cargo/registry/rayon-core-1.12.1/src/registry.rs:194:55 261s | 261s 194 | .map(|registry: Arc| unsafe { &*THE_REGISTRY.get_or_insert(registry) }) 261s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static 261s | 261s = note: for more information, see 261s = 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 261s 262s warning: `clap_builder` (lib) generated 1 warning (1 duplicate) 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=itertools CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/itertools-0.13.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name itertools --edition=2018 /tmp/tmp.0FnhCu4C2v/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 debuginfo=2 --cfg 'feature="default"' --cfg 'feature="use_alloc"' --cfg 'feature="use_std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "use_alloc", "use_std"))' -C metadata=3fe74f4ee8f6c18a -C extra-filename=-3fe74f4ee8f6c18a --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern either=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libeither-0c433bde77a4eceb.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 262s warning: `num-traits` (lib) generated 5 warnings (1 duplicate) 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 262s warning: `rayon-core` (lib) generated 5 warnings (1 duplicate) 262s Compiling lazy_static v1.5.0 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lazy_static CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/lazy_static-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/lazy_static-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Marvin Löbel ' CARGO_PKG_DESCRIPTION='A macro for declaring lazily evaluated statics in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazy_static CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/lazy-static.rs' CARGO_PKG_RUST_VERSION='' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name lazy_static --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/lazy_static-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("spin", "spin_no_std"))' -C metadata=fa782e2884b94cf1 -C extra-filename=-fa782e2884b94cf1 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 262s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 262s Compiling cast v0.3.0 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cast CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/cast-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/cast-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='Jorge Aparicio ' CARGO_PKG_DESCRIPTION='Ergonomic, checked cast functions for primitive types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cast CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/japaric/cast.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name cast --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/cast-0.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("std"))' -C metadata=6dfca6d38127dd02 -C extra-filename=-6dfca6d38127dd02 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 262s warning: elided lifetime has a name 262s --> /usr/share/cargo/registry/lazy_static-1.5.0/src/inline_lazy.rs:26:43 262s | 262s 26 | pub fn get(&'static self, f: F) -> &T 262s | ^ this elided lifetime gets resolved as `'static` 262s | 262s = note: `#[warn(elided_named_lifetimes)]` on by default 262s help: consider specifying it explicitly 262s | 262s 26 | pub fn get(&'static self, f: F) -> &'static T 262s | +++++++ 262s 262s warning: `lazy_static` (lib) generated 2 warnings (1 duplicate) 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=same_file CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/same-file-1.0.6 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/same-file-1.0.6/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='A simple crate for determining whether two file paths point to the same file. 262s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/same-file' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=same-file CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/same-file' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.6 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name same_file --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/same-file-1.0.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f93f6c3cd86a7b55 -C extra-filename=-f93f6c3cd86a7b55 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 262s warning: lint `const_err` has been removed: converted into hard error, see issue #71800 for more information 262s --> /usr/share/cargo/registry/cast-0.3.0/src/lib.rs:91:10 262s | 262s 91 | #![allow(const_err)] 262s | ^^^^^^^^^ 262s | 262s = note: `#[warn(renamed_and_removed_lints)]` on by default 262s 262s warning: unused return value of `into_raw_fd` that must be used 262s --> /usr/share/cargo/registry/same-file-1.0.6/src/unix.rs:23:13 262s | 262s 23 | self.file.take().unwrap().into_raw_fd(); 262s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: losing the raw file descriptor may leak resources 262s = note: `#[warn(unused_must_use)]` on by default 262s help: use `let _ = ...` to ignore the resulting value 262s | 262s 23 | let _ = self.file.take().unwrap().into_raw_fd(); 262s | +++++++ 262s 262s warning: `same-file` (lib) generated 2 warnings (1 duplicate) 262s Compiling unicode-bidi v0.3.17 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_bidi CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/unicode-bidi-0.3.17 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name unicode_bidi --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --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=7e3dc4be196cec27 -C extra-filename=-7e3dc4be196cec27 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 262s warning: `cast` (lib) generated 2 warnings (1 duplicate) 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=walkdir CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/walkdir-2.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/walkdir-2.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Recursively walk a directory.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/walkdir' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=walkdir CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/walkdir' CARGO_PKG_RUST_VERSION='' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name walkdir --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/walkdir-2.5.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1882cd9ef228a7eb -C extra-filename=-1882cd9ef228a7eb --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern same_file=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libsame_file-f93f6c3cd86a7b55.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:1232:12 262s | 262s 1232 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s = note: `#[warn(unexpected_cfgs)]` on by default 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:1263:12 262s | 262s 1263 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:54:16 262s | 262s 54 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:69:16 262s | 262s 69 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:101:16 262s | 262s 101 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:161:16 262s | 262s 161 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:176:16 262s | 262s 176 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:225:16 262s | 262s 225 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:253:16 262s | 262s 253 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:269:16 262s | 262s 269 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:313:16 262s | 262s 313 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:343:16 262s | 262s 343 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:396:16 262s | 262s 396 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:409:16 262s | 262s 409 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:458:16 262s | 262s 458 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:484:16 262s | 262s 484 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:495:16 262s | 262s 495 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:507:16 262s | 262s 507 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/utf16.rs:520:16 262s | 262s 520 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/explicit.rs:33:12 262s | 262s 33 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/implicit.rs:26:12 262s | 262s 26 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/implicit.rs:262:12 262s | 262s 262 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/implicit.rs:581:12 262s | 262s 581 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/prepare.rs:53:12 262s | 262s 53 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:218:16 262s | 262s 218 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:233:16 262s | 262s 233 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:271:16 262s | 262s 271 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:335:11 262s | 262s 335 | #[cfg(feature = "flame_it")] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:436:11 262s | 262s 436 | #[cfg(feature = "flame_it")] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:341:15 262s | 262s 341 | #[cfg(feature = "flame_it")] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:347:15 262s | 262s 347 | #[cfg(feature = "flame_it")] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:481:16 262s | 262s 481 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:496:16 262s | 262s 496 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:545:16 262s | 262s 545 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:577:16 262s | 262s 577 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:593:16 262s | 262s 593 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:637:16 262s | 262s 637 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:667:16 262s | 262s 667 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:720:16 262s | 262s 720 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:733:16 262s | 262s 733 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:782:16 262s | 262s 782 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:808:16 262s | 262s 808 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:819:16 262s | 262s 819 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:833:16 262s | 262s 833 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: unexpected `cfg` condition value: `flame_it` 262s --> /usr/share/cargo/registry/unicode-bidi-0.3.17/src/lib.rs:846:16 262s | 262s 846 | #[cfg_attr(feature = "flame_it", flamer::flame)] 262s | ^^^^^^^^^^^^^^^^^^^^ 262s | 262s = note: expected values for `feature` are: `bench_it`, `default`, `hardcoded-data`, `serde`, `smallvec`, `std`, `unstable`, and `with_serde` 262s = help: consider adding `flame_it` as a feature in `Cargo.toml` 262s = note: see for more information about checking conditional configuration 262s 262s warning: `walkdir` (lib) generated 1 warning (1 duplicate) 262s Compiling idna v0.4.0 262s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=idna CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/idna-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name idna --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=33bb1fbd58e636ba -C extra-filename=-33bb1fbd58e636ba --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern unicode_bidi=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libunicode_bidi-7e3dc4be196cec27.rmeta --extern unicode_normalization=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libunicode_normalization-f29ab9efad115d43.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 263s warning: `unicode-bidi` (lib) generated 46 warnings (1 duplicate) 263s Compiling buffered-reader v1.3.1 263s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=buffered_reader CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/buffered-reader-1.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/buffered-reader-1.3.1/Cargo.toml CARGO_PKG_AUTHORS='Justus Winter :Kai Michaelis :Neal H. Walfield ' CARGO_PKG_DESCRIPTION='A super-powered Reader' CARGO_PKG_HOMEPAGE='https://sequoia-pgp.org/' CARGO_PKG_LICENSE=LGPL-2.0-or-later CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=buffered-reader CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/sequoia' CARGO_PKG_RUST_VERSION=1.67 CARGO_PKG_VERSION=1.3.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name buffered_reader --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/buffered-reader-1.3.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 debuginfo=2 --cfg 'feature="bzip2"' --cfg 'feature="compression-bzip2"' --cfg 'feature="compression-deflate"' --cfg 'feature="flate2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bzip2", "compression", "compression-bzip2", "compression-deflate", "default", "flate2"))' -C metadata=ccc9e709f624ab5a -C extra-filename=-ccc9e709f624ab5a --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern bzip2=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libbzip2-83afe45cb14ce0ce.rmeta --extern flate2=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libflate2-9f4f46ffbad3981b.rmeta --extern lazy_static=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblazy_static-fa782e2884b94cf1.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblibc-5c144d8f845513d1.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 263s warning: `buffered-reader` (lib) generated 1 warning (1 duplicate) 263s Compiling criterion-plot v0.5.0 263s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=criterion_plot CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/criterion-plot-0.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/criterion-plot-0.5.0/Cargo.toml CARGO_PKG_AUTHORS='Jorge Aparicio :Brook Heisler ' CARGO_PKG_DESCRIPTION='Criterion'\''s plotting library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=criterion-plot CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bheisler/criterion.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name criterion_plot --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/criterion-plot-0.5.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=eedf81d73ef6114d -C extra-filename=-eedf81d73ef6114d --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern cast=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libcast-6dfca6d38127dd02.rmeta --extern itertools=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libitertools-3fe74f4ee8f6c18a.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 263s warning: `itertools` (lib) generated 1 warning (1 duplicate) 263s Compiling plotters v0.3.7 263s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=plotters CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/plotters-0.3.7 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/plotters-0.3.7/Cargo.toml CARGO_PKG_AUTHORS='Hao Hou ' CARGO_PKG_DESCRIPTION='A Rust drawing library focus on data plotting for both WASM and native applications' CARGO_PKG_HOMEPAGE='https://plotters-rs.github.io/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=plotters CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/plotters-rs/plotters' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name plotters --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/plotters-0.3.7/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 debuginfo=2 --warn=unexpected_cfgs --allow=deprecated --check-cfg 'cfg(doc_cfg)' --cfg 'feature="area_series"' --cfg 'feature="line_series"' --cfg 'feature="plotters-svg"' --cfg 'feature="svg_backend"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ab_glyph", "all_elements", "all_series", "area_series", "bitmap_backend", "bitmap_encoder", "bitmap_gif", "boxplot", "candlestick", "chrono", "colormaps", "datetime", "default", "deprecated_items", "errorbar", "evcxr", "evcxr_bitmap", "font-kit", "fontconfig-dlopen", "full_palette", "histogram", "image", "lazy_static", "line_series", "once_cell", "pathfinder_geometry", "plotters-bitmap", "plotters-svg", "point_series", "surface_series", "svg_backend", "ttf", "ttf-parser"))' -C metadata=c500029a9d530ce5 -C extra-filename=-c500029a9d530ce5 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern num_traits=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libnum_traits-197e916181f05a7f.rmeta --extern plotters_backend=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libplotters_backend-23de1354a6f0ef7f.rmeta --extern plotters_svg=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libplotters_svg-fb258c067d4b65e3.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 263s warning: `idna` (lib) generated 1 warning (1 duplicate) 263s Compiling rayon v1.10.0 263s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rayon CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rayon-1.10.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name rayon --edition=2021 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=3f306ba7819324e3 -C extra-filename=-3f306ba7819324e3 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern either=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libeither-0c433bde77a4eceb.rmeta --extern rayon_core=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/librayon_core-81e1b0e896dd4b85.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 263s warning: unexpected `cfg` condition value: `web_spin_lock` 263s --> /usr/share/cargo/registry/rayon-1.10.0/src/iter/par_bridge.rs:1:11 263s | 263s 1 | #[cfg(not(feature = "web_spin_lock"))] 263s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 263s | 263s = note: no expected values for `feature` 263s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 263s = note: see for more information about checking conditional configuration 263s = note: `#[warn(unexpected_cfgs)]` on by default 263s 263s warning: unexpected `cfg` condition value: `web_spin_lock` 263s --> /usr/share/cargo/registry/rayon-1.10.0/src/iter/par_bridge.rs:4:7 263s | 263s 4 | #[cfg(feature = "web_spin_lock")] 263s | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition 263s | 263s = note: no expected values for `feature` 263s = help: consider adding `web_spin_lock` as a feature in `Cargo.toml` 263s = note: see for more information about checking conditional configuration 263s 263s warning: `criterion-plot` (lib) generated 1 warning (1 duplicate) 263s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=sha1collisiondetection CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2/Cargo.toml CARGO_PKG_AUTHORS='Marc Stevens :Dan Shumow :Justus Winter ' CARGO_PKG_DESCRIPTION='SHA-1 hash function with collision detection and mitigation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha1collisiondetection CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/sha1collisiondetection' CARGO_PKG_RUST_VERSION=1.60 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps OUT_DIR=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/build/sha1collisiondetection-b3961c1232439ffb/out rustc --crate-name sha1collisiondetection --edition=2021 /tmp/tmp.0FnhCu4C2v/registry/sha1collisiondetection-0.3.2/lib/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 debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clap", "clap_mangen", "const-oid", "default", "digest", "digest-trait", "oid", "std"))' -C metadata=12c1ef6124577767 -C extra-filename=-12c1ef6124577767 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern generic_array=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libgeneric_array-f3f323904e9155b7.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 263s warning: irrefutable `if let` pattern 263s --> /usr/share/cargo/registry/plotters-0.3.7/src/coord/ranged1d/types/numeric.rs:29:20 263s | 263s 29 | if let Ok(index) = Self::ValueType::try_from(index) { 263s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 263s ... 263s 344 | impl_discrete_trait!(RangedCoordusize); 263s | -------------------------------------- in this macro invocation 263s | 263s = note: this pattern will always match, so the `if let` is useless 263s = help: consider replacing the `if let` with a `let` 263s = note: `#[warn(irrefutable_let_patterns)]` on by default 263s = note: this warning originates in the macro `impl_discrete_trait` (in Nightly builds, run with -Z macro-backtrace for more info) 263s 264s warning: fields `0` and `1` are never read 264s --> /usr/share/cargo/registry/plotters-0.3.7/src/style/font/naive.rs:16:29 264s | 264s 16 | pub struct FontDataInternal(String, String); 264s | ---------------- ^^^^^^ ^^^^^^ 264s | | 264s | fields in this struct 264s | 264s = help: consider removing these fields 264s = note: `FontDataInternal` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis 264s = note: `#[warn(dead_code)]` on by default 264s 264s warning: assigning to `&T` is undefined behavior, consider using an `UnsafeCell` 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:315:5 264s | 264s 315 | / ::core::ptr::write_volatile(&*W.offset(t as isize) as *const uint32_t as 264s 316 | | *mut uint32_t, *temp); 264s | |_________________________________________________________^ 264s | 264s = note: for more information, visit 264s = note: `#[warn(invalid_reference_casting)]` on by default 264s 264s warning: assigning to `&T` is undefined behavior, consider using an `UnsafeCell` 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:346:5 264s | 264s 346 | / ::core::ptr::write_volatile(&*W.offset(t as isize) as *const uint32_t as 264s 347 | | *mut uint32_t, *temp); 264s | |_________________________________________________________^ 264s | 264s = note: for more information, visit 264s 264s warning: assigning to `&T` is undefined behavior, consider using an `UnsafeCell` 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:374:5 264s | 264s 374 | / ::core::ptr::write_volatile(&*W.offset(t as isize) as *const uint32_t as 264s 375 | | *mut uint32_t, *temp); 264s | |_________________________________________________________^ 264s | 264s = note: for more information, visit 264s 264s warning: assigning to `&T` is undefined behavior, consider using an `UnsafeCell` 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:402:5 264s | 264s 402 | / ::core::ptr::write_volatile(&*W.offset(t as isize) as *const uint32_t as 264s 403 | | *mut uint32_t, *temp); 264s | |_________________________________________________________^ 264s | 264s = note: for more information, visit 264s 264s warning: assigning to `&T` is undefined behavior, consider using an `UnsafeCell` 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:428:5 264s | 264s 428 | / ::core::ptr::write_volatile(&*W.offset(t as isize) as *const uint32_t as 264s 429 | | *mut uint32_t, *temp); 264s | |_________________________________________________________^ 264s | 264s = note: for more information, visit 264s 264s warning: creating a mutable reference to mutable static is discouraged 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:2325:21 264s | 264s 2325 | while (*sha1_dvs.as_mut_ptr().offset(i as isize)).dvType != 264s | ^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static 264s | 264s = note: for more information, see 264s = 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 264s = note: `#[warn(static_mut_refs)]` on by default 264s 264s warning: creating a mutable reference to mutable static is discouraged 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:2329:30 264s | 264s 2329 | ... (*sha1_dvs.as_mut_ptr().offset(i as isize)).maskb 264s | ^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static 264s | 264s = note: for more information, see 264s = 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 264s 264s warning: creating a mutable reference to mutable static is discouraged 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:2335:35 264s | 264s 2335 | ... (*sha1_dvs.as_mut_ptr().offset(i as 264s | ^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static 264s | 264s = note: for more information, see 264s = 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 264s 264s warning: creating a mutable reference to mutable static is discouraged 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:2341:47 264s | 264s 2341 | sha1_recompression_step((*sha1_dvs.as_mut_ptr().offset(i 264s | ^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static 264s | 264s = note: for more information, see 264s = 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 264s 264s warning: creating a mutable reference to mutable static is discouraged 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:2349:61 264s | 264s 2349 | ... (*ctx).states[(*sha1_dvs.as_mut_ptr().offset(i 264s | ^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static 264s | 264s = note: for more information, see 264s = 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 264s 264s warning: creating a shared reference to mutable static is discouraged 264s --> /usr/share/cargo/registry/sha1collisiondetection-0.3.2/lib/sha1.rs:2622:23 264s | 264s 2622 | SHA1DCUpdate(ctx, sha1_padding.as_ptr() as *const i8, 264s | ^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static 264s | 264s = note: for more information, see 264s = 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 264s 264s warning: `sha1collisiondetection` (lib) generated 12 warnings (1 duplicate) 264s Compiling rand v0.8.5 264s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/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. 264s ' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.0FnhCu4C2v/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 embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="small_rng"' --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=ec8aa151a8022fdd -C extra-filename=-ec8aa151a8022fdd --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern libc=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblibc-5c144d8f845513d1.rmeta --extern rand_chacha=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-57035d168c06bd1c.rmeta --extern rand_core=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/librand_core-084b2ad50be27103.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 264s warning: `plotters` (lib) generated 3 warnings (1 duplicate) 264s Compiling nettle v7.3.0 264s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nettle CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/nettle-7.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/nettle-7.3.0/Cargo.toml CARGO_PKG_AUTHORS='Kai Michaelis :Justus Winter ' CARGO_PKG_DESCRIPTION='Rust bindings for the Nettle cryptographic library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='LGPL-3.0 OR GPL-2.0 OR GPL-3.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nettle CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/sequoia-pgp/nettle-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=7.3.0 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name nettle --edition=2018 /tmp/tmp.0FnhCu4C2v/registry/nettle-7.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 debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c399a3d6bd49a6d2 -C extra-filename=-c399a3d6bd49a6d2 --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern getrandom=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-5d7625c47b7ad091.rmeta --extern libc=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/liblibc-5c144d8f845513d1.rmeta --extern nettle_sys=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libnettle_sys-f8ae748430e9ceab.rmeta --extern thiserror=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-d19b769b3f97a3fc.rmeta --extern typenum=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libtypenum-c66037e8139405ff.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu` 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 264s | 264s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s = note: `#[warn(unexpected_cfgs)]` on by default 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 264s | 264s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 264s | ^^^^^^^ 264s | 264s = 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` 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:181:12 264s | 264s 181 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 264s | 264s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `features` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 264s | 264s 162 | #[cfg(features = "nightly")] 264s | ^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: see for more information about checking conditional configuration 264s help: there is a config with a similar name and value 264s | 264s 162 | #[cfg(feature = "nightly")] 264s | ~~~~~~~ 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 264s | 264s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 264s | 264s 156 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 264s | 264s 158 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 264s | 264s 160 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 264s | 264s 162 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 264s | 264s 165 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 264s | 264s 167 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 264s | 264s 169 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 264s | 264s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 264s | 264s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 264s | 264s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 264s | 264s 112 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 264s | 264s 142 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 264s | 264s 144 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 264s | 264s 146 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 264s | 264s 148 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 264s | 264s 150 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 264s | 264s 152 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 264s | 264s 155 | feature = "simd_support", 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 264s | 264s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 264s | 264s 144 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `std` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 264s | 264s 235 | #[cfg(not(std))] 264s | ^^^ help: found config with similar value: `feature = "std"` 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 264s | 264s 363 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 264s | 264s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 264s | ^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 264s | 264s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 264s | ^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 264s | 264s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 264s | ^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 264s | 264s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 264s | ^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 264s | 264s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 264s | ^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 264s | 264s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 264s | ^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 264s | 264s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 264s | ^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `std` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 264s | 264s 291 | #[cfg(not(std))] 264s | ^^^ help: found config with similar value: `feature = "std"` 264s ... 264s 359 | scalar_float_impl!(f32, u32); 264s | ---------------------------- in this macro invocation 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 264s 264s warning: unexpected `cfg` condition name: `std` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 264s | 264s 291 | #[cfg(not(std))] 264s | ^^^ help: found config with similar value: `feature = "std"` 264s ... 264s 360 | scalar_float_impl!(f64, u64); 264s | ---------------------------- in this macro invocation 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 264s | 264s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 264s | 264s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 264s | 264s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 264s | 264s 572 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 264s | 264s 679 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 264s | 264s 687 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 264s | 264s 696 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 264s | 264s 706 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 264s | 264s 1001 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 264s | 264s 1003 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 264s | 264s 1005 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 264s | 264s 1007 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 264s | 264s 1010 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 264s | 264s 1012 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition value: `simd_support` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 264s | 264s 1014 | #[cfg(feature = "simd_support")] 264s | ^^^^^^^^^^^^^^^^^^^^^^^^ 264s | 264s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 264s = help: consider adding `simd_support` as a feature in `Cargo.toml` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 264s | 264s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 264s | 264s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 264s | 264s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/small.rs:79:12 264s | 264s 79 | #[cfg_attr(doc_cfg, doc(cfg(feature = "small_rng")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/std.rs:32:12 264s | 264s 32 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std_rng")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:60:12 264s | 264s 60 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/thread.rs:87:12 264s | 264s 87 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "std", feature = "std_rng"))))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 264s | 264s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 264s | 264s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 264s | 264s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 264s | 264s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 264s | 264s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 264s | 264s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 264s | 264s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: unexpected `cfg` condition name: `doc_cfg` 264s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 264s | 264s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 264s | ^^^^^^^ 264s | 264s = help: consider using a Cargo feature instead 264s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 264s [lints.rust] 264s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 264s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 264s = note: see for more information about checking conditional configuration 264s 264s warning: trait `Float` is never used 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 264s | 264s 238 | pub(crate) trait Float: Sized { 264s | ^^^^^ 264s | 264s = note: `#[warn(dead_code)]` on by default 264s 264s warning: associated items `lanes`, `extract`, and `replace` are never used 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 264s | 264s 245 | pub(crate) trait FloatAsSIMD: Sized { 264s | ----------- associated items in this trait 264s 246 | #[inline(always)] 264s 247 | fn lanes() -> usize { 264s | ^^^^^ 264s ... 264s 255 | fn extract(self, index: usize) -> Self { 264s | ^^^^^^^ 264s ... 264s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 264s | ^^^^^^^ 264s 264s warning: method `all` is never used 264s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 264s | 264s 266 | pub(crate) trait BoolAsSIMD: Sized { 264s | ---------- method in this trait 264s 267 | fn any(self) -> bool; 264s 268 | fn all(self) -> bool; 264s | ^^^ 264s 265s warning: `nettle` (lib) generated 1 warning (1 duplicate) 265s Compiling tinytemplate v1.2.1 265s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tinytemplate CARGO_MANIFEST_DIR=/tmp/tmp.0FnhCu4C2v/registry/tinytemplate-1.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.0FnhCu4C2v/registry/tinytemplate-1.2.1/Cargo.toml CARGO_PKG_AUTHORS='Brook Heisler ' CARGO_PKG_DESCRIPTION='Simple, lightweight template engine' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tinytemplate CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bheisler/TinyTemplate' CARGO_PKG_RUST_VERSION='' 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='' LD_LIBRARY_PATH=/tmp/tmp.0FnhCu4C2v/target/debug/deps rustc --crate-name tinytemplate --edition=2015 /tmp/tmp.0FnhCu4C2v/registry/tinytemplate-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 embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=acabbb494078a39b -C extra-filename=-acabbb494078a39b --out-dir /tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.0FnhCu4C2v/target/debug/deps --extern serde=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libserde-563443b1ce5d2a44.rmeta --extern serde_json=/tmp/tmp.0FnhCu4C2v/target/s390x-unknown-linux-gnu/debug/deps/libserde_json-6a526c6c1aefd3b3.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/sequoia-openpgp-1.21.2=/usr/share/cargo/registry/sequoia-openpgp-1.21.2 --remap-path-prefix /tmp/tmp.0FnhCu4C2v/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 265s warning: elided lifetime has a name 265s --> /usr/share/cargo/registry/tinytemplate-1.2.1/src/template.rs:120:52 265s | 265s 118 | impl<'template> Template<'template> { 265s | --------- lifetime `'template` declared here 265s 119 | /// Create a Template from the given template string. 265s 120 | pub fn compile(text: &'template str) -> Result