0s autopkgtest: DBG: testbed init 0s autopkgtest [02:50:06]: starting date and time: 2025-02-08 02:50:06+0000 0s autopkgtest [02:50:06]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [02:50:06]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.a2qqp9mw/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:rust-rusty-pool --apt-upgrade rust-rusty-pool --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-16.secgroup --name adt-plucky-s390x-rust-rusty-pool-20250208-025005-juju-7f2275-prod-proposed-migration-environment-15-c9d37343-946f-46bf-b820-3a8ee96a19ef --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.U1T4ph 103s autopkgtest: DBG: sending command to testbed: print-execute-command 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.gbjwh3up/runcmd 103s autopkgtest: DBG: sending command to testbed: capabilities 103s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu reboot isolation-machine revert-full-system revert root-on-testbed 103s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'reboot', 'isolation-machine', 'revert-full-system', 'revert', 'root-on-testbed', 'has_internet'] 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.U1T4ph/wrapper.sh 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/wrapper.sh'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [02:51:49]: testbed dpkg architecture: s390x 103s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [02:51:50]: testbed apt version: 2.9.27ubuntu2 104s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed has eatmydata 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [02:51:50]: @@@@@@@@@@@@@@@@@@@@ test bed setup 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [02:51:50]: testbed release detected to be: None 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: adding APT source: Types: deb deb-src 104s URIs: http://ftpmaster.internal/ubuntu/ 104s Suites: plucky-proposed 104s Components: main restricted universe multiverse 104s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 104s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 500 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [02:51:51]: updating testbed package index (apt update) 105s 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'] 105s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 105s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 105s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 105s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 106s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [12.4 kB] 106s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [60.4 kB] 106s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [813 kB] 106s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [2428 B] 106s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [88.1 kB] 106s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [726 kB] 106s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [2680 B] 106s Fetched 1815 kB in 1s (1773 kB/s) 107s Reading package lists... 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 100 107s 107s Package: src:rust-rusty-pool:any 107s Pin: release plucky-proposed 107s Pin-Priority: 995 107s 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-rusty-pool:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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.U1T4ph/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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'] 107s + lsb_release --codename --short 107s + RELEASE=plucky 107s + cat 107s + [ plucky != trusty ] 107s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 107s Reading package lists... 107s Building dependency tree... 107s Reading state information... 107s Calculating upgrade... 108s The following packages will be upgraded: 108s apport apport-core-dump-handler python3-apport python3-problem-report 108s rsyslog 108s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s Need to get 752 kB of archives. 108s After this operation, 4096 B of additional disk space will be used. 108s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x python3-problem-report all 2.31.0-0ubuntu5 [25.5 kB] 108s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apport all 2.31.0-0ubuntu5 [93.1 kB] 108s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apport-core-dump-handler all 2.31.0-0ubuntu5 [18.4 kB] 108s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x apport all 2.31.0-0ubuntu5 [83.0 kB] 108s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2406.0-1ubuntu3 [532 kB] 109s Fetched 752 kB in 1s (711 kB/s) 109s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80963 files and directories currently installed.) 109s Preparing to unpack .../python3-problem-report_2.31.0-0ubuntu5_all.deb ... 109s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 109s for fn in glob1(directory, "%s.*" % fname): 109s Unpacking python3-problem-report (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 109s Preparing to unpack .../python3-apport_2.31.0-0ubuntu5_all.deb ... 109s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 109s for fn in glob1(directory, "%s.*" % fname): 109s Unpacking python3-apport (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 109s Preparing to unpack .../apport-core-dump-handler_2.31.0-0ubuntu5_all.deb ... 109s Unpacking apport-core-dump-handler (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 109s Preparing to unpack .../apport_2.31.0-0ubuntu5_all.deb ... 109s Unpacking apport (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 109s Preparing to unpack .../rsyslog_8.2406.0-1ubuntu3_s390x.deb ... 109s Unpacking rsyslog (8.2406.0-1ubuntu3) over (8.2406.0-1ubuntu2) ... 109s Setting up python3-problem-report (2.31.0-0ubuntu5) ... 109s Setting up rsyslog (8.2406.0-1ubuntu3) ... 109s Installing new version of config file /etc/apparmor.d/usr.sbin.rsyslogd ... 109s info: The user `syslog' is already a member of `adm'. 110s Setting up python3-apport (2.31.0-0ubuntu5) ... 110s Setting up apport-core-dump-handler (2.31.0-0ubuntu5) ... 111s Setting up apport (2.31.0-0ubuntu5) ... 112s apport-autoreport.service is a disabled or a static unit not running, not starting it. 112s Processing triggers for man-db (2.13.0-1) ... 113s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 113s + /usr/lib/apt/apt-helper analyze-pattern ?true 113s + uname -r 113s + sed s/\./\\./g 113s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 113s + apt list ?obsolete 113s + + cut -d/ -f1 113s tail -n+2 113s + grep -v ^linux-.*6\.12\.0-12-generic.* 113s + obsolete_pkgs=linux-image-6.11.0-8-generic 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s The following packages will be REMOVED: 113s linux-image-6.11.0-8-generic* 113s 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 113s After this operation, 10.5 MB disk space will be freed. 113s (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 ... 80963 files and directories currently installed.) 113s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 114s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-12-generic 114s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-12-generic 114s /etc/kernel/postrm.d/initramfs-tools: 114s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 114s /etc/kernel/postrm.d/zz-zipl: 114s Using config file '/etc/zipl.conf' 114s Building bootmap in '/boot' 114s Adding IPL section 'ubuntu' (default) 114s Preparing boot device for LD-IPL: vda (0000). 114s Done. 114s (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 ... 80959 files and directories currently installed.) 114s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 114s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 114s + grep -q trusty /etc/lsb-release 114s + [ ! -d /usr/share/doc/unattended-upgrades ] 114s + [ ! -d /usr/share/doc/lxd ] 114s + [ ! -d /usr/share/doc/lxd-client ] 114s + [ ! -d /usr/share/doc/snapd ] 114s + type iptables 114s + cat 114s + chmod 755 /etc/rc.local 114s + . /etc/rc.local 114s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 114s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 114s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 114s + uname -m 114s + [ s390x = ppc64le ] 114s + [ -d /run/systemd/system ] 114s + systemd-detect-virt --quiet --vm 114s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 114s + cat 114s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 114s + echo COMPRESS=lz4 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [02:52:00]: upgrading testbed (apt dist-upgrade and autopurge) 114s 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'] 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 114s Starting 2 pkgProblemResolver with broken count: 0 114s Done 115s Entering ResolveByKeep 115s 115s The following packages were automatically installed and are no longer required: 115s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 115s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 115s linux-tools-6.11.0-8-generic 115s Use 'sudo apt autoremove' to remove them. 115s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s autopkgtest: DBG: testbed command exited with code 0 115s 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'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 116s The following packages will be REMOVED: 116s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 116s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 116s linux-tools-6.11.0-8-generic* 116s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 116s After this operation, 143 MB disk space will be freed. 116s (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 ... 80959 files and directories currently installed.) 116s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 116s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 117s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 117s (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 ... 56552 files and directories currently installed.) 117s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.U1T4ph/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 1 118s autopkgtest [02:52:04]: rebooting testbed after setup commands that affected boot 118s autopkgtest: DBG: sending command to testbed: reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [02:52:22]: testbed running kernel: Linux 6.12.0-12-generic #12-Ubuntu SMP Wed Jan 22 15:18:24 UTC 2025 136s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.U1T4ph/testbed-packages"], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/testbed-packages /tmp/autopkgtest-work.a2qqp9mw/out/testbed-packages 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: Binaries: initialising 139s autopkgtest [02:52:25]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-rusty-pool 139s autopkgtest: DBG: blame += rust-rusty-pool 139s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 139s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-rusty-pool'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-rusty-pool-dev$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-rusty-pool-dev=0.7.0-9'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: install_deps: deps_new=[] 140s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s 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.U1T4ph/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-rusty-pool=0.7.0-9 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-rusty-pool_*.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-rusty-pool/0.7.0-9'] 140s + cd / 140s + mktemp -d /tmp/autopkgtest.U1T4ph/build.XXX 140s + builddir=/tmp/autopkgtest.U1T4ph/build.Edu 140s + cd /tmp/autopkgtest.U1T4ph/build.Edu 140s + apt-get source -d -q --only-source rust-rusty-pool=0.7.0-9 140s + OUT=Reading package lists... 140s NOTICE: 'rust-rusty-pool' packaging is maintained in the 'Git' version control system at: 140s https://salsa.debian.org/debian/rust-rusty-pool.git 140s Please use: 140s git clone https://salsa.debian.org/debian/rust-rusty-pool.git 140s to retrieve the latest (possibly unreleased) updates to the package. 140s Need to get 30.8 kB of source archives. 140s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (dsc) [2371 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (tar) [24.9 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (diff) [3508 B] 140s Fetched 30.8 kB in 0s (104 kB/s) 140s Download complete and in download only mode 140s + [ -n ] 140s + echo Reading package lists... 140s NOTICE: 'rust-rusty-pool' packaging is maintained in the 'Git' version control system at: 140s https://salsa.debian.org/debian/rust-rusty-pool.git 140s Please use: 140s git clone https://salsa.debian.org/debian/rust-rusty-pool.git 140s to retrieve the latest (possibly unreleased) updates to the package. 140s Need to get 30.8 kB of source archives. 140s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (dsc) [2371 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (tar) [24.9 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (diff) [3508 B] 140s Fetched 30.8 kB in 0s (104 kB/s) 140s Download complete and in download only mode 140s + grep ^Get: 140s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (dsc) [2371 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (tar) [24.9 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe rust-rusty-pool 0.7.0-9 (diff) [3508 B] 140s + dpkg-source -x rust-rusty-pool_0.7.0-9.dsc src 141s gpgv: Signature made Fri Feb 7 18:09:16 2025 UTC 141s gpgv: using RSA key 9FE3E9C36691A69FF53CC6842C7C3146C1A00121 141s gpgv: Can't check signature: No public key 141s dpkg-source: warning: cannot verify inline signature for ./rust-rusty-pool_0.7.0-9.dsc: no acceptable signature found 141s + chmod -R a+rX . 141s + cd src/. 141s + pwd 141s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [02:52:27]: testing package rust-rusty-pool version 0.7.0-9 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/build.Edu/src/debian/ /tmp/autopkgtest-work.a2qqp9mw/out/pkg/debian/ 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7:@ path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --all-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:@'] depends ['dh-rust', 'librust-rusty-pool-0.7-dev'] 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7: path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:'] depends ['dh-rust', 'librust-rusty-pool-0.7-dev'] 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7+async-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7:async path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --features async --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:async'] depends ['dh-rust', 'librust-rusty-pool-0.7+async-dev'] 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7+default-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7:default path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:default'] depends ['dh-rust', 'librust-rusty-pool-0.7+default-dev'] 141s autopkgtest [02:52:27]: build not needed 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/build.Edu/src/ /tmp/autopkgtest-work.a2qqp9mw/out/tests-tree/ 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7:@ path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --all-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:@'] depends ['dh-rust', 'librust-rusty-pool-0.7-dev'] 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7: path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:'] depends ['dh-rust', 'librust-rusty-pool-0.7-dev'] 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7+async-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7:async path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --features async --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:async'] depends ['dh-rust', 'librust-rusty-pool-0.7+async-dev'] 141s autopkgtest: DBG: processing dependency dh-rust 141s autopkgtest: DBG: processing dependency librust-rusty-pool-0.7+default-dev 141s autopkgtest: DBG: Test defined: name rust-rusty-pool-0.7:default path None command "/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test" restrictions ['allow-stderr'] features ['test-name=rust-rusty-pool-0.7:default'] depends ['dh-rust', 'librust-rusty-pool-0.7+default-dev'] 141s autopkgtest [02:52:27]: test rust-rusty-pool-0.7:@: preparing testbed 141s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-rust', 'librust-rusty-pool-0.7-dev'] 141s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 141s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-rusty-pool-0.7-dev'] 141s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-rusty-pool-0.7-dev 141s autopkgtest: DBG: can use apt-get on testbed: True 141s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-rusty-pool-0.7-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 141s Reading package lists... 141s Building dependency tree... 141s Reading state information... 142s Starting pkgProblemResolver with broken count: 0 142s Starting 2 pkgProblemResolver with broken count: 0 142s Done 142s The following NEW packages will be installed: 142s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 142s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 142s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 142s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 142s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 142s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 librust-ahash-dev 142s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 142s librust-byteorder-dev librust-cfg-if-dev librust-compiler-builtins-dev 142s librust-const-random-dev librust-const-random-macro-dev 142s librust-critical-section-dev librust-crossbeam-channel-dev 142s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 142s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 142s librust-derive-arbitrary-dev librust-either-dev librust-equivalent-dev 142s librust-erased-serde-dev librust-futures-channel-dev 142s librust-futures-core-dev librust-futures-dev librust-futures-executor-dev 142s librust-futures-io-dev librust-futures-macro-dev librust-futures-sink-dev 142s librust-futures-task-dev librust-futures-util-dev librust-getrandom-dev 142s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev librust-libc-dev 142s librust-log-dev librust-memchr-dev librust-no-panic-dev librust-num-cpus-dev 142s librust-once-cell-dev librust-parking-lot-core-dev 142s librust-pin-project-lite-dev librust-pin-utils-dev 142s librust-portable-atomic-dev librust-proc-macro2-dev librust-quote-dev 142s librust-rayon-core-dev librust-rayon-dev 142s librust-rustc-std-workspace-core-dev librust-rusty-pool-dev librust-ryu-dev 142s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 142s librust-serde-json-dev librust-serde-test-dev librust-slab-dev 142s librust-smallvec-dev librust-sval-buffer-dev librust-sval-derive-dev 142s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 142s librust-sval-ref-dev librust-sval-serde-dev librust-syn-dev 142s librust-tiny-keccak-dev librust-unicode-ident-dev librust-value-bag-dev 142s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 142s librust-version-check-dev librust-zerocopy-derive-dev librust-zerocopy-dev 142s libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 m4 po-debconf rustc 142s rustc-1.83 142s 0 upgraded, 114 newly installed, 0 to remove and 0 not upgraded. 142s Need to get 132 MB of archives. 142s After this operation, 507 MB of additional disk space will be used. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 143s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 143s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 144s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 145s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 167s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 171s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 171s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 171s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 171s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 171s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [5452 B] 171s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.1.0-2ubuntu1 [22.4 kB] 171s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 171s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 171s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 171s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 172s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 172s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 172s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 173s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 173s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1204 B] 173s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.1.0-2ubuntu1 [4996 B] 173s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 173s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 174s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 174s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 174s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 174s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 174s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-1 [20.2 kB] 174s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-1 [5068 B] 174s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-1 [49.9 kB] 174s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 174s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 174s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 174s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 174s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 174s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 174s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 174s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.10 [16.6 kB] 174s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 174s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 174s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 174s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 174s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 174s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 174s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 174s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 174s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 174s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 174s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 174s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 174s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 174s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 174s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 174s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 174s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 174s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 174s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 174s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 174s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 174s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 174s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 174s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 174s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 174s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 174s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 174s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 174s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 174s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 174s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-channel-dev s390x 0.5.14-1 [79.4 kB] 174s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 174s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 174s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 174s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 174s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 174s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 174s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-core-dev s390x 0.3.31-1 [16.9 kB] 174s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-sink-dev s390x 0.3.31-1 [10.1 kB] 174s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-channel-dev s390x 0.3.31-1 [32.1 kB] 174s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-task-dev s390x 0.3.31-3 [13.7 kB] 174s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-io-dev s390x 0.3.31-1 [11.2 kB] 174s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-macro-dev s390x 0.3.31-1 [13.4 kB] 174s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 174s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 174s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 174s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-3 [6956 B] 174s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 174s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 174s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 174s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 174s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 174s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 174s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.15-1 [41.7 kB] 174s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 174s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 174s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 174s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 174s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 174s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 175s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 175s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 175s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 175s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 175s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 175s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 175s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-utils-dev s390x 0.1.0-1 [9340 B] 175s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slab-dev s390x 0.4.9-1 [21.2 kB] 175s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-util-dev s390x 0.3.31-1 [129 kB] 175s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-cpus-dev s390x 1.16.0-1 [18.1 kB] 175s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-executor-dev s390x 0.3.31-1 [20.0 kB] 175s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-dev s390x 0.3.30-2 [53.2 kB] 175s Get:114 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x librust-rusty-pool-dev all 0.7.0-9 [21.9 kB] 175s Fetched 132 MB in 33s (4011 kB/s) 175s Selecting previously unselected package m4. 175s (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 ... 56552 files and directories currently installed.) 175s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 175s Unpacking m4 (1.4.19-5) ... 175s Selecting previously unselected package autoconf. 175s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 175s Unpacking autoconf (2.72-3) ... 176s Selecting previously unselected package autotools-dev. 176s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 176s Unpacking autotools-dev (20220109.1) ... 176s Selecting previously unselected package automake. 176s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 176s Unpacking automake (1:1.17-3) ... 176s Selecting previously unselected package autopoint. 176s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 176s Unpacking autopoint (0.23.1-1) ... 176s Selecting previously unselected package libgit2-1.8:s390x. 176s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 176s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 176s Selecting previously unselected package libstd-rust-1.83:s390x. 176s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 176s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 176s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 176s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 176s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 177s Selecting previously unselected package libisl23:s390x. 177s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 177s Unpacking libisl23:s390x (0.27-1) ... 177s Selecting previously unselected package libmpc3:s390x. 177s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 177s Unpacking libmpc3:s390x (1.3.1-1build2) ... 177s Selecting previously unselected package cpp-14-s390x-linux-gnu. 177s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package cpp-14. 177s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package cpp-s390x-linux-gnu. 177s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 177s Unpacking cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 177s Selecting previously unselected package cpp. 177s Preparing to unpack .../013-cpp_4%3a14.1.0-2ubuntu1_s390x.deb ... 177s Unpacking cpp (4:14.1.0-2ubuntu1) ... 177s Selecting previously unselected package libcc1-0:s390x. 177s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package libgomp1:s390x. 177s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package libitm1:s390x. 177s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package libasan8:s390x. 177s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package libubsan1:s390x. 177s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package libgcc-14-dev:s390x. 177s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 177s Selecting previously unselected package gcc-14-s390x-linux-gnu. 177s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 177s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 178s Selecting previously unselected package gcc-14. 178s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 178s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 178s Selecting previously unselected package gcc-s390x-linux-gnu. 178s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 178s Unpacking gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 178s Selecting previously unselected package gcc. 178s Preparing to unpack .../023-gcc_4%3a14.1.0-2ubuntu1_s390x.deb ... 178s Unpacking gcc (4:14.1.0-2ubuntu1) ... 178s Selecting previously unselected package rustc-1.83. 178s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 178s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 178s Selecting previously unselected package cargo-1.83. 178s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 178s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 178s Selecting previously unselected package libdebhelper-perl. 178s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 178s Unpacking libdebhelper-perl (13.23ubuntu1) ... 178s Selecting previously unselected package libtool. 178s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 178s Unpacking libtool (2.5.4-3build1) ... 178s Selecting previously unselected package dh-autoreconf. 178s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 178s Unpacking dh-autoreconf (20) ... 178s Selecting previously unselected package libarchive-zip-perl. 178s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 178s Unpacking libarchive-zip-perl (1.68-1) ... 178s Selecting previously unselected package libfile-stripnondeterminism-perl. 178s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-1_all.deb ... 178s Unpacking libfile-stripnondeterminism-perl (1.14.1-1) ... 178s Selecting previously unselected package dh-strip-nondeterminism. 178s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-1_all.deb ... 178s Unpacking dh-strip-nondeterminism (1.14.1-1) ... 178s Selecting previously unselected package debugedit. 178s Preparing to unpack .../032-debugedit_1%3a5.1-1_s390x.deb ... 178s Unpacking debugedit (1:5.1-1) ... 178s Selecting previously unselected package dwz. 178s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 178s Unpacking dwz (0.15-1build6) ... 178s Selecting previously unselected package gettext. 178s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 178s Unpacking gettext (0.23.1-1) ... 178s Selecting previously unselected package intltool-debian. 178s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 178s Unpacking intltool-debian (0.35.0+20060710.6) ... 178s Selecting previously unselected package po-debconf. 178s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 178s Unpacking po-debconf (1.0.21+nmu1) ... 178s Selecting previously unselected package debhelper. 178s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 178s Unpacking debhelper (13.23ubuntu1) ... 178s Selecting previously unselected package rustc. 178s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 178s Unpacking rustc (1.83.0ubuntu1) ... 178s Selecting previously unselected package cargo. 178s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 178s Unpacking cargo (1.83.0ubuntu1) ... 178s Selecting previously unselected package dh-rust. 178s Preparing to unpack .../040-dh-rust_0.0.10_all.deb ... 178s Unpacking dh-rust (0.0.10) ... 178s Selecting previously unselected package librust-critical-section-dev:s390x. 178s Preparing to unpack .../041-librust-critical-section-dev_1.2.0-1_s390x.deb ... 178s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 178s Selecting previously unselected package librust-unicode-ident-dev:s390x. 178s Preparing to unpack .../042-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 178s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 178s Selecting previously unselected package librust-proc-macro2-dev:s390x. 178s Preparing to unpack .../043-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 178s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 178s Selecting previously unselected package librust-quote-dev:s390x. 178s Preparing to unpack .../044-librust-quote-dev_1.0.37-1_s390x.deb ... 178s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 178s Selecting previously unselected package librust-syn-dev:s390x. 178s Preparing to unpack .../045-librust-syn-dev_2.0.96-2_s390x.deb ... 178s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 178s Selecting previously unselected package librust-serde-derive-dev:s390x. 178s Preparing to unpack .../046-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 178s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 178s Selecting previously unselected package librust-serde-dev:s390x. 178s Preparing to unpack .../047-librust-serde-dev_1.0.217-1_s390x.deb ... 178s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 178s Selecting previously unselected package librust-portable-atomic-dev:s390x. 178s Preparing to unpack .../048-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 178s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 178s Selecting previously unselected package librust-cfg-if-dev:s390x. 178s Preparing to unpack .../049-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 178s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 178s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 178s Preparing to unpack .../050-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 178s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 178s Selecting previously unselected package librust-libc-dev:s390x. 178s Preparing to unpack .../051-librust-libc-dev_0.2.169-1_s390x.deb ... 178s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 178s Selecting previously unselected package librust-getrandom-dev:s390x. 178s Preparing to unpack .../052-librust-getrandom-dev_0.2.15-1_s390x.deb ... 178s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 178s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 178s Preparing to unpack .../053-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 178s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 178s Selecting previously unselected package librust-arbitrary-dev:s390x. 178s Preparing to unpack .../054-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 178s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 178s Selecting previously unselected package librust-smallvec-dev:s390x. 178s Preparing to unpack .../055-librust-smallvec-dev_1.13.2-1_s390x.deb ... 178s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 178s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 178s Preparing to unpack .../056-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 178s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 178s Selecting previously unselected package librust-once-cell-dev:s390x. 178s Preparing to unpack .../057-librust-once-cell-dev_1.20.2-1_s390x.deb ... 178s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 178s Selecting previously unselected package librust-crunchy-dev:s390x. 178s Preparing to unpack .../058-librust-crunchy-dev_0.2.2-1_s390x.deb ... 178s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 178s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 178s Preparing to unpack .../059-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 178s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 178s Selecting previously unselected package librust-const-random-macro-dev:s390x. 178s Preparing to unpack .../060-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 178s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 178s Selecting previously unselected package librust-const-random-dev:s390x. 178s Preparing to unpack .../061-librust-const-random-dev_0.1.17-2_s390x.deb ... 178s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 178s Selecting previously unselected package librust-version-check-dev:s390x. 178s Preparing to unpack .../062-librust-version-check-dev_0.9.5-1_s390x.deb ... 178s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 178s Selecting previously unselected package librust-byteorder-dev:s390x. 178s Preparing to unpack .../063-librust-byteorder-dev_1.5.0-1_s390x.deb ... 178s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 178s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 178s Preparing to unpack .../064-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 178s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 178s Selecting previously unselected package librust-zerocopy-dev:s390x. 178s Preparing to unpack .../065-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 178s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 178s Selecting previously unselected package librust-ahash-dev. 178s Preparing to unpack .../066-librust-ahash-dev_0.8.11-9_all.deb ... 178s Unpacking librust-ahash-dev (0.8.11-9) ... 178s Selecting previously unselected package librust-allocator-api2-dev:s390x. 178s Preparing to unpack .../067-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 178s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 178s Selecting previously unselected package librust-autocfg-dev:s390x. 178s Preparing to unpack .../068-librust-autocfg-dev_1.1.0-1_s390x.deb ... 178s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 178s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 178s Preparing to unpack .../069-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 178s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 178s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 178s Preparing to unpack .../070-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 178s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 178s Selecting previously unselected package librust-crossbeam-channel-dev:s390x. 178s Preparing to unpack .../071-librust-crossbeam-channel-dev_0.5.14-1_s390x.deb ... 178s Unpacking librust-crossbeam-channel-dev:s390x (0.5.14-1) ... 178s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 178s Preparing to unpack .../072-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 178s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 178s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 178s Preparing to unpack .../073-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 178s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 178s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 178s Preparing to unpack .../074-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 178s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 178s Selecting previously unselected package librust-either-dev:s390x. 178s Preparing to unpack .../075-librust-either-dev_1.13.0-1_s390x.deb ... 178s Unpacking librust-either-dev:s390x (1.13.0-1) ... 178s Selecting previously unselected package librust-equivalent-dev:s390x. 178s Preparing to unpack .../076-librust-equivalent-dev_1.0.1-1_s390x.deb ... 178s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 178s Selecting previously unselected package librust-erased-serde-dev:s390x. 178s Preparing to unpack .../077-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 178s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 178s Selecting previously unselected package librust-futures-core-dev:s390x. 178s Preparing to unpack .../078-librust-futures-core-dev_0.3.31-1_s390x.deb ... 178s Unpacking librust-futures-core-dev:s390x (0.3.31-1) ... 179s Selecting previously unselected package librust-futures-sink-dev:s390x. 179s Preparing to unpack .../079-librust-futures-sink-dev_0.3.31-1_s390x.deb ... 179s Unpacking librust-futures-sink-dev:s390x (0.3.31-1) ... 179s Selecting previously unselected package librust-futures-channel-dev:s390x. 179s Preparing to unpack .../080-librust-futures-channel-dev_0.3.31-1_s390x.deb ... 179s Unpacking librust-futures-channel-dev:s390x (0.3.31-1) ... 179s Selecting previously unselected package librust-futures-task-dev:s390x. 179s Preparing to unpack .../081-librust-futures-task-dev_0.3.31-3_s390x.deb ... 179s Unpacking librust-futures-task-dev:s390x (0.3.31-3) ... 179s Selecting previously unselected package librust-futures-io-dev:s390x. 179s Preparing to unpack .../082-librust-futures-io-dev_0.3.31-1_s390x.deb ... 179s Unpacking librust-futures-io-dev:s390x (0.3.31-1) ... 179s Selecting previously unselected package librust-futures-macro-dev:s390x. 179s Preparing to unpack .../083-librust-futures-macro-dev_0.3.31-1_s390x.deb ... 179s Unpacking librust-futures-macro-dev:s390x (0.3.31-1) ... 179s Selecting previously unselected package librust-sval-derive-dev:s390x. 179s Preparing to unpack .../084-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 179s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 179s Selecting previously unselected package librust-sval-dev:s390x. 179s Preparing to unpack .../085-librust-sval-dev_2.6.1-2_s390x.deb ... 179s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 179s Selecting previously unselected package librust-sval-ref-dev:s390x. 179s Preparing to unpack .../086-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 179s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 179s Selecting previously unselected package librust-serde-fmt-dev. 179s Preparing to unpack .../087-librust-serde-fmt-dev_1.0.3-3_all.deb ... 179s Unpacking librust-serde-fmt-dev (1.0.3-3) ... 179s Selecting previously unselected package librust-rayon-core-dev:s390x. 179s Preparing to unpack .../088-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 179s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 179s Selecting previously unselected package librust-rayon-dev:s390x. 179s Preparing to unpack .../089-librust-rayon-dev_1.10.0-1_s390x.deb ... 179s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 179s Selecting previously unselected package librust-hashbrown-dev:s390x. 179s Preparing to unpack .../090-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 179s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 179s Selecting previously unselected package librust-indexmap-dev:s390x. 179s Preparing to unpack .../091-librust-indexmap-dev_2.7.0-1_s390x.deb ... 179s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 179s Selecting previously unselected package librust-no-panic-dev:s390x. 179s Preparing to unpack .../092-librust-no-panic-dev_0.1.32-1_s390x.deb ... 179s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 179s Selecting previously unselected package librust-itoa-dev:s390x. 179s Preparing to unpack .../093-librust-itoa-dev_1.0.14-1_s390x.deb ... 179s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 179s Selecting previously unselected package librust-ryu-dev:s390x. 179s Preparing to unpack .../094-librust-ryu-dev_1.0.15-1_s390x.deb ... 179s Unpacking librust-ryu-dev:s390x (1.0.15-1) ... 179s Selecting previously unselected package librust-serde-json-dev:s390x. 179s Preparing to unpack .../095-librust-serde-json-dev_1.0.133-1_s390x.deb ... 179s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 179s Selecting previously unselected package librust-serde-test-dev:s390x. 179s Preparing to unpack .../096-librust-serde-test-dev_1.0.171-1_s390x.deb ... 179s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 179s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 179s Preparing to unpack .../097-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 179s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 179s Selecting previously unselected package librust-sval-buffer-dev:s390x. 179s Preparing to unpack .../098-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 179s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 179s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 179s Preparing to unpack .../099-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 179s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 179s Selecting previously unselected package librust-sval-fmt-dev:s390x. 179s Preparing to unpack .../100-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 179s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 179s Selecting previously unselected package librust-sval-serde-dev:s390x. 179s Preparing to unpack .../101-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 179s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 179s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 179s Preparing to unpack .../102-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 179s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 179s Selecting previously unselected package librust-value-bag-dev:s390x. 179s Preparing to unpack .../103-librust-value-bag-dev_1.9.0-1_s390x.deb ... 179s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 179s Selecting previously unselected package librust-log-dev:s390x. 179s Preparing to unpack .../104-librust-log-dev_0.4.22-1_s390x.deb ... 179s Unpacking librust-log-dev:s390x (0.4.22-1) ... 179s Selecting previously unselected package librust-memchr-dev:s390x. 179s Preparing to unpack .../105-librust-memchr-dev_2.7.4-1_s390x.deb ... 179s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 179s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 179s Preparing to unpack .../106-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 179s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 179s Selecting previously unselected package librust-pin-utils-dev:s390x. 179s Preparing to unpack .../107-librust-pin-utils-dev_0.1.0-1_s390x.deb ... 179s Unpacking librust-pin-utils-dev:s390x (0.1.0-1) ... 179s Selecting previously unselected package librust-slab-dev:s390x. 179s Preparing to unpack .../108-librust-slab-dev_0.4.9-1_s390x.deb ... 179s Unpacking librust-slab-dev:s390x (0.4.9-1) ... 179s Selecting previously unselected package librust-futures-util-dev:s390x. 179s Preparing to unpack .../109-librust-futures-util-dev_0.3.31-1_s390x.deb ... 179s Unpacking librust-futures-util-dev:s390x (0.3.31-1) ... 179s Selecting previously unselected package librust-num-cpus-dev:s390x. 179s Preparing to unpack .../110-librust-num-cpus-dev_1.16.0-1_s390x.deb ... 179s Unpacking librust-num-cpus-dev:s390x (1.16.0-1) ... 179s Selecting previously unselected package librust-futures-executor-dev:s390x. 179s Preparing to unpack .../111-librust-futures-executor-dev_0.3.31-1_s390x.deb ... 179s Unpacking librust-futures-executor-dev:s390x (0.3.31-1) ... 179s Selecting previously unselected package librust-futures-dev:s390x. 179s Preparing to unpack .../112-librust-futures-dev_0.3.30-2_s390x.deb ... 179s Unpacking librust-futures-dev:s390x (0.3.30-2) ... 179s Selecting previously unselected package librust-rusty-pool-dev. 179s Preparing to unpack .../113-librust-rusty-pool-dev_0.7.0-9_all.deb ... 179s Unpacking librust-rusty-pool-dev (0.7.0-9) ... 179s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 179s Setting up librust-pin-utils-dev:s390x (0.1.0-1) ... 179s Setting up librust-either-dev:s390x (1.13.0-1) ... 179s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 179s Setting up librust-futures-task-dev:s390x (0.3.31-3) ... 179s Setting up libarchive-zip-perl (1.68-1) ... 179s Setting up libdebhelper-perl (13.23ubuntu1) ... 179s Setting up m4 (1.4.19-5) ... 179s Setting up librust-ryu-dev:s390x (1.0.15-1) ... 179s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 179s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 179s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 179s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 179s Setting up autotools-dev (20220109.1) ... 179s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 179s Setting up librust-futures-io-dev:s390x (0.3.31-1) ... 179s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 179s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 179s Setting up libmpc3:s390x (1.3.1-1build2) ... 179s Setting up autopoint (0.23.1-1) ... 179s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 179s Setting up librust-crossbeam-channel-dev:s390x (0.5.14-1) ... 179s Setting up autoconf (2.72-3) ... 179s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 179s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 179s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 179s Setting up dwz (0.15-1build6) ... 179s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 179s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 179s Setting up debugedit (1:5.1-1) ... 179s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 179s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 179s Setting up libisl23:s390x (0.27-1) ... 179s Setting up librust-futures-sink-dev:s390x (0.3.31-1) ... 179s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 179s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 179s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 179s Setting up automake (1:1.17-3) ... 179s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 179s Setting up libfile-stripnondeterminism-perl (1.14.1-1) ... 179s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 179s Setting up librust-libc-dev:s390x (0.2.169-1) ... 179s Setting up gettext (0.23.1-1) ... 179s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 179s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 179s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 179s Setting up librust-num-cpus-dev:s390x (1.16.0-1) ... 179s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 179s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 179s Setting up intltool-debian (0.35.0+20060710.6) ... 179s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 179s Setting up cpp-14 (14.2.0-16ubuntu1) ... 179s Setting up dh-strip-nondeterminism (1.14.1-1) ... 179s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 179s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 179s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 179s Setting up cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 179s Setting up po-debconf (1.0.21+nmu1) ... 179s Setting up librust-quote-dev:s390x (1.0.37-1) ... 179s Setting up librust-syn-dev:s390x (2.0.96-2) ... 179s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 179s Setting up gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 179s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 179s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 179s Setting up cpp (4:14.1.0-2ubuntu1) ... 179s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 179s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 179s Setting up librust-serde-dev:s390x (1.0.217-1) ... 179s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 179s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 179s Setting up librust-futures-macro-dev:s390x (0.3.31-1) ... 179s Setting up librust-serde-fmt-dev (1.0.3-3) ... 179s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 179s Setting up librust-sval-dev:s390x (2.6.1-2) ... 179s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 179s Setting up gcc-14 (14.2.0-16ubuntu1) ... 179s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 179s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 179s Setting up librust-slab-dev:s390x (0.4.9-1) ... 179s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 179s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 179s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 179s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 179s Setting up librust-futures-core-dev:s390x (0.3.31-1) ... 179s Setting up libtool (2.5.4-3build1) ... 179s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 179s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 179s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 179s Setting up gcc (4:14.1.0-2ubuntu1) ... 179s Setting up dh-autoreconf (20) ... 179s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 179s Setting up rustc (1.83.0ubuntu1) ... 179s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 179s Setting up librust-futures-channel-dev:s390x (0.3.31-1) ... 179s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 179s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 179s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 179s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 179s Setting up debhelper (13.23ubuntu1) ... 179s Setting up librust-ahash-dev (0.8.11-9) ... 179s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 179s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 179s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 179s Setting up cargo (1.83.0ubuntu1) ... 179s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 179s Setting up dh-rust (0.0.10) ... 179s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 179s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 179s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 179s Setting up librust-log-dev:s390x (0.4.22-1) ... 179s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 179s Setting up librust-futures-util-dev:s390x (0.3.31-1) ... 179s Setting up librust-futures-executor-dev:s390x (0.3.31-1) ... 179s Setting up librust-futures-dev:s390x (0.3.30-2) ... 179s Setting up librust-rusty-pool-dev (0.7.0-9) ... 179s Processing triggers for libc-bin (2.40-4ubuntu1) ... 179s Processing triggers for man-db (2.13.0-1) ... 180s Processing triggers for install-info (7.1.1-1) ... 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-packages.all"], kind short, sout raw, serr pipe, env [] 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A%40-packages.all /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3A%40-packages.all 181s autopkgtest: DBG: got reply from testbed: ok 181s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.U1T4ph/build.Edu/src'], kind short, sout raw, serr raw, env [] 181s autopkgtest: DBG: testbed command exited with code 0 181s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.U1T4ph/build.Edu/src already exists 181s autopkgtest [02:53:07]: test rust-rusty-pool-0.7:@: /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --all-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 181s autopkgtest [02:53:07]: test rust-rusty-pool-0.7:@: [----------------------- 181s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.U1T4ph/wrapper.sh --debug --artifacts=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-artifacts --chdir=/tmp/autopkgtest.U1T4ph/build.Edu/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-stderr --stdout=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-stdout --tmp=/tmp/autopkgtest.U1T4ph/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --all-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test'"], kind test, sout raw, serr raw, env [] 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-artifacts 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: changing to directory: /tmp/autopkgtest.U1T4ph/build.Edu/src 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: LANG=C.UTF-8 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LANGUAGE 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ADDRESS 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ALL 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_COLLATE 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_CTYPE 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_IDENTIFICATION 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MEASUREMENT 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MESSAGES 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MONETARY 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NAME 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NUMERIC 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_PAPER 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TELEPHONE 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TIME 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: pretending to be a login shell 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write standard error to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-stderr 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write stdout to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-stdout 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.U1T4ph/autopkgtest_tmp 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --all-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.7ZFyyVg8ok/out to stdout and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-stdout 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.7ZFyyVg8ok/err to standard error and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-stdout 181s /tmp/autopkgtest.U1T4ph/wrapper.sh: writing script pid 2411 to /tmp/autopkgtest_script_pid 181s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 181s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 181s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.S4PvKWe2ek/registry/ 181s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 181s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 181s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--all-features', '--no-fail-fast', '--', '--skip', 'tests::test_try_increment_worker_total', '--skip', 'tests::worker_count_test'],) {} 181s Compiling proc-macro2 v1.0.92 181s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.S4PvKWe2ek/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn` 181s Compiling unicode-ident v1.0.13 181s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.S4PvKWe2ek/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn` 181s Compiling autocfg v1.1.0 181s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/autocfg-1.1.0 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.S4PvKWe2ek/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ace755378c606d29 -C extra-filename=-ace755378c606d29 --out-dir /tmp/tmp.S4PvKWe2ek/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn` 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.S4PvKWe2ek/target/release/deps:/tmp/tmp.S4PvKWe2ek/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.S4PvKWe2ek/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 182s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 182s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 182s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 182s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.S4PvKWe2ek/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern unicode_ident=/tmp/tmp.S4PvKWe2ek/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 182s Compiling slab v0.4.9 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=6b14469cdbe1f65e -C extra-filename=-6b14469cdbe1f65e --out-dir /tmp/tmp.S4PvKWe2ek/target/release/build/slab-6b14469cdbe1f65e -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern autocfg=/tmp/tmp.S4PvKWe2ek/target/release/deps/libautocfg-ace755378c606d29.rlib --cap-lints warn` 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 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='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.S4PvKWe2ek/target/release/deps:/tmp/tmp.S4PvKWe2ek/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.S4PvKWe2ek/target/release/build/slab-6b14469cdbe1f65e/build-script-build` 182s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 182s [slab 0.4.9] | 182s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 182s [slab 0.4.9] 182s [slab 0.4.9] warning: 1 warning emitted 182s [slab 0.4.9] 182s Compiling futures-sink v0.3.31 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 182s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-sink-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-sink-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=e03363f514c75d32 -C extra-filename=-e03363f514c75d32 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 182s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 182s | 182s = note: this feature is not stably supported; its behavior can change in the future 182s 182s warning: `futures-sink` (lib) generated 1 warning 182s Compiling futures-core v0.3.31 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 182s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-core-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-core-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=d16d76e23453e348 -C extra-filename=-d16d76e23453e348 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 182s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 182s Compiling quote v1.0.37 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.S4PvKWe2ek/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern proc_macro2=/tmp/tmp.S4PvKWe2ek/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 182s Compiling syn v2.0.96 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=1e840a5d57ad3da8 -C extra-filename=-1e840a5d57ad3da8 --out-dir /tmp/tmp.S4PvKWe2ek/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern proc_macro2=/tmp/tmp.S4PvKWe2ek/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.S4PvKWe2ek/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.S4PvKWe2ek/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 182s Compiling futures-channel v0.3.31 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 182s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-channel-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-channel-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=d42437bdb693d8c2 -C extra-filename=-d42437bdb693d8c2 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern futures_core=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_sink=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 182s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 182s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out rustc --crate-name slab --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=1c4ff1cdfec01095 -C extra-filename=-1c4ff1cdfec01095 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 183s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 183s --> /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/src/lib.rs:250:15 183s | 183s 250 | #[cfg(not(slab_no_const_vec_new))] 183s | ^^^^^^^^^^^^^^^^^^^^^ 183s | 183s = 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` 183s = help: consider using a Cargo feature instead 183s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 183s [lints.rust] 183s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 183s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 183s = note: see for more information about checking conditional configuration 183s = note: `#[warn(unexpected_cfgs)]` on by default 183s 183s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 183s --> /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/src/lib.rs:264:11 183s | 183s 264 | #[cfg(slab_no_const_vec_new)] 183s | ^^^^^^^^^^^^^^^^^^^^^ 183s | 183s = help: consider using a Cargo feature instead 183s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 183s [lints.rust] 183s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 183s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 183s = note: see for more information about checking conditional configuration 183s 183s warning: unexpected `cfg` condition name: `slab_no_track_caller` 183s --> /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/src/lib.rs:929:20 183s | 183s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 183s | ^^^^^^^^^^^^^^^^^^^^ 183s | 183s = help: consider using a Cargo feature instead 183s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 183s [lints.rust] 183s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 183s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 183s = note: see for more information about checking conditional configuration 183s 183s warning: unexpected `cfg` condition name: `slab_no_track_caller` 183s --> /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/src/lib.rs:1098:20 183s | 183s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 183s | ^^^^^^^^^^^^^^^^^^^^ 183s | 183s = help: consider using a Cargo feature instead 183s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 183s [lints.rust] 183s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 183s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 183s = note: see for more information about checking conditional configuration 183s 183s warning: unexpected `cfg` condition name: `slab_no_track_caller` 183s --> /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/src/lib.rs:1206:20 183s | 183s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 183s | ^^^^^^^^^^^^^^^^^^^^ 183s | 183s = help: consider using a Cargo feature instead 183s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 183s [lints.rust] 183s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 183s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 183s = note: see for more information about checking conditional configuration 183s 183s warning: unexpected `cfg` condition name: `slab_no_track_caller` 183s --> /tmp/tmp.S4PvKWe2ek/registry/slab-0.4.9/src/lib.rs:1216:20 183s | 183s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 183s | ^^^^^^^^^^^^^^^^^^^^ 183s | 183s = help: consider using a Cargo feature instead 183s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 183s [lints.rust] 183s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 183s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 183s = note: see for more information about checking conditional configuration 183s 183s warning: `slab` (lib) generated 7 warnings (1 duplicate) 183s Compiling pin-utils v0.1.0 183s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 183s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/pin-utils-0.1.0 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9cfd72a719d295aa -C extra-filename=-9cfd72a719d295aa --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 183s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 183s Compiling futures-io v0.3.31 183s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 183s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-io-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-io-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=856e715f1261c1e4 -C extra-filename=-856e715f1261c1e4 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 183s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 183s Compiling crossbeam-utils v0.8.19 183s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=6a8f20fc0d620fc2 -C extra-filename=-6a8f20fc0d620fc2 --out-dir /tmp/tmp.S4PvKWe2ek/target/release/build/crossbeam-utils-6a8f20fc0d620fc2 -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn` 183s Compiling libc v0.2.169 183s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/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. 183s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7e8f0a655396b248 -C extra-filename=-7e8f0a655396b248 --out-dir /tmp/tmp.S4PvKWe2ek/target/release/build/libc-7e8f0a655396b248 -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn` 183s Compiling futures-task v0.3.31 183s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 183s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-task-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-task-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=5502b03b418f6215 -C extra-filename=-5502b03b418f6215 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 183s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 183s Compiling pin-project-lite v0.2.13 183s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 183s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 183s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 183s Compiling memchr v2.7.4 183s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/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 183s 1, 2 or 3 byte search and single substring search. 183s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 184s warning: `memchr` (lib) generated 1 warning (1 duplicate) 184s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/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. 184s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.S4PvKWe2ek/target/release/deps:/tmp/tmp.S4PvKWe2ek/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.S4PvKWe2ek/target/release/build/libc-7e8f0a655396b248/build-script-build` 184s [libc 0.2.169] cargo:rerun-if-changed=build.rs 184s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 184s [libc 0.2.169] cargo:rustc-cfg=freebsd11 184s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 184s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 184s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.S4PvKWe2ek/target/release/deps:/tmp/tmp.S4PvKWe2ek/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.S4PvKWe2ek/target/release/build/crossbeam-utils-6a8f20fc0d620fc2/build-script-build` 184s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 184s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=95f01987ba6e4ab0 -C extra-filename=-95f01987ba6e4ab0 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 184s | 184s 42 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s | 184s = 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` 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: `#[warn(unexpected_cfgs)]` on by default 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 184s | 184s 65 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/lib.rs:106:11 184s | 184s 106 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 184s | 184s 74 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 184s | 184s 78 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 184s | 184s 81 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 184s | 184s 7 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 184s | 184s 25 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 184s | 184s 28 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 184s | 184s 1 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 184s | 184s 27 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 184s | 184s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 184s | 184s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 184s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 184s | 184s 50 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 184s | 184s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 184s | 184s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 184s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 184s | 184s 101 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 184s | 184s 107 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 79 | impl_atomic!(AtomicBool, bool); 184s | ------------------------------ in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 79 | impl_atomic!(AtomicBool, bool); 184s | ------------------------------ in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 80 | impl_atomic!(AtomicUsize, usize); 184s | -------------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 80 | impl_atomic!(AtomicUsize, usize); 184s | -------------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 81 | impl_atomic!(AtomicIsize, isize); 184s | -------------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 81 | impl_atomic!(AtomicIsize, isize); 184s | -------------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 82 | impl_atomic!(AtomicU8, u8); 184s | -------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 82 | impl_atomic!(AtomicU8, u8); 184s | -------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 83 | impl_atomic!(AtomicI8, i8); 184s | -------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 83 | impl_atomic!(AtomicI8, i8); 184s | -------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 84 | impl_atomic!(AtomicU16, u16); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 84 | impl_atomic!(AtomicU16, u16); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 85 | impl_atomic!(AtomicI16, i16); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 85 | impl_atomic!(AtomicI16, i16); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 87 | impl_atomic!(AtomicU32, u32); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 87 | impl_atomic!(AtomicU32, u32); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 89 | impl_atomic!(AtomicI32, i32); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 89 | impl_atomic!(AtomicI32, i32); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 94 | impl_atomic!(AtomicU64, u64); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 94 | impl_atomic!(AtomicU64, u64); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 184s | 184s 66 | #[cfg(not(crossbeam_no_atomic))] 184s | ^^^^^^^^^^^^^^^^^^^ 184s ... 184s 99 | impl_atomic!(AtomicI64, i64); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 184s | 184s 71 | #[cfg(crossbeam_loom)] 184s | ^^^^^^^^^^^^^^ 184s ... 184s 99 | impl_atomic!(AtomicI64, i64); 184s | ---------------------------- in this macro invocation 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:7:11 184s | 184s 7 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:10:11 184s | 184s 10 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 184s warning: unexpected `cfg` condition name: `crossbeam_loom` 184s --> /tmp/tmp.S4PvKWe2ek/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:15:11 184s | 184s 15 | #[cfg(not(crossbeam_loom))] 184s | ^^^^^^^^^^^^^^ 184s | 184s = help: consider using a Cargo feature instead 184s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 184s [lints.rust] 184s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 184s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 184s = note: see for more information about checking conditional configuration 184s 185s warning: `crossbeam-utils` (lib) generated 44 warnings (1 duplicate) 185s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/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. 185s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps OUT_DIR=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out rustc --crate-name libc --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=8a14e953bd95a320 -C extra-filename=-8a14e953bd95a320 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 185s warning: unused import: `crate::ntptimeval` 185s --> /tmp/tmp.S4PvKWe2ek/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 185s | 185s 5 | use crate::ntptimeval; 185s | ^^^^^^^^^^^^^^^^^ 185s | 185s = note: `#[warn(unused_imports)]` on by default 185s 186s warning: `libc` (lib) generated 2 warnings (1 duplicate) 186s Compiling num_cpus v1.16.0 186s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=num_cpus CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/num_cpus-1.16.0 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/num_cpus-1.16.0/Cargo.toml CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='Get the number of CPUs on a machine.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num_cpus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/num_cpus' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.16.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=16 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/num_cpus-1.16.0 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name num_cpus --edition=2015 /tmp/tmp.S4PvKWe2ek/registry/num_cpus-1.16.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=aa8c4de8b3b224a9 -C extra-filename=-aa8c4de8b3b224a9 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern libc=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --cap-lints warn -Ctarget-feature=+backchain` 186s warning: unexpected `cfg` condition value: `nacl` 186s --> /tmp/tmp.S4PvKWe2ek/registry/num_cpus-1.16.0/src/lib.rs:355:5 186s | 186s 355 | target_os = "nacl", 186s | ^^^^^^^^^^^^^^^^^^ 186s | 186s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 186s = note: see for more information about checking conditional configuration 186s = note: `#[warn(unexpected_cfgs)]` on by default 186s 186s warning: unexpected `cfg` condition value: `nacl` 186s --> /tmp/tmp.S4PvKWe2ek/registry/num_cpus-1.16.0/src/lib.rs:437:5 186s | 186s 437 | target_os = "nacl", 186s | ^^^^^^^^^^^^^^^^^^ 186s | 186s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 186s = note: see for more information about checking conditional configuration 186s 187s Compiling futures-macro v0.3.31 187s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 187s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-macro-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-macro-0.3.31/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 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=05f86e4433211bfb -C extra-filename=-05f86e4433211bfb --out-dir /tmp/tmp.S4PvKWe2ek/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern proc_macro2=/tmp/tmp.S4PvKWe2ek/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.S4PvKWe2ek/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.S4PvKWe2ek/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 187s warning: `num_cpus` (lib) generated 3 warnings (1 duplicate) 187s Compiling crossbeam-channel v0.5.14 187s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_channel CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-channel-0.5.14 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-channel-0.5.14/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Multi-producer multi-consumer channels for message passing' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/crossbeam-channel-0.5.14 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name crossbeam_channel --edition=2021 /tmp/tmp.S4PvKWe2ek/registry/crossbeam-channel-0.5.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --warn=unexpected_cfgs '--allow=clippy::lint_groups_priority' '--allow=clippy::declare_interior_mutable_const' --check-cfg 'cfg(crossbeam_loom)' --check-cfg 'cfg(crossbeam_sanitize)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=f2bd7628ff2a2e38 -C extra-filename=-f2bd7628ff2a2e38 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern crossbeam_utils=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-95f01987ba6e4ab0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 187s Compiling futures-util v0.3.31 187s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 187s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-util-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="channel"' --cfg 'feature="futures-channel"' --cfg 'feature="futures-io"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="io"' --cfg 'feature="memchr"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=0ebb2f72c29b5aad -C extra-filename=-0ebb2f72c29b5aad --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern futures_channel=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rmeta --extern futures_core=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_io=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_io-856e715f1261c1e4.rmeta --extern futures_macro=/tmp/tmp.S4PvKWe2ek/target/release/deps/libfutures_macro-05f86e4433211bfb.so --extern futures_sink=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --extern futures_task=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern memchr=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern pin_project_lite=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern pin_utils=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libpin_utils-9cfd72a719d295aa.rmeta --extern slab=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libslab-1c4ff1cdfec01095.rmeta --cap-lints warn -Ctarget-feature=+backchain` 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/lib.rs:308:7 188s | 188s 308 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s = note: requested on the command line with `-W unexpected-cfgs` 188s 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 188s | 188s 6 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 188s | 188s 580 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: `crossbeam-channel` (lib) generated 1 warning (1 duplicate) 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 188s | 188s 6 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 188s | 188s 1154 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 188s | 188s 15 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 188s | 188s 291 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 188s | 188s 3 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 188s | 188s 92 | #[cfg(feature = "compat")] 188s | ^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `io-compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/io/mod.rs:19:7 188s | 188s 19 | #[cfg(feature = "io-compat")] 188s | ^^^^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `io-compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `io-compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/io/mod.rs:388:11 188s | 188s 388 | #[cfg(feature = "io-compat")] 188s | ^^^^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `io-compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 188s warning: unexpected `cfg` condition value: `io-compat` 188s --> /tmp/tmp.S4PvKWe2ek/registry/futures-util-0.3.31/src/io/mod.rs:547:11 188s | 188s 547 | #[cfg(feature = "io-compat")] 188s | ^^^^^^^^^^^^^^^^^^^^^ 188s | 188s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 188s = help: consider adding `io-compat` as a feature in `Cargo.toml` 188s = note: see for more information about checking conditional configuration 188s 190s Compiling futures-executor v0.3.31 190s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-executor-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-executor-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library. 190s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-executor-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures_executor --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-executor-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "num_cpus", "std", "thread-pool"))' -C metadata=39928b4d12caeb20 -C extra-filename=-39928b4d12caeb20 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern futures_core=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_task=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern futures_util=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_util-0ebb2f72c29b5aad.rmeta --cap-lints warn -Ctarget-feature=+backchain` 191s warning: `futures-util` (lib) generated 13 warnings (1 duplicate) 191s Compiling futures v0.3.30 191s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures CARGO_MANIFEST_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-0.3.30 CARGO_MANIFEST_PATH=/tmp/tmp.S4PvKWe2ek/registry/futures-0.3.30/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='An implementation of futures and streams featuring zero allocations, 191s composability, and iterator-like interfaces. 191s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.30 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=30 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.S4PvKWe2ek/registry/futures-0.3.30 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name futures --edition=2018 /tmp/tmp.S4PvKWe2ek/registry/futures-0.3.30/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="default"' --cfg 'feature="executor"' --cfg 'feature="futures-executor"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "bilock", "default", "executor", "futures-executor", "std", "thread-pool", "unstable", "write-all-vectored"))' -C metadata=92396590ce286f11 -C extra-filename=-92396590ce286f11 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern futures_channel=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rmeta --extern futures_core=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_executor=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_executor-39928b4d12caeb20.rmeta --extern futures_io=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_io-856e715f1261c1e4.rmeta --extern futures_sink=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --extern futures_task=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern futures_util=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_util-0ebb2f72c29b5aad.rmeta --cap-lints warn -Ctarget-feature=+backchain` 191s warning: unexpected `cfg` condition value: `compat` 191s --> /tmp/tmp.S4PvKWe2ek/registry/futures-0.3.30/src/lib.rs:206:7 191s | 191s 206 | #[cfg(feature = "compat")] 191s | ^^^^^^^^^^^^^^^^^^ 191s | 191s = note: expected values for `feature` are: `alloc`, `async-await`, `bilock`, `default`, `executor`, `futures-executor`, `std`, `thread-pool`, `unstable`, and `write-all-vectored` 191s = help: consider adding `compat` as a feature in `Cargo.toml` 191s = note: see for more information about checking conditional configuration 191s = note: `#[warn(unexpected_cfgs)]` on by default 191s 191s warning: `futures` (lib) generated 2 warnings (1 duplicate) 191s warning: `futures-executor` (lib) generated 1 warning (1 duplicate) 191s Compiling rusty_pool v0.7.0 (/usr/share/cargo/registry/rusty_pool-0.7.0) 191s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rusty_pool CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 LD_LIBRARY_PATH=/tmp/tmp.S4PvKWe2ek/target/release/deps rustc --crate-name rusty_pool --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no --test --cfg 'feature="async"' --cfg 'feature="default"' --cfg 'feature="futures"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async", "default", "futures"))' -C metadata=cfad8f891300b369 -C extra-filename=-cfad8f891300b369 --out-dir /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.S4PvKWe2ek/target/release/deps --extern crossbeam_channel=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_channel-f2bd7628ff2a2e38.rlib --extern futures=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures-92396590ce286f11.rlib --extern futures_channel=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rlib --extern futures_executor=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libfutures_executor-39928b4d12caeb20.rlib --extern num_cpus=/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/libnum_cpus-aa8c4de8b3b224a9.rlib -Ctarget-feature=+backchain` 191s warning: trait `ThreadSafe` is never used 191s --> src/lib.rs:136:7 191s | 191s 136 | trait ThreadSafe: Send {} 191s | ^^^^^^^^^^ 191s | 191s = note: `#[warn(dead_code)]` on by default 191s 193s warning: `rusty_pool` (lib test) generated 2 warnings (1 duplicate) 193s Finished `release` profile [optimized] target(s) in 11.92s 193s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.S4PvKWe2ek/target/s390x-unknown-linux-gnu/release/deps/rusty_pool-cfad8f891300b369 --skip 'tests::test_try_increment_worker_total' --skip 'tests::worker_count_test'` 193s 193s running 34 tests 193s test tests::stress_test ... ignored 193s test tests::test_builder_max_size ... ok 193s test tests::test_complete_fut ... ok 203s test tests::test_drop_all_receivers ... ok 213s test tests::test_drop_oneshot_receiver ... ok 213s test tests::test_empty_join ... ok 213s test tests::test_empty_shutdown_join ... ok 218s test tests::test_evaluate ... ok 218s test tests::test_evaluate_panic - should panic ... ok 233s test tests::it_works ... ok 243s test tests::test_join ... ok 278s test tests::test_full_usage has been running for over 60 seconds 293s test tests::test_full_usage ... ok 303s test tests::test_join_enqueued_task has been running for over 60 seconds 303s test tests::test_join_timeout ... ok 304s test tests::test_join_enqueued_task ... ok 308s test tests::test_join_when_complete ... ok 318s test tests::test_multiple_evaluate ... ok 323s test tests::test_panic_all ... ok 324s test tests::test_multi_thread_join ... ok 324s test tests::test_panic_on_0_max_pool_size - should panic ... ok 324s test tests::test_panic_on_max_size_exceeds_half_usize - should panic ... ok 324s test tests::test_panic_on_smaller_max_than_core_pool_size - should panic ... ok 333s test tests::test_panic_all_core_threads ... ok 339s test tests::test_panic_some ... ok 340s test tests::test_shutdown ... ok 344s test tests::test_shutdown_core_pool ... ok 344s test tests::test_shutdown_idle_core_pool ... ok 346s test tests::test_shutdown_after_complete ... ok 351s test tests::test_shutdown_join_timeout ... ok 354s test tests::test_shutdown_join ... ok 354s test tests::test_spawn ... ok 354s test tests::test_spawn_await ... ok 354s test tests::test_start_and_use_core_threads ... ok 354s test tests::test_start_core_threads ... ok 356s test tests::test_shutdown_on_complete ... ok 356s 356s test result: ok. 33 passed; 0 failed; 1 ignored; 0 measured; 2 filtered out; finished in 163.01s 356s 356s /tmp/autopkgtest.U1T4ph/wrapper.sh: checking for leaked background processes... 356s /tmp/autopkgtest.U1T4ph/wrapper.sh: waiting for tee/cat subprocesses... 356s /tmp/autopkgtest.U1T4ph/wrapper.sh: cleaning up... 356s /tmp/autopkgtest.U1T4ph/wrapper.sh: Exit status: 0 356s autopkgtest: DBG: testbed command exited with code 0 356s autopkgtest [02:56:02]: test rust-rusty-pool-0.7:@: -----------------------] 356s autopkgtest: DBG: testbed executing test finished with exit status 0 356s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A%40-stdout /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3A%40-stdout 357s autopkgtest: DBG: got reply from testbed: ok 357s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A%40-stderr /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3A%40-stderr 357s autopkgtest: DBG: got reply from testbed: ok 357s autopkgtest [02:56:03]: test rust-rusty-pool-0.7:@: - - - - - - - - - - results - - - - - - - - - - 357s rust-rusty-pool-0.7:@ PASS 357s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A%40-artifacts/ /tmp/autopkgtest-work.a2qqp9mw/out/artifacts/ 357s autopkgtest: DBG: got reply from testbed: ok 357s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:@-artifacts', '/tmp/autopkgtest.U1T4ph/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 357s autopkgtest: DBG: testbed command exited with code 0 357s autopkgtest [02:56:03]: test rust-rusty-pool-0.7:: preparing testbed 357s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-rusty-pool-0.7-dev'], deps_new=['dh-rust', 'librust-rusty-pool-0.7-dev'] 357s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 357s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-rusty-pool-0.7-dev'] 357s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-rusty-pool-0.7-dev 357s autopkgtest: DBG: can use apt-get on testbed: True 357s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-rusty-pool-0.7-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 358s Reading package lists... 358s Building dependency tree... 358s Reading state information... 358s Starting pkgProblemResolver with broken count: 0 358s Starting 2 pkgProblemResolver with broken count: 0 358s Done 358s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-packages.all"], kind short, sout raw, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A-packages.all /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3A-packages.all 358s autopkgtest: DBG: got reply from testbed: ok 358s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.U1T4ph/build.Edu/src'], kind short, sout raw, serr raw, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.U1T4ph/build.Edu/src already exists 359s autopkgtest [02:56:05]: test rust-rusty-pool-0.7:: /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 359s autopkgtest [02:56:05]: test rust-rusty-pool-0.7:: [----------------------- 359s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.U1T4ph/wrapper.sh --debug --artifacts=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-artifacts --chdir=/tmp/autopkgtest.U1T4ph/build.Edu/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-stderr --stdout=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-stdout --tmp=/tmp/autopkgtest.U1T4ph/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test'"], kind test, sout raw, serr raw, env [] 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-artifacts 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: changing to directory: /tmp/autopkgtest.U1T4ph/build.Edu/src 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: LANG=C.UTF-8 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LANGUAGE 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ADDRESS 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ALL 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_COLLATE 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_CTYPE 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_IDENTIFICATION 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MEASUREMENT 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MESSAGES 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MONETARY 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NAME 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NUMERIC 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_PAPER 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TELEPHONE 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TIME 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: pretending to be a login shell 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write standard error to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-stderr 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write stdout to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-stdout 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.U1T4ph/autopkgtest_tmp 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.1Ld7SEwdMC/out to stdout and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-stdout 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.1Ld7SEwdMC/err to standard error and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-stdout 359s /tmp/autopkgtest.U1T4ph/wrapper.sh: writing script pid 3147 to /tmp/autopkgtest_script_pid 359s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 359s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 359s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.NthYMguZDQ/registry/ 359s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 359s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 359s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-default-features', '--no-fail-fast', '--', '--skip', 'tests::test_try_increment_worker_total', '--skip', 'tests::worker_count_test'],) {} 359s Compiling autocfg v1.1.0 359s Compiling crossbeam-utils v0.8.19 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=6a8f20fc0d620fc2 -C extra-filename=-6a8f20fc0d620fc2 --out-dir /tmp/tmp.NthYMguZDQ/target/release/build/crossbeam-utils-6a8f20fc0d620fc2 -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn` 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/autocfg-1.1.0 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.NthYMguZDQ/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ace755378c606d29 -C extra-filename=-ace755378c606d29 --out-dir /tmp/tmp.NthYMguZDQ/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn` 359s Compiling libc v0.2.169 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/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. 359s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.NthYMguZDQ/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7e8f0a655396b248 -C extra-filename=-7e8f0a655396b248 --out-dir /tmp/tmp.NthYMguZDQ/target/release/build/libc-7e8f0a655396b248 -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn` 359s Compiling slab v0.4.9 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=6b14469cdbe1f65e -C extra-filename=-6b14469cdbe1f65e --out-dir /tmp/tmp.NthYMguZDQ/target/release/build/slab-6b14469cdbe1f65e -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --extern autocfg=/tmp/tmp.NthYMguZDQ/target/release/deps/libautocfg-ace755378c606d29.rlib --cap-lints warn` 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 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='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.NthYMguZDQ/target/release/deps:/tmp/tmp.NthYMguZDQ/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.NthYMguZDQ/target/release/build/slab-6b14469cdbe1f65e/build-script-build` 359s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 359s [slab 0.4.9] | 359s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 359s [slab 0.4.9] 359s [slab 0.4.9] warning: 1 warning emitted 359s [slab 0.4.9] 359s Compiling futures-core v0.3.31 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 359s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-core-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.NthYMguZDQ/registry/futures-core-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=d16d76e23453e348 -C extra-filename=-d16d76e23453e348 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/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. 359s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.NthYMguZDQ/target/release/deps:/tmp/tmp.NthYMguZDQ/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.NthYMguZDQ/target/release/build/libc-7e8f0a655396b248/build-script-build` 359s [libc 0.2.169] cargo:rerun-if-changed=build.rs 359s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 359s [libc 0.2.169] cargo:rustc-cfg=freebsd11 359s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 359s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 359s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps OUT_DIR=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out rustc --crate-name slab --edition=2018 /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=1c4ff1cdfec01095 -C extra-filename=-1c4ff1cdfec01095 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 359s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 359s | 359s = note: this feature is not stably supported; its behavior can change in the future 359s 360s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 360s --> /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/src/lib.rs:250:15 360s | 360s 250 | #[cfg(not(slab_no_const_vec_new))] 360s | ^^^^^^^^^^^^^^^^^^^^^ 360s | 360s = 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` 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: `#[warn(unexpected_cfgs)]` on by default 360s 360s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 360s --> /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/src/lib.rs:264:11 360s | 360s 264 | #[cfg(slab_no_const_vec_new)] 360s | ^^^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `slab_no_track_caller` 360s --> /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/src/lib.rs:929:20 360s | 360s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 360s | ^^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `slab_no_track_caller` 360s --> /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/src/lib.rs:1098:20 360s | 360s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 360s | ^^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `slab_no_track_caller` 360s --> /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/src/lib.rs:1206:20 360s | 360s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 360s | ^^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `slab_no_track_caller` 360s --> /tmp/tmp.NthYMguZDQ/registry/slab-0.4.9/src/lib.rs:1216:20 360s | 360s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 360s | ^^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: `futures-core` (lib) generated 1 warning 360s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.NthYMguZDQ/target/release/deps:/tmp/tmp.NthYMguZDQ/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.NthYMguZDQ/target/release/build/crossbeam-utils-6a8f20fc0d620fc2/build-script-build` 360s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 360s Compiling pin-project-lite v0.2.13 360s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 360s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.NthYMguZDQ/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 360s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 360s Compiling pin-utils v0.1.0 360s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 360s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/pin-utils-0.1.0 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.NthYMguZDQ/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9cfd72a719d295aa -C extra-filename=-9cfd72a719d295aa --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 360s warning: `slab` (lib) generated 7 warnings (1 duplicate) 360s Compiling futures-task v0.3.31 360s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 360s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-task-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.NthYMguZDQ/registry/futures-task-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=5502b03b418f6215 -C extra-filename=-5502b03b418f6215 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 360s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 360s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps OUT_DIR=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=95f01987ba6e4ab0 -C extra-filename=-95f01987ba6e4ab0 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 360s | 360s 42 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s | 360s = 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` 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: `#[warn(unexpected_cfgs)]` on by default 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 360s | 360s 65 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/lib.rs:106:11 360s | 360s 106 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 360s | 360s 74 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 360s | 360s 78 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 360s | 360s 81 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 360s | 360s 7 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 360s | 360s 25 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 360s | 360s 28 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 360s | 360s 1 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 360s | 360s 27 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 360s | 360s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 360s | 360s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 360s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 360s | 360s 50 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 360s | 360s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 360s | 360s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 360s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 360s | 360s 101 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 360s | 360s 107 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 79 | impl_atomic!(AtomicBool, bool); 360s | ------------------------------ in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 79 | impl_atomic!(AtomicBool, bool); 360s | ------------------------------ in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 80 | impl_atomic!(AtomicUsize, usize); 360s | -------------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 80 | impl_atomic!(AtomicUsize, usize); 360s | -------------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 81 | impl_atomic!(AtomicIsize, isize); 360s | -------------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 81 | impl_atomic!(AtomicIsize, isize); 360s | -------------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 82 | impl_atomic!(AtomicU8, u8); 360s | -------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 82 | impl_atomic!(AtomicU8, u8); 360s | -------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 83 | impl_atomic!(AtomicI8, i8); 360s | -------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 83 | impl_atomic!(AtomicI8, i8); 360s | -------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 84 | impl_atomic!(AtomicU16, u16); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 84 | impl_atomic!(AtomicU16, u16); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 85 | impl_atomic!(AtomicI16, i16); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 85 | impl_atomic!(AtomicI16, i16); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 87 | impl_atomic!(AtomicU32, u32); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 87 | impl_atomic!(AtomicU32, u32); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 89 | impl_atomic!(AtomicI32, i32); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 89 | impl_atomic!(AtomicI32, i32); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 94 | impl_atomic!(AtomicU64, u64); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 94 | impl_atomic!(AtomicU64, u64); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 360s | 360s 66 | #[cfg(not(crossbeam_no_atomic))] 360s | ^^^^^^^^^^^^^^^^^^^ 360s ... 360s 99 | impl_atomic!(AtomicI64, i64); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 360s | 360s 71 | #[cfg(crossbeam_loom)] 360s | ^^^^^^^^^^^^^^ 360s ... 360s 99 | impl_atomic!(AtomicI64, i64); 360s | ---------------------------- in this macro invocation 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:7:11 360s | 360s 7 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:10:11 360s | 360s 10 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition name: `crossbeam_loom` 360s --> /tmp/tmp.NthYMguZDQ/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:15:11 360s | 360s 15 | #[cfg(not(crossbeam_loom))] 360s | ^^^^^^^^^^^^^^ 360s | 360s = help: consider using a Cargo feature instead 360s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 360s [lints.rust] 360s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 360s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 360s = note: see for more information about checking conditional configuration 360s 360s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 360s Compiling futures-util v0.3.31 360s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 360s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.NthYMguZDQ/registry/futures-util-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=569f24227e948b87 -C extra-filename=-569f24227e948b87 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --extern futures_core=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_task=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern pin_project_lite=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern pin_utils=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libpin_utils-9cfd72a719d295aa.rmeta --extern slab=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libslab-1c4ff1cdfec01095.rmeta --cap-lints warn -Ctarget-feature=+backchain` 360s warning: unexpected `cfg` condition value: `compat` 360s --> /tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/src/lib.rs:308:7 360s | 360s 308 | #[cfg(feature = "compat")] 360s | ^^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 360s = help: consider adding `compat` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s = note: requested on the command line with `-W unexpected-cfgs` 360s 360s warning: unexpected `cfg` condition value: `compat` 360s --> /tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 360s | 360s 6 | #[cfg(feature = "compat")] 360s | ^^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 360s = help: consider adding `compat` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition value: `compat` 360s --> /tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 360s | 360s 580 | #[cfg(feature = "compat")] 360s | ^^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 360s = help: consider adding `compat` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition value: `compat` 360s --> /tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 360s | 360s 6 | #[cfg(feature = "compat")] 360s | ^^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 360s = help: consider adding `compat` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition value: `compat` 360s --> /tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 360s | 360s 1154 | #[cfg(feature = "compat")] 360s | ^^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 360s = help: consider adding `compat` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition value: `compat` 360s --> /tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 360s | 360s 3 | #[cfg(feature = "compat")] 360s | ^^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 360s = help: consider adding `compat` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s 360s warning: unexpected `cfg` condition value: `compat` 360s --> /tmp/tmp.NthYMguZDQ/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 360s | 360s 92 | #[cfg(feature = "compat")] 360s | ^^^^^^^^^^^^^^^^^^ 360s | 360s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 360s = help: consider adding `compat` as a feature in `Cargo.toml` 360s = note: see for more information about checking conditional configuration 360s 360s warning: `crossbeam-utils` (lib) generated 44 warnings (1 duplicate) 360s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/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. 360s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps OUT_DIR=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out rustc --crate-name libc --edition=2021 /tmp/tmp.NthYMguZDQ/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=8a14e953bd95a320 -C extra-filename=-8a14e953bd95a320 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 360s warning: unused import: `crate::ntptimeval` 360s --> /tmp/tmp.NthYMguZDQ/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 360s | 360s 5 | use crate::ntptimeval; 360s | ^^^^^^^^^^^^^^^^^ 360s | 360s = note: `#[warn(unused_imports)]` on by default 360s 361s warning: `libc` (lib) generated 2 warnings (1 duplicate) 361s Compiling num_cpus v1.16.0 361s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=num_cpus CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/num_cpus-1.16.0 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/num_cpus-1.16.0/Cargo.toml CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='Get the number of CPUs on a machine.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num_cpus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/num_cpus' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.16.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=16 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/num_cpus-1.16.0 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name num_cpus --edition=2015 /tmp/tmp.NthYMguZDQ/registry/num_cpus-1.16.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=aa8c4de8b3b224a9 -C extra-filename=-aa8c4de8b3b224a9 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --extern libc=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --cap-lints warn -Ctarget-feature=+backchain` 361s warning: unexpected `cfg` condition value: `nacl` 361s --> /tmp/tmp.NthYMguZDQ/registry/num_cpus-1.16.0/src/lib.rs:355:5 361s | 361s 355 | target_os = "nacl", 361s | ^^^^^^^^^^^^^^^^^^ 361s | 361s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 361s = note: see for more information about checking conditional configuration 361s = note: `#[warn(unexpected_cfgs)]` on by default 361s 361s warning: unexpected `cfg` condition value: `nacl` 361s --> /tmp/tmp.NthYMguZDQ/registry/num_cpus-1.16.0/src/lib.rs:437:5 361s | 361s 437 | target_os = "nacl", 361s | ^^^^^^^^^^^^^^^^^^ 361s | 361s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 361s = note: see for more information about checking conditional configuration 361s 361s warning: `futures-util` (lib) generated 8 warnings (1 duplicate) 361s Compiling futures-executor v0.3.31 361s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-executor-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/futures-executor-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library. 361s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-executor-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name futures_executor --edition=2018 /tmp/tmp.NthYMguZDQ/registry/futures-executor-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "num_cpus", "std", "thread-pool"))' -C metadata=79a33a9471e3d6f7 -C extra-filename=-79a33a9471e3d6f7 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --extern futures_core=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_task=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern futures_util=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_util-569f24227e948b87.rmeta --cap-lints warn -Ctarget-feature=+backchain` 362s warning: `futures-executor` (lib) generated 1 warning (1 duplicate) 362s Compiling crossbeam-channel v0.5.14 362s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_channel CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/crossbeam-channel-0.5.14 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/crossbeam-channel-0.5.14/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Multi-producer multi-consumer channels for message passing' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/crossbeam-channel-0.5.14 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name crossbeam_channel --edition=2021 /tmp/tmp.NthYMguZDQ/registry/crossbeam-channel-0.5.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --warn=unexpected_cfgs '--allow=clippy::lint_groups_priority' '--allow=clippy::declare_interior_mutable_const' --check-cfg 'cfg(crossbeam_loom)' --check-cfg 'cfg(crossbeam_sanitize)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=f2bd7628ff2a2e38 -C extra-filename=-f2bd7628ff2a2e38 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --extern crossbeam_utils=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-95f01987ba6e4ab0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 362s warning: `num_cpus` (lib) generated 3 warnings (1 duplicate) 362s Compiling futures-channel v0.3.31 362s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.NthYMguZDQ/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 362s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.NthYMguZDQ/registry/futures-channel-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.NthYMguZDQ/registry/futures-channel-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=8683d48e09f4b975 -C extra-filename=-8683d48e09f4b975 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --extern futures_core=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --cap-lints warn -Ctarget-feature=+backchain` 362s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 363s warning: `crossbeam-channel` (lib) generated 1 warning (1 duplicate) 363s Compiling rusty_pool v0.7.0 (/usr/share/cargo/registry/rusty_pool-0.7.0) 363s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rusty_pool CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 LD_LIBRARY_PATH=/tmp/tmp.NthYMguZDQ/target/release/deps rustc --crate-name rusty_pool --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async", "default", "futures"))' -C metadata=b0b1bd8b9eaab7c1 -C extra-filename=-b0b1bd8b9eaab7c1 --out-dir /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.NthYMguZDQ/target/release/deps --extern crossbeam_channel=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_channel-f2bd7628ff2a2e38.rlib --extern futures_channel=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-8683d48e09f4b975.rlib --extern futures_executor=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libfutures_executor-79a33a9471e3d6f7.rlib --extern num_cpus=/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/libnum_cpus-aa8c4de8b3b224a9.rlib -Ctarget-feature=+backchain` 363s warning: trait `ThreadSafe` is never used 363s --> src/lib.rs:136:7 363s | 363s 136 | trait ThreadSafe: Send {} 363s | ^^^^^^^^^^ 363s | 363s = note: `#[warn(dead_code)]` on by default 363s 365s warning: `rusty_pool` (lib test) generated 2 warnings (1 duplicate) 365s Finished `release` profile [optimized] target(s) in 5.91s 365s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.NthYMguZDQ/target/s390x-unknown-linux-gnu/release/deps/rusty_pool-b0b1bd8b9eaab7c1 --skip 'tests::test_try_increment_worker_total' --skip 'tests::worker_count_test'` 365s 365s running 32 tests 365s test tests::stress_test ... ignored 365s test tests::test_builder_max_size ... ok 365s test tests::test_complete_fut ... ok 375s test tests::test_drop_all_receivers ... ok 385s test tests::test_drop_oneshot_receiver ... ok 385s test tests::test_empty_join ... ok 385s test tests::test_empty_shutdown_join ... ok 390s test tests::test_evaluate ... ok 390s test tests::test_evaluate_panic - should panic ... ok 405s test tests::it_works ... ok 415s test tests::test_join ... ok 450s test tests::test_full_usage has been running for over 60 seconds 465s test tests::test_full_usage ... ok 475s test tests::test_join_enqueued_task has been running for over 60 seconds 475s test tests::test_join_timeout ... ok 476s test tests::test_join_enqueued_task ... ok 480s test tests::test_join_when_complete ... ok 490s test tests::test_multiple_evaluate ... ok 495s test tests::test_panic_all ... ok 496s test tests::test_multi_thread_join ... ok 496s test tests::test_panic_on_0_max_pool_size - should panic ... ok 496s test tests::test_panic_on_max_size_exceeds_half_usize - should panic ... ok 496s test tests::test_panic_on_smaller_max_than_core_pool_size - should panic ... ok 505s test tests::test_panic_all_core_threads ... ok 511s test tests::test_panic_some ... ok 512s test tests::test_shutdown ... ok 516s test tests::test_shutdown_core_pool ... ok 516s test tests::test_shutdown_idle_core_pool ... ok 518s test tests::test_shutdown_after_complete ... ok 523s test tests::test_shutdown_join_timeout ... ok 526s test tests::test_shutdown_join ... ok 526s test tests::test_start_and_use_core_threads ... ok 526s test tests::test_start_core_threads ... ok 528s test tests::test_shutdown_on_complete ... ok 528s 528s test result: ok. 31 passed; 0 failed; 1 ignored; 0 measured; 2 filtered out; finished in 163.01s 528s 528s /tmp/autopkgtest.U1T4ph/wrapper.sh: checking for leaked background processes... 528s /tmp/autopkgtest.U1T4ph/wrapper.sh: waiting for tee/cat subprocesses... 528s /tmp/autopkgtest.U1T4ph/wrapper.sh: cleaning up... 528s /tmp/autopkgtest.U1T4ph/wrapper.sh: Exit status: 0 528s autopkgtest: DBG: testbed command exited with code 0 528s autopkgtest [02:58:54]: test rust-rusty-pool-0.7:: -----------------------] 528s autopkgtest: DBG: testbed executing test finished with exit status 0 528s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A-stdout /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3A-stdout 529s autopkgtest: DBG: got reply from testbed: ok 529s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A-stderr /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3A-stderr 529s autopkgtest: DBG: got reply from testbed: ok 529s rust-rusty-pool-0.7: PASS 529s autopkgtest [02:58:55]: test rust-rusty-pool-0.7:: - - - - - - - - - - results - - - - - - - - - - 529s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3A-artifacts/ /tmp/autopkgtest-work.a2qqp9mw/out/artifacts/ 529s autopkgtest: DBG: got reply from testbed: ok 529s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:-artifacts', '/tmp/autopkgtest.U1T4ph/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 529s autopkgtest: DBG: testbed command exited with code 0 529s autopkgtest [02:58:55]: test rust-rusty-pool-0.7:async: preparing testbed 529s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-rusty-pool-0.7-dev'], deps_new=['dh-rust', 'librust-rusty-pool-0.7+async-dev'] 529s autopkgtest: DBG: testbed reset 529s autopkgtest: DBG: sending command to testbed: revert 599s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.U1T4ph 599s autopkgtest: DBG: sending command to testbed: print-execute-command 599s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.gbjwh3up/runcmd 599s autopkgtest: DBG: sending command to testbed: capabilities 599s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu reboot isolation-machine revert-full-system ok root-on-testbed revert 599s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'reboot', 'isolation-machine', 'revert-full-system', 'ok', 'root-on-testbed', 'revert', 'has_internet'] 599s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 600s autopkgtest: DBG: testbed command exited with code 0 600s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.U1T4ph/wrapper.sh 600s autopkgtest: DBG: got reply from testbed: ok 600s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/wrapper.sh'], kind short, sout raw, serr pipe, env [] 600s autopkgtest: DBG: testbed command exited with code 0 600s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 600s autopkgtest: DBG: testbed command exited with code 0 600s autopkgtest [03:00:06]: testbed dpkg architecture: s390x 600s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 600s autopkgtest: DBG: testbed command exited with code 0 600s autopkgtest [03:00:06]: testbed apt version: 2.9.27ubuntu2 600s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 600s autopkgtest: DBG: testbed command exited with code 0 600s autopkgtest: DBG: testbed has eatmydata 600s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 601s autopkgtest: DBG: testbed command exited with code 0 601s autopkgtest [03:00:07]: @@@@@@@@@@@@@@@@@@@@ test bed setup 601s 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 [] 601s autopkgtest: DBG: testbed command exited with code 0 601s autopkgtest [03:00:07]: testbed release detected to be: plucky 601s 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 [] 601s autopkgtest: DBG: testbed command exited with code 0 601s 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 [] 601s autopkgtest: DBG: testbed command exited with code 0 601s autopkgtest: DBG: adding APT source: Types: deb deb-src 601s URIs: http://ftpmaster.internal/ubuntu/ 601s Suites: plucky-proposed 601s Components: main restricted universe multiverse 601s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 601s 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 [] 601s autopkgtest: DBG: testbed command exited with code 0 601s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 601s Package: * 601s Pin: release plucky-proposed 601s Pin-Priority: 500 601s 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 [] 601s autopkgtest: DBG: testbed command exited with code 0 601s autopkgtest [03:00:07]: updating testbed package index (apt update) 601s 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'] 602s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 602s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 602s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 602s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 602s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [60.4 kB] 602s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [2428 B] 602s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [12.4 kB] 602s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [813 kB] 602s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [88.1 kB] 602s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [726 kB] 602s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [2680 B] 603s Fetched 1815 kB in 1s (1829 kB/s) 603s Reading package lists... 603s autopkgtest: DBG: testbed command exited with code 0 603s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 603s Package: * 603s Pin: release plucky-proposed 603s Pin-Priority: 100 603s 603s Package: src:rust-rusty-pool:any 603s Pin: release plucky-proposed 603s Pin-Priority: 995 603s 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-rusty-pool:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 603s autopkgtest: DBG: testbed command exited with code 0 603s 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.U1T4ph/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 604s autopkgtest: DBG: testbed command exited with code 0 604s 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'] 604s + lsb_release --codename --short 604s + RELEASE=plucky 604s + cat 604s + [ plucky != trusty ] 604s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 604s Reading package lists... 604s Building dependency tree... 604s Reading state information... 604s Calculating upgrade... 604s The following packages will be upgraded: 604s apport apport-core-dump-handler python3-apport python3-problem-report 604s rsyslog 604s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 604s Need to get 752 kB of archives. 604s After this operation, 4096 B of additional disk space will be used. 604s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x python3-problem-report all 2.31.0-0ubuntu5 [25.5 kB] 604s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apport all 2.31.0-0ubuntu5 [93.1 kB] 604s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apport-core-dump-handler all 2.31.0-0ubuntu5 [18.4 kB] 604s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x apport all 2.31.0-0ubuntu5 [83.0 kB] 605s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2406.0-1ubuntu3 [532 kB] 605s Fetched 752 kB in 1s (1178 kB/s) 605s (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 ... 80963 files and directories currently installed.) 605s Preparing to unpack .../python3-problem-report_2.31.0-0ubuntu5_all.deb ... 605s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 605s for fn in glob1(directory, "%s.*" % fname): 605s Unpacking python3-problem-report (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 605s Preparing to unpack .../python3-apport_2.31.0-0ubuntu5_all.deb ... 605s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 605s for fn in glob1(directory, "%s.*" % fname): 605s Unpacking python3-apport (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 605s Preparing to unpack .../apport-core-dump-handler_2.31.0-0ubuntu5_all.deb ... 605s Unpacking apport-core-dump-handler (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 605s Preparing to unpack .../apport_2.31.0-0ubuntu5_all.deb ... 605s Unpacking apport (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 605s Preparing to unpack .../rsyslog_8.2406.0-1ubuntu3_s390x.deb ... 605s Unpacking rsyslog (8.2406.0-1ubuntu3) over (8.2406.0-1ubuntu2) ... 605s Setting up python3-problem-report (2.31.0-0ubuntu5) ... 605s Setting up rsyslog (8.2406.0-1ubuntu3) ... 605s Installing new version of config file /etc/apparmor.d/usr.sbin.rsyslogd ... 605s info: The user `syslog' is already a member of `adm'. 606s Setting up python3-apport (2.31.0-0ubuntu5) ... 606s Setting up apport-core-dump-handler (2.31.0-0ubuntu5) ... 607s Setting up apport (2.31.0-0ubuntu5) ... 608s apport-autoreport.service is a disabled or a static unit not running, not starting it. 608s Processing triggers for man-db (2.13.0-1) ... 609s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 609s + /usr/lib/apt/apt-helper analyze-pattern ?true 609s + uname -r+ sed s/\./\\./g 609s 609s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 609s + apt list ?obsolete 609s + + cut -d/ -f1 609s tail -n+2 609s + grep -v ^linux-.*6\.12\.0-12-generic.* 609s + obsolete_pkgs=linux-image-6.11.0-8-generic 609s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 609s Reading package lists... 609s Building dependency tree... 609s Reading state information... 609s The following packages will be REMOVED: 609s linux-image-6.11.0-8-generic* 609s 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 609s After this operation, 10.5 MB disk space will be freed. 609s (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 ... 80963 files and directories currently installed.) 609s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 609s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-12-generic 609s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-12-generic 609s /etc/kernel/postrm.d/initramfs-tools: 609s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 609s /etc/kernel/postrm.d/zz-zipl: 609s Using config file '/etc/zipl.conf' 609s Building bootmap in '/boot' 609s Adding IPL section 'ubuntu' (default) 609s Preparing boot device for LD-IPL: vda (0000). 609s Done. 609s (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 ... 80959 files and directories currently installed.) 609s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 609s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 610s + grep -q trusty /etc/lsb-release 610s + [ ! -d /usr/share/doc/unattended-upgrades ] 610s + [ ! -d /usr/share/doc/lxd ] 610s + [ ! -d /usr/share/doc/lxd-client ] 610s + [ ! -d /usr/share/doc/snapd ] 610s + type iptables 610s + cat 610s + chmod 755 /etc/rc.local 610s + . /etc/rc.local 610s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 610s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 610s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 610s + uname -m 610s + [ s390x = ppc64le ] 610s + [ -d /run/systemd/system ] 610s + systemd-detect-virt --quiet --vm 610s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 610s + cat 610s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 610s + echo COMPRESS=lz4 610s autopkgtest: DBG: testbed command exited with code 0 610s autopkgtest [03:00:16]: upgrading testbed (apt dist-upgrade and autopurge) 610s 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'] 610s Reading package lists... 610s Building dependency tree... 610s Reading state information... 610s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 610s Starting 2 pkgProblemResolver with broken count: 0 610s Done 610s Entering ResolveByKeep 610s 611s The following packages were automatically installed and are no longer required: 611s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 611s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 611s linux-tools-6.11.0-8-generic 611s Use 'sudo apt autoremove' to remove them. 611s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 611s autopkgtest: DBG: testbed command exited with code 0 611s 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'] 611s Reading package lists... 611s Building dependency tree... 611s Reading state information... 611s Starting pkgProblemResolver with broken count: 0 611s Starting 2 pkgProblemResolver with broken count: 0 611s Done 611s The following packages will be REMOVED: 611s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 611s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 611s linux-tools-6.11.0-8-generic* 611s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 611s After this operation, 143 MB disk space will be freed. 611s (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 ... 80959 files and directories currently installed.) 611s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 611s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 612s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 612s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 612s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 612s (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 ... 56552 files and directories currently installed.) 612s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 612s autopkgtest: DBG: testbed command exited with code 0 612s 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.U1T4ph/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 613s autopkgtest: DBG: testbed command exited with code 1 613s autopkgtest [03:00:19]: rebooting testbed after setup commands that affected boot 613s autopkgtest: DBG: sending command to testbed: reboot 629s autopkgtest: DBG: got reply from testbed: ok 629s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 629s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 630s autopkgtest: DBG: testbed command exited with code 0 630s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot 630s autopkgtest: DBG: got reply from testbed: ok 630s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 630s autopkgtest: DBG: testbed command exited with code 0 630s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 630s autopkgtest: DBG: testbed command exited with code 0 630s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 630s autopkgtest: DBG: testbed command exited with code 0 630s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 630s autopkgtest: DBG: testbed command exited with code 0 630s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare 631s autopkgtest: DBG: got reply from testbed: ok 631s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 631s autopkgtest: DBG: testbed command exited with code 0 631s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 631s autopkgtest: DBG: testbed command exited with code 0 631s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 631s autopkgtest: DBG: testbed command exited with code 0 631s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.U1T4ph/testbed-packages"], kind short, sout raw, serr pipe, env [] 631s autopkgtest: DBG: testbed command exited with code 0 631s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/testbed-packages /tmp/autopkgtest-work.a2qqp9mw/out/testbed-packages 631s autopkgtest: DBG: got reply from testbed: ok 631s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 631s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 632s autopkgtest: DBG: testbed command exited with code 0 632s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot 632s autopkgtest: DBG: got reply from testbed: ok 632s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 632s autopkgtest: DBG: testbed command exited with code 0 632s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 632s autopkgtest: DBG: testbed command exited with code 0 632s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 632s autopkgtest: DBG: testbed command exited with code 0 632s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 632s autopkgtest: DBG: testbed command exited with code 0 632s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare 633s autopkgtest: DBG: got reply from testbed: ok 633s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 633s autopkgtest: DBG: testbed command exited with code 0 633s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 633s autopkgtest: DBG: testbed command exited with code 0 633s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 633s autopkgtest: DBG: testbed command exited with code 0 633s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 633s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-rusty-pool-0.7+async-dev'] 633s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-rusty-pool-0.7+async-dev 633s autopkgtest: DBG: can use apt-get on testbed: True 633s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-rusty-pool-0.7+async-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 633s Reading package lists... 633s Building dependency tree... 633s Reading state information... 634s Starting pkgProblemResolver with broken count: 0 634s Starting 2 pkgProblemResolver with broken count: 0 634s Done 634s The following NEW packages will be installed: 634s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 634s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 634s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 634s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 634s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 634s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 librust-ahash-dev 634s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 634s librust-byteorder-dev librust-cfg-if-dev librust-compiler-builtins-dev 634s librust-const-random-dev librust-const-random-macro-dev 634s librust-critical-section-dev librust-crossbeam-channel-dev 634s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 634s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 634s librust-derive-arbitrary-dev librust-either-dev librust-equivalent-dev 634s librust-erased-serde-dev librust-futures-channel-dev 634s librust-futures-core-dev librust-futures-dev librust-futures-executor-dev 634s librust-futures-io-dev librust-futures-macro-dev librust-futures-sink-dev 634s librust-futures-task-dev librust-futures-util-dev librust-getrandom-dev 634s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev librust-libc-dev 634s librust-log-dev librust-memchr-dev librust-no-panic-dev librust-num-cpus-dev 634s librust-once-cell-dev librust-parking-lot-core-dev 634s librust-pin-project-lite-dev librust-pin-utils-dev 634s librust-portable-atomic-dev librust-proc-macro2-dev librust-quote-dev 634s librust-rayon-core-dev librust-rayon-dev 634s librust-rustc-std-workspace-core-dev librust-rusty-pool-dev librust-ryu-dev 634s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 634s librust-serde-json-dev librust-serde-test-dev librust-slab-dev 634s librust-smallvec-dev librust-sval-buffer-dev librust-sval-derive-dev 634s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 634s librust-sval-ref-dev librust-sval-serde-dev librust-syn-dev 634s librust-tiny-keccak-dev librust-unicode-ident-dev librust-value-bag-dev 634s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 634s librust-version-check-dev librust-zerocopy-derive-dev librust-zerocopy-dev 634s libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 m4 po-debconf rustc 634s rustc-1.83 634s 0 upgraded, 114 newly installed, 0 to remove and 0 not upgraded. 634s Need to get 132 MB of archives. 634s After this operation, 507 MB of additional disk space will be used. 634s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 634s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 635s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 635s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 635s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 635s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 635s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 643s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 644s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 644s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 644s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 644s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 644s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [5452 B] 644s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.1.0-2ubuntu1 [22.4 kB] 644s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 644s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 644s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 644s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 644s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 644s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 644s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 645s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 645s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1204 B] 645s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.1.0-2ubuntu1 [4996 B] 645s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 645s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 645s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 645s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 645s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 645s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 645s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-1 [20.2 kB] 645s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-1 [5068 B] 645s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-1 [49.9 kB] 645s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 645s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 645s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 645s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 645s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 645s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 645s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 645s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.10 [16.6 kB] 645s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 645s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 645s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 645s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 646s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 646s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 646s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 646s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 646s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 646s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 646s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 646s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 646s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 646s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 646s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 646s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 646s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 646s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 646s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 646s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 646s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 646s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 646s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 646s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 646s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 646s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 646s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 646s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 646s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 646s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 646s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-channel-dev s390x 0.5.14-1 [79.4 kB] 646s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 646s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 646s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 646s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 646s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 646s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 646s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-core-dev s390x 0.3.31-1 [16.9 kB] 646s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-sink-dev s390x 0.3.31-1 [10.1 kB] 646s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-channel-dev s390x 0.3.31-1 [32.1 kB] 646s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-task-dev s390x 0.3.31-3 [13.7 kB] 646s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-io-dev s390x 0.3.31-1 [11.2 kB] 646s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-macro-dev s390x 0.3.31-1 [13.4 kB] 646s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 646s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 646s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 646s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-3 [6956 B] 646s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 646s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 646s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 646s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 646s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 646s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 646s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.15-1 [41.7 kB] 646s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 646s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 646s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 646s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 646s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 646s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 646s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 646s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 646s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 646s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 646s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 646s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 646s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-utils-dev s390x 0.1.0-1 [9340 B] 647s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slab-dev s390x 0.4.9-1 [21.2 kB] 647s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-util-dev s390x 0.3.31-1 [129 kB] 647s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-cpus-dev s390x 1.16.0-1 [18.1 kB] 647s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-executor-dev s390x 0.3.31-1 [20.0 kB] 647s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-dev s390x 0.3.30-2 [53.2 kB] 647s Get:114 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x librust-rusty-pool-dev all 0.7.0-9 [21.9 kB] 647s Fetched 132 MB in 13s (10.4 MB/s) 647s Selecting previously unselected package m4. 647s (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 ... 56552 files and directories currently installed.) 647s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 647s Unpacking m4 (1.4.19-5) ... 647s Selecting previously unselected package autoconf. 647s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 647s Unpacking autoconf (2.72-3) ... 647s Selecting previously unselected package autotools-dev. 647s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 647s Unpacking autotools-dev (20220109.1) ... 647s Selecting previously unselected package automake. 647s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 647s Unpacking automake (1:1.17-3) ... 647s Selecting previously unselected package autopoint. 647s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 647s Unpacking autopoint (0.23.1-1) ... 647s Selecting previously unselected package libgit2-1.8:s390x. 647s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 647s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 647s Selecting previously unselected package libstd-rust-1.83:s390x. 647s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 647s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 648s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 648s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 648s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 648s Selecting previously unselected package libisl23:s390x. 648s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 648s Unpacking libisl23:s390x (0.27-1) ... 648s Selecting previously unselected package libmpc3:s390x. 648s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 648s Unpacking libmpc3:s390x (1.3.1-1build2) ... 648s Selecting previously unselected package cpp-14-s390x-linux-gnu. 648s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 648s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 648s Selecting previously unselected package cpp-14. 648s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 648s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package cpp-s390x-linux-gnu. 649s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 649s Unpacking cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 649s Selecting previously unselected package cpp. 649s Preparing to unpack .../013-cpp_4%3a14.1.0-2ubuntu1_s390x.deb ... 649s Unpacking cpp (4:14.1.0-2ubuntu1) ... 649s Selecting previously unselected package libcc1-0:s390x. 649s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package libgomp1:s390x. 649s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package libitm1:s390x. 649s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package libasan8:s390x. 649s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package libubsan1:s390x. 649s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package libgcc-14-dev:s390x. 649s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package gcc-14-s390x-linux-gnu. 649s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package gcc-14. 649s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 649s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 649s Selecting previously unselected package gcc-s390x-linux-gnu. 649s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 649s Unpacking gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 649s Selecting previously unselected package gcc. 649s Preparing to unpack .../023-gcc_4%3a14.1.0-2ubuntu1_s390x.deb ... 649s Unpacking gcc (4:14.1.0-2ubuntu1) ... 649s Selecting previously unselected package rustc-1.83. 649s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 649s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 649s Selecting previously unselected package cargo-1.83. 649s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 649s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 649s Selecting previously unselected package libdebhelper-perl. 649s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 649s Unpacking libdebhelper-perl (13.23ubuntu1) ... 649s Selecting previously unselected package libtool. 649s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 649s Unpacking libtool (2.5.4-3build1) ... 649s Selecting previously unselected package dh-autoreconf. 649s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 649s Unpacking dh-autoreconf (20) ... 649s Selecting previously unselected package libarchive-zip-perl. 649s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 649s Unpacking libarchive-zip-perl (1.68-1) ... 649s Selecting previously unselected package libfile-stripnondeterminism-perl. 649s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-1_all.deb ... 649s Unpacking libfile-stripnondeterminism-perl (1.14.1-1) ... 649s Selecting previously unselected package dh-strip-nondeterminism. 649s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-1_all.deb ... 649s Unpacking dh-strip-nondeterminism (1.14.1-1) ... 649s Selecting previously unselected package debugedit. 649s Preparing to unpack .../032-debugedit_1%3a5.1-1_s390x.deb ... 649s Unpacking debugedit (1:5.1-1) ... 649s Selecting previously unselected package dwz. 649s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 649s Unpacking dwz (0.15-1build6) ... 649s Selecting previously unselected package gettext. 649s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 649s Unpacking gettext (0.23.1-1) ... 649s Selecting previously unselected package intltool-debian. 649s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 649s Unpacking intltool-debian (0.35.0+20060710.6) ... 649s Selecting previously unselected package po-debconf. 649s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 649s Unpacking po-debconf (1.0.21+nmu1) ... 649s Selecting previously unselected package debhelper. 649s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 649s Unpacking debhelper (13.23ubuntu1) ... 649s Selecting previously unselected package rustc. 649s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 649s Unpacking rustc (1.83.0ubuntu1) ... 649s Selecting previously unselected package cargo. 649s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 649s Unpacking cargo (1.83.0ubuntu1) ... 649s Selecting previously unselected package dh-rust. 649s Preparing to unpack .../040-dh-rust_0.0.10_all.deb ... 649s Unpacking dh-rust (0.0.10) ... 649s Selecting previously unselected package librust-critical-section-dev:s390x. 649s Preparing to unpack .../041-librust-critical-section-dev_1.2.0-1_s390x.deb ... 649s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 649s Selecting previously unselected package librust-unicode-ident-dev:s390x. 649s Preparing to unpack .../042-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 649s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 649s Selecting previously unselected package librust-proc-macro2-dev:s390x. 649s Preparing to unpack .../043-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 649s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 649s Selecting previously unselected package librust-quote-dev:s390x. 649s Preparing to unpack .../044-librust-quote-dev_1.0.37-1_s390x.deb ... 649s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 649s Selecting previously unselected package librust-syn-dev:s390x. 649s Preparing to unpack .../045-librust-syn-dev_2.0.96-2_s390x.deb ... 649s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 649s Selecting previously unselected package librust-serde-derive-dev:s390x. 649s Preparing to unpack .../046-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 649s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 649s Selecting previously unselected package librust-serde-dev:s390x. 649s Preparing to unpack .../047-librust-serde-dev_1.0.217-1_s390x.deb ... 649s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 649s Selecting previously unselected package librust-portable-atomic-dev:s390x. 649s Preparing to unpack .../048-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 649s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 650s Selecting previously unselected package librust-cfg-if-dev:s390x. 650s Preparing to unpack .../049-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 650s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 650s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 650s Preparing to unpack .../050-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 650s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 650s Selecting previously unselected package librust-libc-dev:s390x. 650s Preparing to unpack .../051-librust-libc-dev_0.2.169-1_s390x.deb ... 650s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 650s Selecting previously unselected package librust-getrandom-dev:s390x. 650s Preparing to unpack .../052-librust-getrandom-dev_0.2.15-1_s390x.deb ... 650s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 650s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 650s Preparing to unpack .../053-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 650s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 650s Selecting previously unselected package librust-arbitrary-dev:s390x. 650s Preparing to unpack .../054-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 650s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 650s Selecting previously unselected package librust-smallvec-dev:s390x. 650s Preparing to unpack .../055-librust-smallvec-dev_1.13.2-1_s390x.deb ... 650s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 650s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 650s Preparing to unpack .../056-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 650s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 650s Selecting previously unselected package librust-once-cell-dev:s390x. 650s Preparing to unpack .../057-librust-once-cell-dev_1.20.2-1_s390x.deb ... 650s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 650s Selecting previously unselected package librust-crunchy-dev:s390x. 650s Preparing to unpack .../058-librust-crunchy-dev_0.2.2-1_s390x.deb ... 650s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 650s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 650s Preparing to unpack .../059-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 650s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 650s Selecting previously unselected package librust-const-random-macro-dev:s390x. 650s Preparing to unpack .../060-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 650s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 650s Selecting previously unselected package librust-const-random-dev:s390x. 650s Preparing to unpack .../061-librust-const-random-dev_0.1.17-2_s390x.deb ... 650s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 650s Selecting previously unselected package librust-version-check-dev:s390x. 650s Preparing to unpack .../062-librust-version-check-dev_0.9.5-1_s390x.deb ... 650s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 650s Selecting previously unselected package librust-byteorder-dev:s390x. 650s Preparing to unpack .../063-librust-byteorder-dev_1.5.0-1_s390x.deb ... 650s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 650s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 650s Preparing to unpack .../064-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 650s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 650s Selecting previously unselected package librust-zerocopy-dev:s390x. 650s Preparing to unpack .../065-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 650s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 650s Selecting previously unselected package librust-ahash-dev. 650s Preparing to unpack .../066-librust-ahash-dev_0.8.11-9_all.deb ... 650s Unpacking librust-ahash-dev (0.8.11-9) ... 650s Selecting previously unselected package librust-allocator-api2-dev:s390x. 650s Preparing to unpack .../067-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 650s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 650s Selecting previously unselected package librust-autocfg-dev:s390x. 650s Preparing to unpack .../068-librust-autocfg-dev_1.1.0-1_s390x.deb ... 650s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 650s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 650s Preparing to unpack .../069-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 650s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 650s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 650s Preparing to unpack .../070-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 650s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 650s Selecting previously unselected package librust-crossbeam-channel-dev:s390x. 650s Preparing to unpack .../071-librust-crossbeam-channel-dev_0.5.14-1_s390x.deb ... 650s Unpacking librust-crossbeam-channel-dev:s390x (0.5.14-1) ... 650s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 650s Preparing to unpack .../072-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 650s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 650s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 650s Preparing to unpack .../073-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 650s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 650s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 650s Preparing to unpack .../074-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 650s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 650s Selecting previously unselected package librust-either-dev:s390x. 650s Preparing to unpack .../075-librust-either-dev_1.13.0-1_s390x.deb ... 650s Unpacking librust-either-dev:s390x (1.13.0-1) ... 650s Selecting previously unselected package librust-equivalent-dev:s390x. 650s Preparing to unpack .../076-librust-equivalent-dev_1.0.1-1_s390x.deb ... 650s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 650s Selecting previously unselected package librust-erased-serde-dev:s390x. 650s Preparing to unpack .../077-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-futures-core-dev:s390x. 650s Preparing to unpack .../078-librust-futures-core-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-futures-core-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-futures-sink-dev:s390x. 650s Preparing to unpack .../079-librust-futures-sink-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-futures-sink-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-futures-channel-dev:s390x. 650s Preparing to unpack .../080-librust-futures-channel-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-futures-channel-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-futures-task-dev:s390x. 650s Preparing to unpack .../081-librust-futures-task-dev_0.3.31-3_s390x.deb ... 650s Unpacking librust-futures-task-dev:s390x (0.3.31-3) ... 650s Selecting previously unselected package librust-futures-io-dev:s390x. 650s Preparing to unpack .../082-librust-futures-io-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-futures-io-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-futures-macro-dev:s390x. 650s Preparing to unpack .../083-librust-futures-macro-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-futures-macro-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-sval-derive-dev:s390x. 650s Preparing to unpack .../084-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 650s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 650s Selecting previously unselected package librust-sval-dev:s390x. 650s Preparing to unpack .../085-librust-sval-dev_2.6.1-2_s390x.deb ... 650s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 650s Selecting previously unselected package librust-sval-ref-dev:s390x. 650s Preparing to unpack .../086-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 650s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 650s Selecting previously unselected package librust-serde-fmt-dev. 650s Preparing to unpack .../087-librust-serde-fmt-dev_1.0.3-3_all.deb ... 650s Unpacking librust-serde-fmt-dev (1.0.3-3) ... 650s Selecting previously unselected package librust-rayon-core-dev:s390x. 650s Preparing to unpack .../088-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 650s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 650s Selecting previously unselected package librust-rayon-dev:s390x. 650s Preparing to unpack .../089-librust-rayon-dev_1.10.0-1_s390x.deb ... 650s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 650s Selecting previously unselected package librust-hashbrown-dev:s390x. 650s Preparing to unpack .../090-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 650s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 650s Selecting previously unselected package librust-indexmap-dev:s390x. 650s Preparing to unpack .../091-librust-indexmap-dev_2.7.0-1_s390x.deb ... 650s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 650s Selecting previously unselected package librust-no-panic-dev:s390x. 650s Preparing to unpack .../092-librust-no-panic-dev_0.1.32-1_s390x.deb ... 650s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 650s Selecting previously unselected package librust-itoa-dev:s390x. 650s Preparing to unpack .../093-librust-itoa-dev_1.0.14-1_s390x.deb ... 650s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 650s Selecting previously unselected package librust-ryu-dev:s390x. 650s Preparing to unpack .../094-librust-ryu-dev_1.0.15-1_s390x.deb ... 650s Unpacking librust-ryu-dev:s390x (1.0.15-1) ... 650s Selecting previously unselected package librust-serde-json-dev:s390x. 650s Preparing to unpack .../095-librust-serde-json-dev_1.0.133-1_s390x.deb ... 650s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 650s Selecting previously unselected package librust-serde-test-dev:s390x. 650s Preparing to unpack .../096-librust-serde-test-dev_1.0.171-1_s390x.deb ... 650s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 650s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 650s Preparing to unpack .../097-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 650s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 650s Selecting previously unselected package librust-sval-buffer-dev:s390x. 650s Preparing to unpack .../098-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 650s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 650s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 650s Preparing to unpack .../099-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 650s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 650s Selecting previously unselected package librust-sval-fmt-dev:s390x. 650s Preparing to unpack .../100-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 650s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 650s Selecting previously unselected package librust-sval-serde-dev:s390x. 650s Preparing to unpack .../101-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 650s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 650s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 650s Preparing to unpack .../102-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 650s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 650s Selecting previously unselected package librust-value-bag-dev:s390x. 650s Preparing to unpack .../103-librust-value-bag-dev_1.9.0-1_s390x.deb ... 650s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 650s Selecting previously unselected package librust-log-dev:s390x. 650s Preparing to unpack .../104-librust-log-dev_0.4.22-1_s390x.deb ... 650s Unpacking librust-log-dev:s390x (0.4.22-1) ... 650s Selecting previously unselected package librust-memchr-dev:s390x. 650s Preparing to unpack .../105-librust-memchr-dev_2.7.4-1_s390x.deb ... 650s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 650s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 650s Preparing to unpack .../106-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 650s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 650s Selecting previously unselected package librust-pin-utils-dev:s390x. 650s Preparing to unpack .../107-librust-pin-utils-dev_0.1.0-1_s390x.deb ... 650s Unpacking librust-pin-utils-dev:s390x (0.1.0-1) ... 650s Selecting previously unselected package librust-slab-dev:s390x. 650s Preparing to unpack .../108-librust-slab-dev_0.4.9-1_s390x.deb ... 650s Unpacking librust-slab-dev:s390x (0.4.9-1) ... 650s Selecting previously unselected package librust-futures-util-dev:s390x. 650s Preparing to unpack .../109-librust-futures-util-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-futures-util-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-num-cpus-dev:s390x. 650s Preparing to unpack .../110-librust-num-cpus-dev_1.16.0-1_s390x.deb ... 650s Unpacking librust-num-cpus-dev:s390x (1.16.0-1) ... 650s Selecting previously unselected package librust-futures-executor-dev:s390x. 650s Preparing to unpack .../111-librust-futures-executor-dev_0.3.31-1_s390x.deb ... 650s Unpacking librust-futures-executor-dev:s390x (0.3.31-1) ... 650s Selecting previously unselected package librust-futures-dev:s390x. 650s Preparing to unpack .../112-librust-futures-dev_0.3.30-2_s390x.deb ... 650s Unpacking librust-futures-dev:s390x (0.3.30-2) ... 650s Selecting previously unselected package librust-rusty-pool-dev. 650s Preparing to unpack .../113-librust-rusty-pool-dev_0.7.0-9_all.deb ... 650s Unpacking librust-rusty-pool-dev (0.7.0-9) ... 650s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 650s Setting up librust-pin-utils-dev:s390x (0.1.0-1) ... 650s Setting up librust-either-dev:s390x (1.13.0-1) ... 650s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 650s Setting up librust-futures-task-dev:s390x (0.3.31-3) ... 650s Setting up libarchive-zip-perl (1.68-1) ... 650s Setting up libdebhelper-perl (13.23ubuntu1) ... 650s Setting up m4 (1.4.19-5) ... 650s Setting up librust-ryu-dev:s390x (1.0.15-1) ... 650s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 650s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 650s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 650s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 650s Setting up autotools-dev (20220109.1) ... 650s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 650s Setting up librust-futures-io-dev:s390x (0.3.31-1) ... 650s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 650s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 650s Setting up libmpc3:s390x (1.3.1-1build2) ... 650s Setting up autopoint (0.23.1-1) ... 650s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 650s Setting up librust-crossbeam-channel-dev:s390x (0.5.14-1) ... 650s Setting up autoconf (2.72-3) ... 650s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 650s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 650s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 650s Setting up dwz (0.15-1build6) ... 650s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 650s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 650s Setting up debugedit (1:5.1-1) ... 650s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 650s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 650s Setting up libisl23:s390x (0.27-1) ... 650s Setting up librust-futures-sink-dev:s390x (0.3.31-1) ... 650s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 650s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 650s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 650s Setting up automake (1:1.17-3) ... 650s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 650s Setting up libfile-stripnondeterminism-perl (1.14.1-1) ... 650s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 650s Setting up librust-libc-dev:s390x (0.2.169-1) ... 650s Setting up gettext (0.23.1-1) ... 650s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 650s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 650s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 650s Setting up librust-num-cpus-dev:s390x (1.16.0-1) ... 650s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 650s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 650s Setting up intltool-debian (0.35.0+20060710.6) ... 650s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 650s Setting up cpp-14 (14.2.0-16ubuntu1) ... 650s Setting up dh-strip-nondeterminism (1.14.1-1) ... 650s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 650s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 650s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 650s Setting up cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 650s Setting up po-debconf (1.0.21+nmu1) ... 650s Setting up librust-quote-dev:s390x (1.0.37-1) ... 650s Setting up librust-syn-dev:s390x (2.0.96-2) ... 650s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 650s Setting up gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 650s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 650s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 650s Setting up cpp (4:14.1.0-2ubuntu1) ... 650s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 650s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 650s Setting up librust-serde-dev:s390x (1.0.217-1) ... 650s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 650s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 650s Setting up librust-futures-macro-dev:s390x (0.3.31-1) ... 650s Setting up librust-serde-fmt-dev (1.0.3-3) ... 650s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 650s Setting up librust-sval-dev:s390x (2.6.1-2) ... 650s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 650s Setting up gcc-14 (14.2.0-16ubuntu1) ... 650s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 650s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 650s Setting up librust-slab-dev:s390x (0.4.9-1) ... 650s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 650s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 650s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 650s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 650s Setting up librust-futures-core-dev:s390x (0.3.31-1) ... 650s Setting up libtool (2.5.4-3build1) ... 650s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 650s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 650s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 650s Setting up gcc (4:14.1.0-2ubuntu1) ... 650s Setting up dh-autoreconf (20) ... 650s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 650s Setting up rustc (1.83.0ubuntu1) ... 650s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 650s Setting up librust-futures-channel-dev:s390x (0.3.31-1) ... 650s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 650s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 650s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 650s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 650s Setting up debhelper (13.23ubuntu1) ... 650s Setting up librust-ahash-dev (0.8.11-9) ... 650s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 650s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 650s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 650s Setting up cargo (1.83.0ubuntu1) ... 650s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 650s Setting up dh-rust (0.0.10) ... 650s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 650s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 650s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 650s Setting up librust-log-dev:s390x (0.4.22-1) ... 650s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 650s Setting up librust-futures-util-dev:s390x (0.3.31-1) ... 650s Setting up librust-futures-executor-dev:s390x (0.3.31-1) ... 650s Setting up librust-futures-dev:s390x (0.3.30-2) ... 650s Setting up librust-rusty-pool-dev (0.7.0-9) ... 650s Processing triggers for libc-bin (2.40-4ubuntu1) ... 650s Processing triggers for man-db (2.13.0-1) ... 651s Processing triggers for install-info (7.1.1-1) ... 651s autopkgtest: DBG: testbed command exited with code 0 651s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-packages.all"], kind short, sout raw, serr pipe, env [] 652s autopkgtest: DBG: testbed command exited with code 0 652s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Aasync-packages.all /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3Aasync-packages.all 652s autopkgtest: DBG: got reply from testbed: ok 652s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.U1T4ph/build.Edu/src'], kind short, sout raw, serr raw, env [] 652s autopkgtest: DBG: testbed command exited with code 1 652s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph/build.Edu'], kind short, sout raw, serr pipe, env [] 652s autopkgtest: DBG: testbed command exited with code 0 652s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.a2qqp9mw/out/tests-tree/ /tmp/autopkgtest.U1T4ph/build.Edu/src/ 653s autopkgtest: DBG: got reply from testbed: ok 653s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.U1T4ph/build.Edu/src'], kind short, sout raw, serr pipe, env [] 653s autopkgtest: DBG: testbed command exited with code 0 653s autopkgtest [03:00:59]: test rust-rusty-pool-0.7:async: /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --features async --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 653s autopkgtest [03:00:59]: test rust-rusty-pool-0.7:async: [----------------------- 653s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.U1T4ph/wrapper.sh --debug --artifacts=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-artifacts --chdir=/tmp/autopkgtest.U1T4ph/build.Edu/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-stderr --stdout=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-stdout --tmp=/tmp/autopkgtest.U1T4ph/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --features async --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test'"], kind test, sout raw, serr raw, env [] 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-artifacts 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: changing to directory: /tmp/autopkgtest.U1T4ph/build.Edu/src 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: LANG=C.UTF-8 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LANGUAGE 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ADDRESS 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ALL 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_COLLATE 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_CTYPE 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_IDENTIFICATION 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MEASUREMENT 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MESSAGES 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MONETARY 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NAME 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NUMERIC 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_PAPER 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TELEPHONE 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TIME 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: pretending to be a login shell 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write standard error to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-stderr 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write stdout to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-stdout 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.U1T4ph/autopkgtest_tmp 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-default-features --features async --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.l733DBXoYu/out to stdout and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-stdout 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.l733DBXoYu/err to standard error and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-stdout 653s /tmp/autopkgtest.U1T4ph/wrapper.sh: writing script pid 2324 to /tmp/autopkgtest_script_pid 653s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 653s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 653s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.jrRCedlSLM/registry/ 653s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 653s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 653s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-default-features', '--features', 'async', '--no-fail-fast', '--', '--skip', 'tests::test_try_increment_worker_total', '--skip', 'tests::worker_count_test'],) {} 653s Compiling proc-macro2 v1.0.92 653s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.jrRCedlSLM/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn` 653s Compiling unicode-ident v1.0.13 653s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.jrRCedlSLM/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.jrRCedlSLM/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn` 653s Compiling autocfg v1.1.0 653s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/autocfg-1.1.0 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.jrRCedlSLM/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ace755378c606d29 -C extra-filename=-ace755378c606d29 --out-dir /tmp/tmp.jrRCedlSLM/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn` 653s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.jrRCedlSLM/target/release/deps:/tmp/tmp.jrRCedlSLM/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.jrRCedlSLM/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.jrRCedlSLM/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 653s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 653s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 653s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 653s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 653s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps OUT_DIR=/tmp/tmp.jrRCedlSLM/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.jrRCedlSLM/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.jrRCedlSLM/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern unicode_ident=/tmp/tmp.jrRCedlSLM/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 653s Compiling slab v0.4.9 653s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=6b14469cdbe1f65e -C extra-filename=-6b14469cdbe1f65e --out-dir /tmp/tmp.jrRCedlSLM/target/release/build/slab-6b14469cdbe1f65e -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern autocfg=/tmp/tmp.jrRCedlSLM/target/release/deps/libautocfg-ace755378c606d29.rlib --cap-lints warn` 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 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='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.jrRCedlSLM/target/release/deps:/tmp/tmp.jrRCedlSLM/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.jrRCedlSLM/target/release/build/slab-6b14469cdbe1f65e/build-script-build` 654s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 654s [slab 0.4.9] | 654s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 654s [slab 0.4.9] 654s [slab 0.4.9] warning: 1 warning emitted 654s [slab 0.4.9] 654s Compiling futures-sink v0.3.31 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 654s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-sink-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-sink-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=e03363f514c75d32 -C extra-filename=-e03363f514c75d32 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 654s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 654s | 654s = note: this feature is not stably supported; its behavior can change in the future 654s 654s warning: `futures-sink` (lib) generated 1 warning 654s Compiling futures-core v0.3.31 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 654s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-core-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-core-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=d16d76e23453e348 -C extra-filename=-d16d76e23453e348 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 654s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 654s Compiling quote v1.0.37 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.jrRCedlSLM/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.jrRCedlSLM/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern proc_macro2=/tmp/tmp.jrRCedlSLM/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 654s Compiling syn v2.0.96 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.jrRCedlSLM/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=1e840a5d57ad3da8 -C extra-filename=-1e840a5d57ad3da8 --out-dir /tmp/tmp.jrRCedlSLM/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern proc_macro2=/tmp/tmp.jrRCedlSLM/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.jrRCedlSLM/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.jrRCedlSLM/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 654s Compiling futures-channel v0.3.31 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 654s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-channel-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-channel-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=d42437bdb693d8c2 -C extra-filename=-d42437bdb693d8c2 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern futures_core=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_sink=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 654s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps OUT_DIR=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out rustc --crate-name slab --edition=2018 /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=1c4ff1cdfec01095 -C extra-filename=-1c4ff1cdfec01095 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 654s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 654s --> /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/src/lib.rs:250:15 654s | 654s 250 | #[cfg(not(slab_no_const_vec_new))] 654s | ^^^^^^^^^^^^^^^^^^^^^ 654s | 654s = 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` 654s = help: consider using a Cargo feature instead 654s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 654s [lints.rust] 654s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 654s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 654s = note: see for more information about checking conditional configuration 654s = note: `#[warn(unexpected_cfgs)]` on by default 654s 654s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 654s --> /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/src/lib.rs:264:11 654s | 654s 264 | #[cfg(slab_no_const_vec_new)] 654s | ^^^^^^^^^^^^^^^^^^^^^ 654s | 654s = help: consider using a Cargo feature instead 654s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 654s [lints.rust] 654s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 654s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 654s = note: see for more information about checking conditional configuration 654s 654s warning: unexpected `cfg` condition name: `slab_no_track_caller` 654s --> /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/src/lib.rs:929:20 654s | 654s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 654s | ^^^^^^^^^^^^^^^^^^^^ 654s | 654s = help: consider using a Cargo feature instead 654s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 654s [lints.rust] 654s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 654s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 654s = note: see for more information about checking conditional configuration 654s 654s warning: unexpected `cfg` condition name: `slab_no_track_caller` 654s --> /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/src/lib.rs:1098:20 654s | 654s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 654s | ^^^^^^^^^^^^^^^^^^^^ 654s | 654s = help: consider using a Cargo feature instead 654s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 654s [lints.rust] 654s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 654s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 654s = note: see for more information about checking conditional configuration 654s 654s warning: unexpected `cfg` condition name: `slab_no_track_caller` 654s --> /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/src/lib.rs:1206:20 654s | 654s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 654s | ^^^^^^^^^^^^^^^^^^^^ 654s | 654s = help: consider using a Cargo feature instead 654s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 654s [lints.rust] 654s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 654s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 654s = note: see for more information about checking conditional configuration 654s 654s warning: unexpected `cfg` condition name: `slab_no_track_caller` 654s --> /tmp/tmp.jrRCedlSLM/registry/slab-0.4.9/src/lib.rs:1216:20 654s | 654s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 654s | ^^^^^^^^^^^^^^^^^^^^ 654s | 654s = help: consider using a Cargo feature instead 654s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 654s [lints.rust] 654s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 654s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 654s = note: see for more information about checking conditional configuration 654s 654s warning: `slab` (lib) generated 7 warnings (1 duplicate) 654s Compiling pin-utils v0.1.0 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 654s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/pin-utils-0.1.0 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.jrRCedlSLM/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9cfd72a719d295aa -C extra-filename=-9cfd72a719d295aa --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 654s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 654s Compiling libc v0.2.169 654s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/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. 654s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.jrRCedlSLM/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7e8f0a655396b248 -C extra-filename=-7e8f0a655396b248 --out-dir /tmp/tmp.jrRCedlSLM/target/release/build/libc-7e8f0a655396b248 -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn` 655s Compiling pin-project-lite v0.2.13 655s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 655s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.jrRCedlSLM/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 655s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 655s Compiling memchr v2.7.4 655s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/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 655s 1, 2 or 3 byte search and single substring search. 655s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.jrRCedlSLM/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 655s warning: `memchr` (lib) generated 1 warning (1 duplicate) 655s Compiling crossbeam-utils v0.8.19 655s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=6a8f20fc0d620fc2 -C extra-filename=-6a8f20fc0d620fc2 --out-dir /tmp/tmp.jrRCedlSLM/target/release/build/crossbeam-utils-6a8f20fc0d620fc2 -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn` 655s Compiling futures-task v0.3.31 655s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 655s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-task-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-task-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=5502b03b418f6215 -C extra-filename=-5502b03b418f6215 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 656s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 656s Compiling futures-io v0.3.31 656s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 656s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-io-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-io-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=856e715f1261c1e4 -C extra-filename=-856e715f1261c1e4 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 656s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 656s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.jrRCedlSLM/target/release/deps:/tmp/tmp.jrRCedlSLM/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.jrRCedlSLM/target/release/build/crossbeam-utils-6a8f20fc0d620fc2/build-script-build` 656s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 656s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/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. 656s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.jrRCedlSLM/target/release/deps:/tmp/tmp.jrRCedlSLM/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.jrRCedlSLM/target/release/build/libc-7e8f0a655396b248/build-script-build` 656s [libc 0.2.169] cargo:rerun-if-changed=build.rs 656s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 656s [libc 0.2.169] cargo:rustc-cfg=freebsd11 656s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 656s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 656s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/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. 656s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps OUT_DIR=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out rustc --crate-name libc --edition=2021 /tmp/tmp.jrRCedlSLM/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=8a14e953bd95a320 -C extra-filename=-8a14e953bd95a320 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 656s warning: unused import: `crate::ntptimeval` 656s --> /tmp/tmp.jrRCedlSLM/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 656s | 656s 5 | use crate::ntptimeval; 656s | ^^^^^^^^^^^^^^^^^ 656s | 656s = note: `#[warn(unused_imports)]` on by default 656s 656s warning: `libc` (lib) generated 2 warnings (1 duplicate) 656s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps OUT_DIR=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=95f01987ba6e4ab0 -C extra-filename=-95f01987ba6e4ab0 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 656s | 656s 42 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s | 656s = 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` 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: `#[warn(unexpected_cfgs)]` on by default 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 656s | 656s 65 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/lib.rs:106:11 656s | 656s 106 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 656s | 656s 74 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 656s | 656s 78 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 656s | 656s 81 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 656s | 656s 7 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 656s | 656s 25 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 656s | 656s 28 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 656s | 656s 1 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 656s | 656s 27 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 656s | 656s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 656s | 656s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 656s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 656s | 656s 50 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 656s | 656s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 656s | 656s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 656s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 656s | 656s 101 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 656s | 656s 107 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 79 | impl_atomic!(AtomicBool, bool); 656s | ------------------------------ in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 79 | impl_atomic!(AtomicBool, bool); 656s | ------------------------------ in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 80 | impl_atomic!(AtomicUsize, usize); 656s | -------------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 80 | impl_atomic!(AtomicUsize, usize); 656s | -------------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 81 | impl_atomic!(AtomicIsize, isize); 656s | -------------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 81 | impl_atomic!(AtomicIsize, isize); 656s | -------------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 82 | impl_atomic!(AtomicU8, u8); 656s | -------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 82 | impl_atomic!(AtomicU8, u8); 656s | -------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 83 | impl_atomic!(AtomicI8, i8); 656s | -------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 83 | impl_atomic!(AtomicI8, i8); 656s | -------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 84 | impl_atomic!(AtomicU16, u16); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 84 | impl_atomic!(AtomicU16, u16); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 85 | impl_atomic!(AtomicI16, i16); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 85 | impl_atomic!(AtomicI16, i16); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 87 | impl_atomic!(AtomicU32, u32); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 87 | impl_atomic!(AtomicU32, u32); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 89 | impl_atomic!(AtomicI32, i32); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 89 | impl_atomic!(AtomicI32, i32); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 94 | impl_atomic!(AtomicU64, u64); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 94 | impl_atomic!(AtomicU64, u64); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 656s | 656s 66 | #[cfg(not(crossbeam_no_atomic))] 656s | ^^^^^^^^^^^^^^^^^^^ 656s ... 656s 99 | impl_atomic!(AtomicI64, i64); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 656s | 656s 71 | #[cfg(crossbeam_loom)] 656s | ^^^^^^^^^^^^^^ 656s ... 656s 99 | impl_atomic!(AtomicI64, i64); 656s | ---------------------------- in this macro invocation 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:7:11 656s | 656s 7 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:10:11 656s | 656s 10 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 656s warning: unexpected `cfg` condition name: `crossbeam_loom` 656s --> /tmp/tmp.jrRCedlSLM/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:15:11 656s | 656s 15 | #[cfg(not(crossbeam_loom))] 656s | ^^^^^^^^^^^^^^ 656s | 656s = help: consider using a Cargo feature instead 656s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 656s [lints.rust] 656s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 656s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 656s = note: see for more information about checking conditional configuration 656s 657s warning: `crossbeam-utils` (lib) generated 44 warnings (1 duplicate) 657s Compiling crossbeam-channel v0.5.14 657s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_channel CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/crossbeam-channel-0.5.14 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/crossbeam-channel-0.5.14/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Multi-producer multi-consumer channels for message passing' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/crossbeam-channel-0.5.14 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name crossbeam_channel --edition=2021 /tmp/tmp.jrRCedlSLM/registry/crossbeam-channel-0.5.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --warn=unexpected_cfgs '--allow=clippy::lint_groups_priority' '--allow=clippy::declare_interior_mutable_const' --check-cfg 'cfg(crossbeam_loom)' --check-cfg 'cfg(crossbeam_sanitize)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=f2bd7628ff2a2e38 -C extra-filename=-f2bd7628ff2a2e38 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern crossbeam_utils=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-95f01987ba6e4ab0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 658s warning: `crossbeam-channel` (lib) generated 1 warning (1 duplicate) 658s Compiling num_cpus v1.16.0 658s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=num_cpus CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/num_cpus-1.16.0 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/num_cpus-1.16.0/Cargo.toml CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='Get the number of CPUs on a machine.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num_cpus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/num_cpus' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.16.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=16 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/num_cpus-1.16.0 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name num_cpus --edition=2015 /tmp/tmp.jrRCedlSLM/registry/num_cpus-1.16.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=aa8c4de8b3b224a9 -C extra-filename=-aa8c4de8b3b224a9 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern libc=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --cap-lints warn -Ctarget-feature=+backchain` 658s Compiling futures-macro v0.3.31 658s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 658s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-macro-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-macro-0.3.31/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 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=05f86e4433211bfb -C extra-filename=-05f86e4433211bfb --out-dir /tmp/tmp.jrRCedlSLM/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern proc_macro2=/tmp/tmp.jrRCedlSLM/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.jrRCedlSLM/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.jrRCedlSLM/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 658s warning: unexpected `cfg` condition value: `nacl` 658s --> /tmp/tmp.jrRCedlSLM/registry/num_cpus-1.16.0/src/lib.rs:355:5 658s | 658s 355 | target_os = "nacl", 658s | ^^^^^^^^^^^^^^^^^^ 658s | 658s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 658s = note: see for more information about checking conditional configuration 658s = note: `#[warn(unexpected_cfgs)]` on by default 658s 658s warning: unexpected `cfg` condition value: `nacl` 658s --> /tmp/tmp.jrRCedlSLM/registry/num_cpus-1.16.0/src/lib.rs:437:5 658s | 658s 437 | target_os = "nacl", 658s | ^^^^^^^^^^^^^^^^^^ 658s | 658s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 658s = note: see for more information about checking conditional configuration 658s 658s Compiling futures-util v0.3.31 658s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 658s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-util-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="channel"' --cfg 'feature="futures-channel"' --cfg 'feature="futures-io"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="io"' --cfg 'feature="memchr"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=0ebb2f72c29b5aad -C extra-filename=-0ebb2f72c29b5aad --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern futures_channel=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rmeta --extern futures_core=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_io=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_io-856e715f1261c1e4.rmeta --extern futures_macro=/tmp/tmp.jrRCedlSLM/target/release/deps/libfutures_macro-05f86e4433211bfb.so --extern futures_sink=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --extern futures_task=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern memchr=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern pin_project_lite=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern pin_utils=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libpin_utils-9cfd72a719d295aa.rmeta --extern slab=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libslab-1c4ff1cdfec01095.rmeta --cap-lints warn -Ctarget-feature=+backchain` 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/lib.rs:308:7 659s | 659s 308 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s = note: requested on the command line with `-W unexpected-cfgs` 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 659s | 659s 6 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 659s | 659s 580 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 659s | 659s 6 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 659s | 659s 1154 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 659s | 659s 15 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 659s | 659s 291 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 659s | 659s 3 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 659s | 659s 92 | #[cfg(feature = "compat")] 659s | ^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `io-compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/io/mod.rs:19:7 659s | 659s 19 | #[cfg(feature = "io-compat")] 659s | ^^^^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `io-compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `io-compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/io/mod.rs:388:11 659s | 659s 388 | #[cfg(feature = "io-compat")] 659s | ^^^^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `io-compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: unexpected `cfg` condition value: `io-compat` 659s --> /tmp/tmp.jrRCedlSLM/registry/futures-util-0.3.31/src/io/mod.rs:547:11 659s | 659s 547 | #[cfg(feature = "io-compat")] 659s | ^^^^^^^^^^^^^^^^^^^^^ 659s | 659s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 659s = help: consider adding `io-compat` as a feature in `Cargo.toml` 659s = note: see for more information about checking conditional configuration 659s 659s warning: `num_cpus` (lib) generated 3 warnings (1 duplicate) 661s Compiling futures-executor v0.3.31 661s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-executor-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-executor-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library. 661s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-executor-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures_executor --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-executor-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "num_cpus", "std", "thread-pool"))' -C metadata=39928b4d12caeb20 -C extra-filename=-39928b4d12caeb20 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern futures_core=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_task=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern futures_util=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_util-0ebb2f72c29b5aad.rmeta --cap-lints warn -Ctarget-feature=+backchain` 661s warning: `futures-util` (lib) generated 13 warnings (1 duplicate) 661s Compiling futures v0.3.30 661s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures CARGO_MANIFEST_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-0.3.30 CARGO_MANIFEST_PATH=/tmp/tmp.jrRCedlSLM/registry/futures-0.3.30/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='An implementation of futures and streams featuring zero allocations, 661s composability, and iterator-like interfaces. 661s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.30 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=30 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.jrRCedlSLM/registry/futures-0.3.30 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name futures --edition=2018 /tmp/tmp.jrRCedlSLM/registry/futures-0.3.30/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="default"' --cfg 'feature="executor"' --cfg 'feature="futures-executor"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "bilock", "default", "executor", "futures-executor", "std", "thread-pool", "unstable", "write-all-vectored"))' -C metadata=92396590ce286f11 -C extra-filename=-92396590ce286f11 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern futures_channel=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rmeta --extern futures_core=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_executor=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_executor-39928b4d12caeb20.rmeta --extern futures_io=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_io-856e715f1261c1e4.rmeta --extern futures_sink=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --extern futures_task=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern futures_util=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_util-0ebb2f72c29b5aad.rmeta --cap-lints warn -Ctarget-feature=+backchain` 661s warning: unexpected `cfg` condition value: `compat` 661s --> /tmp/tmp.jrRCedlSLM/registry/futures-0.3.30/src/lib.rs:206:7 661s | 661s 206 | #[cfg(feature = "compat")] 661s | ^^^^^^^^^^^^^^^^^^ 661s | 661s = note: expected values for `feature` are: `alloc`, `async-await`, `bilock`, `default`, `executor`, `futures-executor`, `std`, `thread-pool`, `unstable`, and `write-all-vectored` 661s = help: consider adding `compat` as a feature in `Cargo.toml` 661s = note: see for more information about checking conditional configuration 661s = note: `#[warn(unexpected_cfgs)]` on by default 661s 661s warning: `futures` (lib) generated 2 warnings (1 duplicate) 661s warning: `futures-executor` (lib) generated 1 warning (1 duplicate) 661s Compiling rusty_pool v0.7.0 (/usr/share/cargo/registry/rusty_pool-0.7.0) 661s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rusty_pool CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 LD_LIBRARY_PATH=/tmp/tmp.jrRCedlSLM/target/release/deps rustc --crate-name rusty_pool --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no --test --cfg 'feature="async"' --cfg 'feature="futures"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async", "default", "futures"))' -C metadata=b2d4da6e7446d657 -C extra-filename=-b2d4da6e7446d657 --out-dir /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.jrRCedlSLM/target/release/deps --extern crossbeam_channel=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_channel-f2bd7628ff2a2e38.rlib --extern futures=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures-92396590ce286f11.rlib --extern futures_channel=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rlib --extern futures_executor=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libfutures_executor-39928b4d12caeb20.rlib --extern num_cpus=/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/libnum_cpus-aa8c4de8b3b224a9.rlib -Ctarget-feature=+backchain` 661s warning: trait `ThreadSafe` is never used 661s --> src/lib.rs:136:7 661s | 661s 136 | trait ThreadSafe: Send {} 661s | ^^^^^^^^^^ 661s | 661s = note: `#[warn(dead_code)]` on by default 661s 663s warning: `rusty_pool` (lib test) generated 2 warnings (1 duplicate) 663s Finished `release` profile [optimized] target(s) in 10.30s 663s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.jrRCedlSLM/target/s390x-unknown-linux-gnu/release/deps/rusty_pool-b2d4da6e7446d657 --skip 'tests::test_try_increment_worker_total' --skip 'tests::worker_count_test'` 663s 663s running 34 tests 663s test tests::stress_test ... ignored 663s test tests::test_builder_max_size ... ok 663s test tests::test_complete_fut ... ok 673s test tests::test_drop_all_receivers ... ok 683s test tests::test_drop_oneshot_receiver ... ok 683s test tests::test_empty_join ... ok 683s test tests::test_empty_shutdown_join ... ok 688s test tests::test_evaluate ... ok 688s test tests::test_evaluate_panic - should panic ... ok 703s test tests::it_works ... ok 713s test tests::test_join ... ok 748s test tests::test_full_usage has been running for over 60 seconds 763s test tests::test_full_usage ... ok 773s test tests::test_join_enqueued_task has been running for over 60 seconds 773s test tests::test_join_timeout ... ok 775s test tests::test_join_enqueued_task ... ok 778s test tests::test_join_when_complete ... ok 788s test tests::test_multiple_evaluate ... ok 793s test tests::test_panic_all ... ok 794s test tests::test_multi_thread_join ... ok 794s test tests::test_panic_on_0_max_pool_size - should panic ... ok 794s test tests::test_panic_on_max_size_exceeds_half_usize - should panic ... ok 794s test tests::test_panic_on_smaller_max_than_core_pool_size - should panic ... ok 803s test tests::test_panic_all_core_threads ... ok 809s test tests::test_panic_some ... ok 810s test tests::test_shutdown ... ok 814s test tests::test_shutdown_core_pool ... ok 814s test tests::test_shutdown_idle_core_pool ... ok 816s test tests::test_shutdown_after_complete ... ok 821s test tests::test_shutdown_join_timeout ... ok 824s test tests::test_shutdown_join ... ok 824s test tests::test_spawn ... ok 824s test tests::test_spawn_await ... ok 824s test tests::test_start_and_use_core_threads ... ok 825s test tests::test_start_core_threads ... ok 826s test tests::test_shutdown_on_complete ... ok 826s 826s test result: ok. 33 passed; 0 failed; 1 ignored; 0 measured; 2 filtered out; finished in 163.01s 826s 826s /tmp/autopkgtest.U1T4ph/wrapper.sh: checking for leaked background processes... 826s /tmp/autopkgtest.U1T4ph/wrapper.sh: waiting for tee/cat subprocesses... 826s /tmp/autopkgtest.U1T4ph/wrapper.sh: cleaning up... 826s /tmp/autopkgtest.U1T4ph/wrapper.sh: Exit status: 0 826s autopkgtest: DBG: testbed command exited with code 0 827s autopkgtest [03:03:53]: test rust-rusty-pool-0.7:async: -----------------------] 827s autopkgtest: DBG: testbed executing test finished with exit status 0 827s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Aasync-stdout /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3Aasync-stdout 827s autopkgtest: DBG: got reply from testbed: ok 827s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Aasync-stderr /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3Aasync-stderr 827s autopkgtest: DBG: got reply from testbed: ok 827s autopkgtest [03:03:53]: test rust-rusty-pool-0.7:async: - - - - - - - - - - results - - - - - - - - - - 827s rust-rusty-pool-0.7:async PASS 827s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Aasync-artifacts/ /tmp/autopkgtest-work.a2qqp9mw/out/artifacts/ 827s autopkgtest: DBG: got reply from testbed: ok 827s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:async-artifacts', '/tmp/autopkgtest.U1T4ph/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 828s autopkgtest: DBG: testbed command exited with code 0 828s autopkgtest [03:03:54]: test rust-rusty-pool-0.7:default: preparing testbed 828s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-rust', 'librust-rusty-pool-0.7+async-dev'], deps_new=['dh-rust', 'librust-rusty-pool-0.7+default-dev'] 828s autopkgtest: DBG: testbed reset 828s autopkgtest: DBG: sending command to testbed: revert 891s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.U1T4ph 891s autopkgtest: DBG: sending command to testbed: print-execute-command 891s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.gbjwh3up/runcmd 891s autopkgtest: DBG: sending command to testbed: capabilities 891s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu reboot isolation-machine revert-full-system ok root-on-testbed revert 891s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'reboot', 'isolation-machine', 'revert-full-system', 'ok', 'root-on-testbed', 'revert', 'has_internet'] 891s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 891s autopkgtest: DBG: testbed command exited with code 0 891s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.U1T4ph/wrapper.sh 891s autopkgtest: DBG: got reply from testbed: ok 891s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/wrapper.sh'], kind short, sout raw, serr pipe, env [] 891s autopkgtest: DBG: testbed command exited with code 0 891s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 891s autopkgtest: DBG: testbed command exited with code 0 891s autopkgtest [03:04:57]: testbed dpkg architecture: s390x 891s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 891s autopkgtest: DBG: testbed command exited with code 0 891s autopkgtest [03:04:57]: testbed apt version: 2.9.27ubuntu2 891s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 892s autopkgtest: DBG: testbed command exited with code 0 892s autopkgtest: DBG: testbed has eatmydata 892s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 892s autopkgtest: DBG: testbed command exited with code 0 892s autopkgtest [03:04:58]: @@@@@@@@@@@@@@@@@@@@ test bed setup 892s 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 [] 892s autopkgtest: DBG: testbed command exited with code 0 892s autopkgtest [03:04:58]: testbed release detected to be: plucky 892s 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 [] 892s autopkgtest: DBG: testbed command exited with code 0 892s 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 [] 892s autopkgtest: DBG: testbed command exited with code 0 892s autopkgtest: DBG: adding APT source: Types: deb deb-src 892s URIs: http://ftpmaster.internal/ubuntu/ 892s Suites: plucky-proposed 892s Components: main restricted universe multiverse 892s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 892s 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 [] 892s autopkgtest: DBG: testbed command exited with code 0 892s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 892s Package: * 892s Pin: release plucky-proposed 892s Pin-Priority: 500 892s 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 [] 893s autopkgtest: DBG: testbed command exited with code 0 893s autopkgtest [03:04:59]: updating testbed package index (apt update) 893s 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'] 893s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 893s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 893s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 893s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 893s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [2428 B] 893s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [12.4 kB] 893s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [813 kB] 894s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [60.4 kB] 894s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [88.1 kB] 894s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [726 kB] 894s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [2680 B] 894s Fetched 1815 kB in 1s (1888 kB/s) 894s Reading package lists... 894s autopkgtest: DBG: testbed command exited with code 0 894s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 894s Package: * 894s Pin: release plucky-proposed 894s Pin-Priority: 100 894s 894s Package: src:rust-rusty-pool:any 894s Pin: release plucky-proposed 894s Pin-Priority: 995 894s 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-rusty-pool:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 895s autopkgtest: DBG: testbed command exited with code 0 895s 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.U1T4ph/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 895s autopkgtest: DBG: testbed command exited with code 0 895s 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'] 895s + lsb_release --codename --short 895s + RELEASE=plucky 895s + cat 895s + [ plucky != trusty ] 895s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 895s Reading package lists... 895s Building dependency tree... 895s Reading state information... 895s Calculating upgrade... 895s The following packages will be upgraded: 895s apport apport-core-dump-handler python3-apport python3-problem-report 895s rsyslog 895s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 895s Need to get 752 kB of archives. 895s After this operation, 4096 B of additional disk space will be used. 895s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x python3-problem-report all 2.31.0-0ubuntu5 [25.5 kB] 895s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apport all 2.31.0-0ubuntu5 [93.1 kB] 896s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apport-core-dump-handler all 2.31.0-0ubuntu5 [18.4 kB] 896s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x apport all 2.31.0-0ubuntu5 [83.0 kB] 896s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2406.0-1ubuntu3 [532 kB] 896s Fetched 752 kB in 1s (1367 kB/s) 896s (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 ... 80963 files and directories currently installed.) 896s Preparing to unpack .../python3-problem-report_2.31.0-0ubuntu5_all.deb ... 896s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 896s for fn in glob1(directory, "%s.*" % fname): 896s Unpacking python3-problem-report (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 896s Preparing to unpack .../python3-apport_2.31.0-0ubuntu5_all.deb ... 896s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 896s for fn in glob1(directory, "%s.*" % fname): 896s Unpacking python3-apport (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 896s Preparing to unpack .../apport-core-dump-handler_2.31.0-0ubuntu5_all.deb ... 896s Unpacking apport-core-dump-handler (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 896s Preparing to unpack .../apport_2.31.0-0ubuntu5_all.deb ... 896s Unpacking apport (2.31.0-0ubuntu5) over (2.31.0-0ubuntu4) ... 896s Preparing to unpack .../rsyslog_8.2406.0-1ubuntu3_s390x.deb ... 896s Unpacking rsyslog (8.2406.0-1ubuntu3) over (8.2406.0-1ubuntu2) ... 896s Setting up python3-problem-report (2.31.0-0ubuntu5) ... 896s Setting up rsyslog (8.2406.0-1ubuntu3) ... 896s Installing new version of config file /etc/apparmor.d/usr.sbin.rsyslogd ... 896s info: The user `syslog' is already a member of `adm'. 897s Setting up python3-apport (2.31.0-0ubuntu5) ... 897s Setting up apport-core-dump-handler (2.31.0-0ubuntu5) ... 898s Setting up apport (2.31.0-0ubuntu5) ... 899s apport-autoreport.service is a disabled or a static unit not running, not starting it. 899s Processing triggers for man-db (2.13.0-1) ... 900s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 900s + /usr/lib/apt/apt-helper analyze-pattern ?true 900s + uname -r 900s + sed s/\./\\./g 900s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 900s + apt list ?obsolete 900s + tail+ cut -d/ -f1 900s -n+2 900s + grep -v ^linux-.*6\.12\.0-12-generic.* 900s + obsolete_pkgs=linux-image-6.11.0-8-generic 900s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 900s Reading package lists... 900s Building dependency tree... 900s Reading state information... 900s The following packages will be REMOVED: 900s linux-image-6.11.0-8-generic* 900s 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 900s After this operation, 10.5 MB disk space will be freed. 900s (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 ... 80963 files and directories currently installed.) 900s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 900s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-12-generic 900s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-12-generic 900s /etc/kernel/postrm.d/initramfs-tools: 900s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 900s /etc/kernel/postrm.d/zz-zipl: 900s Using config file '/etc/zipl.conf' 900s Building bootmap in '/boot' 900s Adding IPL section 'ubuntu' (default) 900s Preparing boot device for LD-IPL: vda (0000). 900s Done. 900s (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 ... 80959 files and directories currently installed.) 900s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 900s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 901s + grep -q trusty /etc/lsb-release 901s + [ ! -d /usr/share/doc/unattended-upgrades ] 901s + [ ! -d /usr/share/doc/lxd ] 901s + [ ! -d /usr/share/doc/lxd-client ] 901s + [ ! -d /usr/share/doc/snapd ] 901s + type iptables 901s + cat 901s + chmod 755 /etc/rc.local 901s + . /etc/rc.local 901s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 901s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 901s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 901s + uname -m 901s + [ s390x = ppc64le ] 901s + [ -d /run/systemd/system ] 901s + systemd-detect-virt --quiet --vm 901s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 901s + cat 901s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 901s + echo COMPRESS=lz4 901s autopkgtest: DBG: testbed command exited with code 0 901s autopkgtest [03:05:07]: upgrading testbed (apt dist-upgrade and autopurge) 901s 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'] 901s Reading package lists... 901s Building dependency tree... 901s Reading state information... 901s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 901s Starting 2 pkgProblemResolver with broken count: 0 901s Done 901s Entering ResolveByKeep 901s 901s The following packages were automatically installed and are no longer required: 901s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 901s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 901s linux-tools-6.11.0-8-generic 901s Use 'sudo apt autoremove' to remove them. 901s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 901s autopkgtest: DBG: testbed command exited with code 0 901s 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'] 902s Reading package lists... 902s Building dependency tree... 902s Reading state information... 902s Starting pkgProblemResolver with broken count: 0 902s Starting 2 pkgProblemResolver with broken count: 0 902s Done 902s The following packages will be REMOVED: 902s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 902s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 902s linux-tools-6.11.0-8-generic* 902s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 902s After this operation, 143 MB disk space will be freed. 902s (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 ... 80959 files and directories currently installed.) 902s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 902s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 903s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 903s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 903s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 903s (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 ... 56552 files and directories currently installed.) 903s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 903s autopkgtest: DBG: testbed command exited with code 0 903s 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.U1T4ph/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 903s autopkgtest: DBG: testbed command exited with code 1 903s autopkgtest [03:05:09]: rebooting testbed after setup commands that affected boot 903s autopkgtest: DBG: sending command to testbed: reboot 919s autopkgtest: DBG: got reply from testbed: ok 919s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 919s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 920s autopkgtest: DBG: testbed command exited with code 0 920s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot 920s autopkgtest: DBG: got reply from testbed: ok 920s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 920s autopkgtest: DBG: testbed command exited with code 0 920s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 920s autopkgtest: DBG: testbed command exited with code 0 920s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 920s autopkgtest: DBG: testbed command exited with code 0 920s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 920s autopkgtest: DBG: testbed command exited with code 0 920s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare 921s autopkgtest: DBG: got reply from testbed: ok 921s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 921s autopkgtest: DBG: testbed command exited with code 0 921s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 921s autopkgtest: DBG: testbed command exited with code 0 921s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 921s autopkgtest: DBG: testbed command exited with code 0 921s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.U1T4ph/testbed-packages"], kind short, sout raw, serr pipe, env [] 921s autopkgtest: DBG: testbed command exited with code 0 921s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/testbed-packages /tmp/autopkgtest-work.a2qqp9mw/out/testbed-packages 921s autopkgtest: DBG: got reply from testbed: ok 921s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 921s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 922s autopkgtest: DBG: testbed command exited with code 0 922s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot 922s autopkgtest: DBG: got reply from testbed: ok 922s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 922s autopkgtest: DBG: testbed command exited with code 0 922s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 922s autopkgtest: DBG: testbed command exited with code 0 922s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 922s autopkgtest: DBG: testbed command exited with code 0 922s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph'], kind short, sout raw, serr pipe, env [] 922s autopkgtest: DBG: testbed command exited with code 0 922s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare 923s autopkgtest: DBG: got reply from testbed: ok 923s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 923s autopkgtest: DBG: testbed command exited with code 0 923s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.U1T4ph/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 923s autopkgtest: DBG: testbed command exited with code 0 923s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 923s autopkgtest: DBG: testbed command exited with code 0 923s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 923s autopkgtest: DBG: install_deps: deps_new=['dh-rust', 'librust-rusty-pool-0.7+default-dev'] 923s autopkgtest: DBG: install-deps: satisfying dh-rust, librust-rusty-pool-0.7+default-dev 923s autopkgtest: DBG: can use apt-get on testbed: True 923s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-rust, librust-rusty-pool-0.7+default-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 923s Reading package lists... 923s Building dependency tree... 923s Reading state information... 924s Starting pkgProblemResolver with broken count: 0 924s Starting 2 pkgProblemResolver with broken count: 0 924s Done 924s The following NEW packages will be installed: 924s autoconf automake autopoint autotools-dev cargo cargo-1.83 cpp cpp-14 924s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 924s dh-rust dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 924s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 924s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 924s libgit2-1.8 libgomp1 libisl23 libitm1 libmpc3 librust-ahash-dev 924s librust-allocator-api2-dev librust-arbitrary-dev librust-autocfg-dev 924s librust-byteorder-dev librust-cfg-if-dev librust-compiler-builtins-dev 924s librust-const-random-dev librust-const-random-macro-dev 924s librust-critical-section-dev librust-crossbeam-channel-dev 924s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 924s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 924s librust-derive-arbitrary-dev librust-either-dev librust-equivalent-dev 924s librust-erased-serde-dev librust-futures-channel-dev 924s librust-futures-core-dev librust-futures-dev librust-futures-executor-dev 924s librust-futures-io-dev librust-futures-macro-dev librust-futures-sink-dev 924s librust-futures-task-dev librust-futures-util-dev librust-getrandom-dev 924s librust-hashbrown-dev librust-indexmap-dev librust-itoa-dev librust-libc-dev 924s librust-log-dev librust-memchr-dev librust-no-panic-dev librust-num-cpus-dev 924s librust-once-cell-dev librust-parking-lot-core-dev 924s librust-pin-project-lite-dev librust-pin-utils-dev 924s librust-portable-atomic-dev librust-proc-macro2-dev librust-quote-dev 924s librust-rayon-core-dev librust-rayon-dev 924s librust-rustc-std-workspace-core-dev librust-rusty-pool-dev librust-ryu-dev 924s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 924s librust-serde-json-dev librust-serde-test-dev librust-slab-dev 924s librust-smallvec-dev librust-sval-buffer-dev librust-sval-derive-dev 924s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 924s librust-sval-ref-dev librust-sval-serde-dev librust-syn-dev 924s librust-tiny-keccak-dev librust-unicode-ident-dev librust-value-bag-dev 924s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 924s librust-version-check-dev librust-zerocopy-derive-dev librust-zerocopy-dev 924s libstd-rust-1.83 libstd-rust-1.83-dev libtool libubsan1 m4 po-debconf rustc 924s rustc-1.83 924s 0 upgraded, 114 newly installed, 0 to remove and 0 not upgraded. 924s Need to get 132 MB of archives. 924s After this operation, 507 MB of additional disk space will be used. 924s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 924s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 924s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 924s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 925s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 925s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgit2-1.8 s390x 1.8.4+ds-3ubuntu2 [584 kB] 925s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [28.6 MB] 927s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstd-rust-1.83-dev s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [47.0 MB] 928s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 928s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 928s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 928s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 928s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [5452 B] 928s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.1.0-2ubuntu1 [22.4 kB] 928s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 928s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 928s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 928s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 928s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 928s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 928s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 929s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 929s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1204 B] 929s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.1.0-2ubuntu1 [4996 B] 929s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x rustc-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [6166 kB] 929s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cargo-1.83 s390x 1.83.0+dfsg0ubuntu1-0ubuntu1 [7240 kB] 929s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 929s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 929s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 929s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 929s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-1 [20.2 kB] 929s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-1 [5068 B] 929s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-1 [49.9 kB] 929s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 929s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 929s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 929s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 929s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 929s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x rustc s390x 1.83.0ubuntu1 [2804 B] 929s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cargo s390x 1.83.0ubuntu1 [2246 B] 929s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-rust all 0.0.10 [16.6 kB] 929s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 929s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 929s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 929s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 929s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 929s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 929s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 929s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 929s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 929s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 929s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 929s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 929s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 929s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 929s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 929s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 929s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 929s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 929s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 929s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 929s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 929s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 929s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 929s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 929s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 929s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 929s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 929s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 929s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 929s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 929s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-channel-dev s390x 0.5.14-1 [79.4 kB] 929s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 929s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 929s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 929s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 929s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 930s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 930s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-core-dev s390x 0.3.31-1 [16.9 kB] 930s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-sink-dev s390x 0.3.31-1 [10.1 kB] 930s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-channel-dev s390x 0.3.31-1 [32.1 kB] 930s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-task-dev s390x 0.3.31-3 [13.7 kB] 930s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-io-dev s390x 0.3.31-1 [11.2 kB] 930s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-macro-dev s390x 0.3.31-1 [13.4 kB] 930s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 930s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 930s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 930s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-3 [6956 B] 930s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 930s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 930s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 930s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 930s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 930s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 930s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.15-1 [41.7 kB] 930s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 930s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 930s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 930s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 930s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 930s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 930s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 930s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 930s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 930s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 930s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 930s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 930s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-utils-dev s390x 0.1.0-1 [9340 B] 930s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slab-dev s390x 0.4.9-1 [21.2 kB] 930s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-util-dev s390x 0.3.31-1 [129 kB] 930s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-cpus-dev s390x 1.16.0-1 [18.1 kB] 930s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-executor-dev s390x 0.3.31-1 [20.0 kB] 930s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-dev s390x 0.3.30-2 [53.2 kB] 930s Get:114 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x librust-rusty-pool-dev all 0.7.0-9 [21.9 kB] 931s Fetched 132 MB in 6s (21.1 MB/s) 931s Selecting previously unselected package m4. 931s (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 ... 56552 files and directories currently installed.) 931s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 931s Unpacking m4 (1.4.19-5) ... 931s Selecting previously unselected package autoconf. 931s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 931s Unpacking autoconf (2.72-3) ... 931s Selecting previously unselected package autotools-dev. 931s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 931s Unpacking autotools-dev (20220109.1) ... 931s Selecting previously unselected package automake. 931s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 931s Unpacking automake (1:1.17-3) ... 931s Selecting previously unselected package autopoint. 931s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 931s Unpacking autopoint (0.23.1-1) ... 931s Selecting previously unselected package libgit2-1.8:s390x. 931s Preparing to unpack .../005-libgit2-1.8_1.8.4+ds-3ubuntu2_s390x.deb ... 931s Unpacking libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 931s Selecting previously unselected package libstd-rust-1.83:s390x. 931s Preparing to unpack .../006-libstd-rust-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 931s Unpacking libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 931s Selecting previously unselected package libstd-rust-1.83-dev:s390x. 931s Preparing to unpack .../007-libstd-rust-1.83-dev_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 931s Unpacking libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 932s Selecting previously unselected package libisl23:s390x. 932s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 932s Unpacking libisl23:s390x (0.27-1) ... 932s Selecting previously unselected package libmpc3:s390x. 932s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 932s Unpacking libmpc3:s390x (1.3.1-1build2) ... 932s Selecting previously unselected package cpp-14-s390x-linux-gnu. 932s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package cpp-14. 932s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package cpp-s390x-linux-gnu. 932s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 932s Unpacking cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 932s Selecting previously unselected package cpp. 932s Preparing to unpack .../013-cpp_4%3a14.1.0-2ubuntu1_s390x.deb ... 932s Unpacking cpp (4:14.1.0-2ubuntu1) ... 932s Selecting previously unselected package libcc1-0:s390x. 932s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package libgomp1:s390x. 932s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package libitm1:s390x. 932s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package libasan8:s390x. 932s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package libubsan1:s390x. 932s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package libgcc-14-dev:s390x. 932s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 932s Selecting previously unselected package gcc-14-s390x-linux-gnu. 932s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 932s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 933s Selecting previously unselected package gcc-14. 933s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 933s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 933s Selecting previously unselected package gcc-s390x-linux-gnu. 933s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 933s Unpacking gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 933s Selecting previously unselected package gcc. 933s Preparing to unpack .../023-gcc_4%3a14.1.0-2ubuntu1_s390x.deb ... 933s Unpacking gcc (4:14.1.0-2ubuntu1) ... 933s Selecting previously unselected package rustc-1.83. 933s Preparing to unpack .../024-rustc-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 933s Unpacking rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 933s Selecting previously unselected package cargo-1.83. 933s Preparing to unpack .../025-cargo-1.83_1.83.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 933s Unpacking cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 933s Selecting previously unselected package libdebhelper-perl. 933s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 933s Unpacking libdebhelper-perl (13.23ubuntu1) ... 933s Selecting previously unselected package libtool. 933s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 933s Unpacking libtool (2.5.4-3build1) ... 933s Selecting previously unselected package dh-autoreconf. 933s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 933s Unpacking dh-autoreconf (20) ... 933s Selecting previously unselected package libarchive-zip-perl. 933s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 933s Unpacking libarchive-zip-perl (1.68-1) ... 933s Selecting previously unselected package libfile-stripnondeterminism-perl. 933s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-1_all.deb ... 933s Unpacking libfile-stripnondeterminism-perl (1.14.1-1) ... 933s Selecting previously unselected package dh-strip-nondeterminism. 933s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-1_all.deb ... 933s Unpacking dh-strip-nondeterminism (1.14.1-1) ... 933s Selecting previously unselected package debugedit. 933s Preparing to unpack .../032-debugedit_1%3a5.1-1_s390x.deb ... 933s Unpacking debugedit (1:5.1-1) ... 933s Selecting previously unselected package dwz. 933s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 933s Unpacking dwz (0.15-1build6) ... 933s Selecting previously unselected package gettext. 933s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 933s Unpacking gettext (0.23.1-1) ... 933s Selecting previously unselected package intltool-debian. 933s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 933s Unpacking intltool-debian (0.35.0+20060710.6) ... 933s Selecting previously unselected package po-debconf. 933s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 933s Unpacking po-debconf (1.0.21+nmu1) ... 933s Selecting previously unselected package debhelper. 933s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 933s Unpacking debhelper (13.23ubuntu1) ... 933s Selecting previously unselected package rustc. 933s Preparing to unpack .../038-rustc_1.83.0ubuntu1_s390x.deb ... 933s Unpacking rustc (1.83.0ubuntu1) ... 933s Selecting previously unselected package cargo. 933s Preparing to unpack .../039-cargo_1.83.0ubuntu1_s390x.deb ... 933s Unpacking cargo (1.83.0ubuntu1) ... 933s Selecting previously unselected package dh-rust. 933s Preparing to unpack .../040-dh-rust_0.0.10_all.deb ... 933s Unpacking dh-rust (0.0.10) ... 933s Selecting previously unselected package librust-critical-section-dev:s390x. 933s Preparing to unpack .../041-librust-critical-section-dev_1.2.0-1_s390x.deb ... 933s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 933s Selecting previously unselected package librust-unicode-ident-dev:s390x. 933s Preparing to unpack .../042-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 933s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 933s Selecting previously unselected package librust-proc-macro2-dev:s390x. 933s Preparing to unpack .../043-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 933s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 933s Selecting previously unselected package librust-quote-dev:s390x. 933s Preparing to unpack .../044-librust-quote-dev_1.0.37-1_s390x.deb ... 933s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 933s Selecting previously unselected package librust-syn-dev:s390x. 933s Preparing to unpack .../045-librust-syn-dev_2.0.96-2_s390x.deb ... 933s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 933s Selecting previously unselected package librust-serde-derive-dev:s390x. 933s Preparing to unpack .../046-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 933s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 933s Selecting previously unselected package librust-serde-dev:s390x. 933s Preparing to unpack .../047-librust-serde-dev_1.0.217-1_s390x.deb ... 933s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 933s Selecting previously unselected package librust-portable-atomic-dev:s390x. 933s Preparing to unpack .../048-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 933s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 933s Selecting previously unselected package librust-cfg-if-dev:s390x. 933s Preparing to unpack .../049-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 933s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 933s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 933s Preparing to unpack .../050-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 933s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 933s Selecting previously unselected package librust-libc-dev:s390x. 933s Preparing to unpack .../051-librust-libc-dev_0.2.169-1_s390x.deb ... 933s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 933s Selecting previously unselected package librust-getrandom-dev:s390x. 933s Preparing to unpack .../052-librust-getrandom-dev_0.2.15-1_s390x.deb ... 933s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 933s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 933s Preparing to unpack .../053-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 933s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 933s Selecting previously unselected package librust-arbitrary-dev:s390x. 933s Preparing to unpack .../054-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 933s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 933s Selecting previously unselected package librust-smallvec-dev:s390x. 933s Preparing to unpack .../055-librust-smallvec-dev_1.13.2-1_s390x.deb ... 933s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 933s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 933s Preparing to unpack .../056-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 933s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 933s Selecting previously unselected package librust-once-cell-dev:s390x. 933s Preparing to unpack .../057-librust-once-cell-dev_1.20.2-1_s390x.deb ... 933s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 933s Selecting previously unselected package librust-crunchy-dev:s390x. 933s Preparing to unpack .../058-librust-crunchy-dev_0.2.2-1_s390x.deb ... 933s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 933s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 933s Preparing to unpack .../059-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 933s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 933s Selecting previously unselected package librust-const-random-macro-dev:s390x. 933s Preparing to unpack .../060-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 933s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 933s Selecting previously unselected package librust-const-random-dev:s390x. 933s Preparing to unpack .../061-librust-const-random-dev_0.1.17-2_s390x.deb ... 933s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 933s Selecting previously unselected package librust-version-check-dev:s390x. 933s Preparing to unpack .../062-librust-version-check-dev_0.9.5-1_s390x.deb ... 933s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 933s Selecting previously unselected package librust-byteorder-dev:s390x. 933s Preparing to unpack .../063-librust-byteorder-dev_1.5.0-1_s390x.deb ... 933s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 933s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 933s Preparing to unpack .../064-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 933s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 933s Selecting previously unselected package librust-zerocopy-dev:s390x. 933s Preparing to unpack .../065-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 933s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 933s Selecting previously unselected package librust-ahash-dev. 933s Preparing to unpack .../066-librust-ahash-dev_0.8.11-9_all.deb ... 933s Unpacking librust-ahash-dev (0.8.11-9) ... 933s Selecting previously unselected package librust-allocator-api2-dev:s390x. 933s Preparing to unpack .../067-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 933s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 933s Selecting previously unselected package librust-autocfg-dev:s390x. 933s Preparing to unpack .../068-librust-autocfg-dev_1.1.0-1_s390x.deb ... 933s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 933s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 933s Preparing to unpack .../069-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 933s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 934s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 934s Preparing to unpack .../070-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 934s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 934s Selecting previously unselected package librust-crossbeam-channel-dev:s390x. 934s Preparing to unpack .../071-librust-crossbeam-channel-dev_0.5.14-1_s390x.deb ... 934s Unpacking librust-crossbeam-channel-dev:s390x (0.5.14-1) ... 934s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 934s Preparing to unpack .../072-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 934s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 934s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 934s Preparing to unpack .../073-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 934s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 934s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 934s Preparing to unpack .../074-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 934s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 934s Selecting previously unselected package librust-either-dev:s390x. 934s Preparing to unpack .../075-librust-either-dev_1.13.0-1_s390x.deb ... 934s Unpacking librust-either-dev:s390x (1.13.0-1) ... 934s Selecting previously unselected package librust-equivalent-dev:s390x. 934s Preparing to unpack .../076-librust-equivalent-dev_1.0.1-1_s390x.deb ... 934s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 934s Selecting previously unselected package librust-erased-serde-dev:s390x. 934s Preparing to unpack .../077-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-futures-core-dev:s390x. 934s Preparing to unpack .../078-librust-futures-core-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-futures-core-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-futures-sink-dev:s390x. 934s Preparing to unpack .../079-librust-futures-sink-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-futures-sink-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-futures-channel-dev:s390x. 934s Preparing to unpack .../080-librust-futures-channel-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-futures-channel-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-futures-task-dev:s390x. 934s Preparing to unpack .../081-librust-futures-task-dev_0.3.31-3_s390x.deb ... 934s Unpacking librust-futures-task-dev:s390x (0.3.31-3) ... 934s Selecting previously unselected package librust-futures-io-dev:s390x. 934s Preparing to unpack .../082-librust-futures-io-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-futures-io-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-futures-macro-dev:s390x. 934s Preparing to unpack .../083-librust-futures-macro-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-futures-macro-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-sval-derive-dev:s390x. 934s Preparing to unpack .../084-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 934s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 934s Selecting previously unselected package librust-sval-dev:s390x. 934s Preparing to unpack .../085-librust-sval-dev_2.6.1-2_s390x.deb ... 934s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 934s Selecting previously unselected package librust-sval-ref-dev:s390x. 934s Preparing to unpack .../086-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 934s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 934s Selecting previously unselected package librust-serde-fmt-dev. 934s Preparing to unpack .../087-librust-serde-fmt-dev_1.0.3-3_all.deb ... 934s Unpacking librust-serde-fmt-dev (1.0.3-3) ... 934s Selecting previously unselected package librust-rayon-core-dev:s390x. 934s Preparing to unpack .../088-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 934s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 934s Selecting previously unselected package librust-rayon-dev:s390x. 934s Preparing to unpack .../089-librust-rayon-dev_1.10.0-1_s390x.deb ... 934s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 934s Selecting previously unselected package librust-hashbrown-dev:s390x. 934s Preparing to unpack .../090-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 934s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 934s Selecting previously unselected package librust-indexmap-dev:s390x. 934s Preparing to unpack .../091-librust-indexmap-dev_2.7.0-1_s390x.deb ... 934s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 934s Selecting previously unselected package librust-no-panic-dev:s390x. 934s Preparing to unpack .../092-librust-no-panic-dev_0.1.32-1_s390x.deb ... 934s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 934s Selecting previously unselected package librust-itoa-dev:s390x. 934s Preparing to unpack .../093-librust-itoa-dev_1.0.14-1_s390x.deb ... 934s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 934s Selecting previously unselected package librust-ryu-dev:s390x. 934s Preparing to unpack .../094-librust-ryu-dev_1.0.15-1_s390x.deb ... 934s Unpacking librust-ryu-dev:s390x (1.0.15-1) ... 934s Selecting previously unselected package librust-serde-json-dev:s390x. 934s Preparing to unpack .../095-librust-serde-json-dev_1.0.133-1_s390x.deb ... 934s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 934s Selecting previously unselected package librust-serde-test-dev:s390x. 934s Preparing to unpack .../096-librust-serde-test-dev_1.0.171-1_s390x.deb ... 934s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 934s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 934s Preparing to unpack .../097-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 934s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 934s Selecting previously unselected package librust-sval-buffer-dev:s390x. 934s Preparing to unpack .../098-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 934s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 934s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 934s Preparing to unpack .../099-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 934s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 934s Selecting previously unselected package librust-sval-fmt-dev:s390x. 934s Preparing to unpack .../100-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 934s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 934s Selecting previously unselected package librust-sval-serde-dev:s390x. 934s Preparing to unpack .../101-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 934s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 934s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 934s Preparing to unpack .../102-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 934s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 934s Selecting previously unselected package librust-value-bag-dev:s390x. 934s Preparing to unpack .../103-librust-value-bag-dev_1.9.0-1_s390x.deb ... 934s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 934s Selecting previously unselected package librust-log-dev:s390x. 934s Preparing to unpack .../104-librust-log-dev_0.4.22-1_s390x.deb ... 934s Unpacking librust-log-dev:s390x (0.4.22-1) ... 934s Selecting previously unselected package librust-memchr-dev:s390x. 934s Preparing to unpack .../105-librust-memchr-dev_2.7.4-1_s390x.deb ... 934s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 934s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 934s Preparing to unpack .../106-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 934s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 934s Selecting previously unselected package librust-pin-utils-dev:s390x. 934s Preparing to unpack .../107-librust-pin-utils-dev_0.1.0-1_s390x.deb ... 934s Unpacking librust-pin-utils-dev:s390x (0.1.0-1) ... 934s Selecting previously unselected package librust-slab-dev:s390x. 934s Preparing to unpack .../108-librust-slab-dev_0.4.9-1_s390x.deb ... 934s Unpacking librust-slab-dev:s390x (0.4.9-1) ... 934s Selecting previously unselected package librust-futures-util-dev:s390x. 934s Preparing to unpack .../109-librust-futures-util-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-futures-util-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-num-cpus-dev:s390x. 934s Preparing to unpack .../110-librust-num-cpus-dev_1.16.0-1_s390x.deb ... 934s Unpacking librust-num-cpus-dev:s390x (1.16.0-1) ... 934s Selecting previously unselected package librust-futures-executor-dev:s390x. 934s Preparing to unpack .../111-librust-futures-executor-dev_0.3.31-1_s390x.deb ... 934s Unpacking librust-futures-executor-dev:s390x (0.3.31-1) ... 934s Selecting previously unselected package librust-futures-dev:s390x. 934s Preparing to unpack .../112-librust-futures-dev_0.3.30-2_s390x.deb ... 934s Unpacking librust-futures-dev:s390x (0.3.30-2) ... 934s Selecting previously unselected package librust-rusty-pool-dev. 934s Preparing to unpack .../113-librust-rusty-pool-dev_0.7.0-9_all.deb ... 934s Unpacking librust-rusty-pool-dev (0.7.0-9) ... 934s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 934s Setting up librust-pin-utils-dev:s390x (0.1.0-1) ... 934s Setting up librust-either-dev:s390x (1.13.0-1) ... 934s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 934s Setting up librust-futures-task-dev:s390x (0.3.31-3) ... 934s Setting up libarchive-zip-perl (1.68-1) ... 934s Setting up libdebhelper-perl (13.23ubuntu1) ... 934s Setting up m4 (1.4.19-5) ... 934s Setting up librust-ryu-dev:s390x (1.0.15-1) ... 934s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 934s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 934s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 934s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 934s Setting up autotools-dev (20220109.1) ... 934s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 934s Setting up librust-futures-io-dev:s390x (0.3.31-1) ... 934s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 934s Setting up libgit2-1.8:s390x (1.8.4+ds-3ubuntu2) ... 934s Setting up libmpc3:s390x (1.3.1-1build2) ... 934s Setting up autopoint (0.23.1-1) ... 934s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 934s Setting up librust-crossbeam-channel-dev:s390x (0.5.14-1) ... 934s Setting up autoconf (2.72-3) ... 934s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 934s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 934s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 934s Setting up dwz (0.15-1build6) ... 934s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 934s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 934s Setting up debugedit (1:5.1-1) ... 934s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 934s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 934s Setting up libisl23:s390x (0.27-1) ... 934s Setting up librust-futures-sink-dev:s390x (0.3.31-1) ... 934s Setting up libstd-rust-1.83:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 934s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 934s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 934s Setting up automake (1:1.17-3) ... 934s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 934s Setting up libfile-stripnondeterminism-perl (1.14.1-1) ... 934s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 934s Setting up librust-libc-dev:s390x (0.2.169-1) ... 934s Setting up gettext (0.23.1-1) ... 934s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 934s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 934s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 934s Setting up librust-num-cpus-dev:s390x (1.16.0-1) ... 934s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 934s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 934s Setting up intltool-debian (0.35.0+20060710.6) ... 934s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 934s Setting up cpp-14 (14.2.0-16ubuntu1) ... 934s Setting up dh-strip-nondeterminism (1.14.1-1) ... 934s Setting up libstd-rust-1.83-dev:s390x (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 934s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 934s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 934s Setting up cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 934s Setting up po-debconf (1.0.21+nmu1) ... 934s Setting up librust-quote-dev:s390x (1.0.37-1) ... 934s Setting up librust-syn-dev:s390x (2.0.96-2) ... 934s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 934s Setting up gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 934s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 934s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 934s Setting up cpp (4:14.1.0-2ubuntu1) ... 934s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 934s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 934s Setting up librust-serde-dev:s390x (1.0.217-1) ... 934s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 934s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 934s Setting up librust-futures-macro-dev:s390x (0.3.31-1) ... 934s Setting up librust-serde-fmt-dev (1.0.3-3) ... 934s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 934s Setting up librust-sval-dev:s390x (2.6.1-2) ... 934s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 934s Setting up gcc-14 (14.2.0-16ubuntu1) ... 934s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 934s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 934s Setting up librust-slab-dev:s390x (0.4.9-1) ... 934s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 934s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 934s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 934s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 934s Setting up librust-futures-core-dev:s390x (0.3.31-1) ... 934s Setting up libtool (2.5.4-3build1) ... 934s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 934s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 934s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 934s Setting up gcc (4:14.1.0-2ubuntu1) ... 934s Setting up dh-autoreconf (20) ... 934s Setting up rustc-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 934s Setting up rustc (1.83.0ubuntu1) ... 934s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 934s Setting up librust-futures-channel-dev:s390x (0.3.31-1) ... 934s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 934s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 934s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 934s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 934s Setting up debhelper (13.23ubuntu1) ... 934s Setting up librust-ahash-dev (0.8.11-9) ... 934s Setting up cargo-1.83 (1.83.0+dfsg0ubuntu1-0ubuntu1) ... 934s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 934s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 934s Setting up cargo (1.83.0ubuntu1) ... 934s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 934s Setting up dh-rust (0.0.10) ... 934s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 934s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 934s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 934s Setting up librust-log-dev:s390x (0.4.22-1) ... 934s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 934s Setting up librust-futures-util-dev:s390x (0.3.31-1) ... 934s Setting up librust-futures-executor-dev:s390x (0.3.31-1) ... 934s Setting up librust-futures-dev:s390x (0.3.30-2) ... 934s Setting up librust-rusty-pool-dev (0.7.0-9) ... 934s Processing triggers for libc-bin (2.40-4ubuntu1) ... 934s Processing triggers for man-db (2.13.0-1) ... 935s Processing triggers for install-info (7.1.1-1) ... 935s autopkgtest: DBG: testbed command exited with code 0 935s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-packages.all"], kind short, sout raw, serr pipe, env [] 935s autopkgtest: DBG: testbed command exited with code 0 935s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Adefault-packages.all /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3Adefault-packages.all 936s autopkgtest: DBG: got reply from testbed: ok 936s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.U1T4ph/build.Edu/src'], kind short, sout raw, serr raw, env [] 936s autopkgtest: DBG: testbed command exited with code 1 936s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.U1T4ph/build.Edu'], kind short, sout raw, serr pipe, env [] 936s autopkgtest: DBG: testbed command exited with code 0 936s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.a2qqp9mw/out/tests-tree/ /tmp/autopkgtest.U1T4ph/build.Edu/src/ 936s autopkgtest: DBG: got reply from testbed: ok 936s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.U1T4ph/build.Edu/src'], kind short, sout raw, serr pipe, env [] 936s autopkgtest: DBG: testbed command exited with code 0 936s autopkgtest [03:05:42]: test rust-rusty-pool-0.7:default: /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 936s autopkgtest [03:05:42]: test rust-rusty-pool-0.7:default: [----------------------- 936s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.U1T4ph/wrapper.sh --debug --artifacts=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-artifacts --chdir=/tmp/autopkgtest.U1T4ph/build.Edu/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-stderr --stdout=/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-stdout --tmp=/tmp/autopkgtest.U1T4ph/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 -- bash -ec '/usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test'"], kind test, sout raw, serr raw, env [] 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-artifacts 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: changing to directory: /tmp/autopkgtest.U1T4ph/build.Edu/src 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: LANG=C.UTF-8 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LANGUAGE 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ADDRESS 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_ALL 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_COLLATE 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_CTYPE 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_IDENTIFICATION 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MEASUREMENT 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MESSAGES 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_MONETARY 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NAME 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_NUMERIC 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_PAPER 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TELEPHONE 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: unsetting environment: LC_TIME 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: pretending to be a login shell 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write standard error to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-stderr 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: will write stdout to /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-stdout 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.U1T4ph/autopkgtest_tmp 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-rusty-pool/0.7.0-9 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: command to run: bash -ec /usr/share/dh-rust/bin/cargo-auto-test rusty_pool 0.7.0 --all-targets --no-fail-fast -- --skip tests::test_try_increment_worker_total --skip tests::worker_count_test 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.UePaVRIB4c/out to stdout and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-stdout 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: copying /tmp/tmp.UePaVRIB4c/err to standard error and file: /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-stdout 937s /tmp/autopkgtest.U1T4ph/wrapper.sh: writing script pid 2330 to /tmp/autopkgtest_script_pid 937s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 937s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 937s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.CdpVEE8yBJ/registry/ 937s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 937s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 937s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--profile', 'release', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-fail-fast', '--', '--skip', 'tests::test_try_increment_worker_total', '--skip', 'tests::worker_count_test'],) {} 937s Compiling proc-macro2 v1.0.92 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e0053f9c42bfce66 -C extra-filename=-e0053f9c42bfce66 --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/build/proc-macro2-e0053f9c42bfce66 -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn` 937s Compiling unicode-ident v1.0.13 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/unicode-ident-1.0.13 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1f62f1a388642caf -C extra-filename=-1f62f1a388642caf --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn` 937s Compiling autocfg v1.1.0 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/autocfg-1.1.0 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.CdpVEE8yBJ/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ace755378c606d29 -C extra-filename=-ace755378c606d29 --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn` 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.CdpVEE8yBJ/target/release/deps:/tmp/tmp.CdpVEE8yBJ/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/release/build/proc-macro2-ded80aadddb47b58/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.CdpVEE8yBJ/target/release/build/proc-macro2-e0053f9c42bfce66/build-script-build` 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 937s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 937s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 937s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 937s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/release/build/proc-macro2-ded80aadddb47b58/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=51701034196816e3 -C extra-filename=-51701034196816e3 --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern unicode_ident=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 937s Compiling slab v0.4.9 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=6b14469cdbe1f65e -C extra-filename=-6b14469cdbe1f65e --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/build/slab-6b14469cdbe1f65e -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern autocfg=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libautocfg-ace755378c606d29.rlib --cap-lints warn` 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 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='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.CdpVEE8yBJ/target/release/deps:/tmp/tmp.CdpVEE8yBJ/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.CdpVEE8yBJ/target/release/build/slab-6b14469cdbe1f65e/build-script-build` 937s [slab 0.4.9] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 937s [slab 0.4.9] | 937s [slab 0.4.9] = note: this feature is not stably supported; its behavior can change in the future 937s [slab 0.4.9] 937s [slab 0.4.9] warning: 1 warning emitted 937s [slab 0.4.9] 937s Compiling futures-sink v0.3.31 937s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-sink-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-sink-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library. 937s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-sink-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_sink --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-sink-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=e03363f514c75d32 -C extra-filename=-e03363f514c75d32 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 937s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 937s | 937s = note: this feature is not stably supported; its behavior can change in the future 937s 938s warning: `futures-sink` (lib) generated 1 warning 938s Compiling futures-core v0.3.31 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-core-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-core-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library. 938s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-core-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_core --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-core-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' -C metadata=d16d76e23453e348 -C extra-filename=-d16d76e23453e348 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 938s warning: `futures-core` (lib) generated 1 warning (1 duplicate) 938s Compiling quote v1.0.37 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/quote-1.0.37 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name quote --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=188d7e577e2a83a9 -C extra-filename=-188d7e577e2a83a9 --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern proc_macro2=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libproc_macro2-51701034196816e3.rmeta --cap-lints warn` 938s Compiling syn v2.0.96 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/syn-2.0.96 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name syn --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=1e840a5d57ad3da8 -C extra-filename=-1e840a5d57ad3da8 --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern proc_macro2=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libproc_macro2-51701034196816e3.rmeta --extern quote=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libquote-188d7e577e2a83a9.rmeta --extern unicode_ident=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libunicode_ident-1f62f1a388642caf.rmeta --cap-lints warn` 938s Compiling futures-channel v0.3.31 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs. 938s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-channel-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_channel --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-channel-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=d42437bdb693d8c2 -C extra-filename=-d42437bdb693d8c2 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern futures_core=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_sink=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --cap-lints warn -Ctarget-feature=+backchain` 938s warning: `futures-channel` (lib) generated 1 warning (1 duplicate) 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/Cargo.toml CARGO_PKG_AUTHORS='Carl Lerche ' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/slab' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.4.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/build/slab-a86c6e3af28dcc4b/out rustc --crate-name slab --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=1c4ff1cdfec01095 -C extra-filename=-1c4ff1cdfec01095 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 938s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 938s --> /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/src/lib.rs:250:15 938s | 938s 250 | #[cfg(not(slab_no_const_vec_new))] 938s | ^^^^^^^^^^^^^^^^^^^^^ 938s | 938s = 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` 938s = help: consider using a Cargo feature instead 938s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 938s [lints.rust] 938s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 938s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 938s = note: see for more information about checking conditional configuration 938s = note: `#[warn(unexpected_cfgs)]` on by default 938s 938s warning: unexpected `cfg` condition name: `slab_no_const_vec_new` 938s --> /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/src/lib.rs:264:11 938s | 938s 264 | #[cfg(slab_no_const_vec_new)] 938s | ^^^^^^^^^^^^^^^^^^^^^ 938s | 938s = help: consider using a Cargo feature instead 938s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 938s [lints.rust] 938s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_const_vec_new)'] } 938s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_const_vec_new)");` to the top of the `build.rs` 938s = note: see for more information about checking conditional configuration 938s 938s warning: unexpected `cfg` condition name: `slab_no_track_caller` 938s --> /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/src/lib.rs:929:20 938s | 938s 929 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 938s | ^^^^^^^^^^^^^^^^^^^^ 938s | 938s = help: consider using a Cargo feature instead 938s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 938s [lints.rust] 938s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 938s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 938s = note: see for more information about checking conditional configuration 938s 938s warning: unexpected `cfg` condition name: `slab_no_track_caller` 938s --> /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/src/lib.rs:1098:20 938s | 938s 1098 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 938s | ^^^^^^^^^^^^^^^^^^^^ 938s | 938s = help: consider using a Cargo feature instead 938s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 938s [lints.rust] 938s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 938s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 938s = note: see for more information about checking conditional configuration 938s 938s warning: unexpected `cfg` condition name: `slab_no_track_caller` 938s --> /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/src/lib.rs:1206:20 938s | 938s 1206 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 938s | ^^^^^^^^^^^^^^^^^^^^ 938s | 938s = help: consider using a Cargo feature instead 938s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 938s [lints.rust] 938s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 938s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 938s = note: see for more information about checking conditional configuration 938s 938s warning: unexpected `cfg` condition name: `slab_no_track_caller` 938s --> /tmp/tmp.CdpVEE8yBJ/registry/slab-0.4.9/src/lib.rs:1216:20 938s | 938s 1216 | #[cfg_attr(not(slab_no_track_caller), track_caller)] 938s | ^^^^^^^^^^^^^^^^^^^^ 938s | 938s = help: consider using a Cargo feature instead 938s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 938s [lints.rust] 938s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(slab_no_track_caller)'] } 938s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(slab_no_track_caller)");` to the top of the `build.rs` 938s = note: see for more information about checking conditional configuration 938s 938s warning: `slab` (lib) generated 7 warnings (1 duplicate) 938s Compiling futures-task v0.3.31 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-task-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-task-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Tools for working with tasks. 938s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-task-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_task --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-task-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "std", "unstable"))' -C metadata=5502b03b418f6215 -C extra-filename=-5502b03b418f6215 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 938s warning: `futures-task` (lib) generated 1 warning (1 duplicate) 938s Compiling crossbeam-utils v0.8.19 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=6a8f20fc0d620fc2 -C extra-filename=-6a8f20fc0d620fc2 --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/build/crossbeam-utils-6a8f20fc0d620fc2 -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn` 938s Compiling pin-utils v0.1.0 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/pin-utils-0.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/pin-utils-0.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josef Brandl ' CARGO_PKG_DESCRIPTION='Utilities for pinning 938s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/pin-utils-0.1.0 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name pin_utils --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9cfd72a719d295aa -C extra-filename=-9cfd72a719d295aa --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 938s warning: `pin-utils` (lib) generated 1 warning (1 duplicate) 938s Compiling futures-io v0.3.31 938s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-io-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-io-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 938s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-io-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_io --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-io-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std", "unstable"))' -C metadata=856e715f1261c1e4 -C extra-filename=-856e715f1261c1e4 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 939s warning: `futures-io` (lib) generated 1 warning (1 duplicate) 939s Compiling libc v0.2.169 939s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/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. 939s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=7e8f0a655396b248 -C extra-filename=-7e8f0a655396b248 --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/build/libc-7e8f0a655396b248 -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn` 939s Compiling memchr v2.7.4 939s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/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 939s 1, 2 or 3 byte search and single substring search. 939s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/memchr-2.7.4 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=f5c2681b9228f1dd -C extra-filename=-f5c2681b9228f1dd --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 939s warning: `memchr` (lib) generated 1 warning (1 duplicate) 939s Compiling pin-project-lite v0.2.13 939s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 939s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/pin-project-lite-0.2.13 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=29a395de1ae2cae0 -C extra-filename=-29a395de1ae2cae0 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 939s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 939s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/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. 939s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.CdpVEE8yBJ/target/release/deps:/tmp/tmp.CdpVEE8yBJ/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.CdpVEE8yBJ/target/release/build/libc-7e8f0a655396b248/build-script-build` 939s [libc 0.2.169] cargo:rerun-if-changed=build.rs 939s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 939s [libc 0.2.169] cargo:rustc-cfg=freebsd11 939s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 939s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 939s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS=-Ctarget-feature=+backchain CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=false HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.CdpVEE8yBJ/target/release/deps:/tmp/tmp.CdpVEE8yBJ/target/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=3 OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out PROFILE=release RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.CdpVEE8yBJ/target/release/build/crossbeam-utils-6a8f20fc0d620fc2/build-script-build` 939s [crossbeam-utils 0.8.19] cargo:rerun-if-changed=no_atomic.rs 939s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.8.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/build/crossbeam-utils-cdd7a90df40b2115/out rustc --crate-name crossbeam_utils --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "std"))' -C metadata=95f01987ba6e4ab0 -C extra-filename=-95f01987ba6e4ab0 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain` 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/lib.rs:42:7 940s | 940s 42 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s | 940s = 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` 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: `#[warn(unexpected_cfgs)]` on by default 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/lib.rs:65:11 940s | 940s 65 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/lib.rs:106:11 940s | 940s 106 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/lib.rs:74:23 940s | 940s 74 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/lib.rs:78:23 940s | 940s 78 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/lib.rs:81:23 940s | 940s 81 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:7:11 940s | 940s 7 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:25:11 940s | 940s 25 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/mod.rs:28:11 940s | 940s 28 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:1:11 940s | 940s 1 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:27:11 940s | 940s 27 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:19 940s | 940s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:36:35 940s | 940s 36 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 940s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:50:11 940s | 940s 50 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:19 940s | 940s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_sanitize_thread` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:53:35 940s | 940s 53 | not(any(miri, crossbeam_loom, crossbeam_sanitize_thread)), 940s | ^^^^^^^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_sanitize_thread)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_sanitize_thread)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:101:11 940s | 940s 101 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:107:7 940s | 940s 107 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 79 | impl_atomic!(AtomicBool, bool); 940s | ------------------------------ in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 79 | impl_atomic!(AtomicBool, bool); 940s | ------------------------------ in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 80 | impl_atomic!(AtomicUsize, usize); 940s | -------------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 80 | impl_atomic!(AtomicUsize, usize); 940s | -------------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 81 | impl_atomic!(AtomicIsize, isize); 940s | -------------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 81 | impl_atomic!(AtomicIsize, isize); 940s | -------------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 82 | impl_atomic!(AtomicU8, u8); 940s | -------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 82 | impl_atomic!(AtomicU8, u8); 940s | -------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 83 | impl_atomic!(AtomicI8, i8); 940s | -------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 83 | impl_atomic!(AtomicI8, i8); 940s | -------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 84 | impl_atomic!(AtomicU16, u16); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 84 | impl_atomic!(AtomicU16, u16); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 85 | impl_atomic!(AtomicI16, i16); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 85 | impl_atomic!(AtomicI16, i16); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 87 | impl_atomic!(AtomicU32, u32); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 87 | impl_atomic!(AtomicU32, u32); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 89 | impl_atomic!(AtomicI32, i32); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 89 | impl_atomic!(AtomicI32, i32); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 94 | impl_atomic!(AtomicU64, u64); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 94 | impl_atomic!(AtomicU64, u64); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_no_atomic` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:66:19 940s | 940s 66 | #[cfg(not(crossbeam_no_atomic))] 940s | ^^^^^^^^^^^^^^^^^^^ 940s ... 940s 99 | impl_atomic!(AtomicI64, i64); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_no_atomic)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_no_atomic)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/atomic/consume.rs:71:15 940s | 940s 71 | #[cfg(crossbeam_loom)] 940s | ^^^^^^^^^^^^^^ 940s ... 940s 99 | impl_atomic!(AtomicI64, i64); 940s | ---------------------------- in this macro invocation 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s = note: this warning originates in the macro `impl_atomic` (in Nightly builds, run with -Z macro-backtrace for more info) 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:7:11 940s | 940s 7 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:10:11 940s | 940s 10 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: unexpected `cfg` condition name: `crossbeam_loom` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-utils-0.8.19/src/sync/mod.rs:15:11 940s | 940s 15 | #[cfg(not(crossbeam_loom))] 940s | ^^^^^^^^^^^^^^ 940s | 940s = help: consider using a Cargo feature instead 940s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 940s [lints.rust] 940s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crossbeam_loom)'] } 940s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(crossbeam_loom)");` to the top of the `build.rs` 940s = note: see for more information about checking conditional configuration 940s 940s warning: `crossbeam-utils` (lib) generated 44 warnings (1 duplicate) 940s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/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. 940s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps OUT_DIR=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/build/libc-81cf1ff4fe9d7655/out rustc --crate-name libc --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=8a14e953bd95a320 -C extra-filename=-8a14e953bd95a320 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --cap-lints warn -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 940s warning: unused import: `crate::ntptimeval` 940s --> /tmp/tmp.CdpVEE8yBJ/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 940s | 940s 5 | use crate::ntptimeval; 940s | ^^^^^^^^^^^^^^^^^ 940s | 940s = note: `#[warn(unused_imports)]` on by default 940s 941s warning: `libc` (lib) generated 2 warnings (1 duplicate) 941s Compiling num_cpus v1.16.0 941s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=num_cpus CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/num_cpus-1.16.0 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/num_cpus-1.16.0/Cargo.toml CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='Get the number of CPUs on a machine.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num_cpus CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/num_cpus' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.16.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=16 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/num_cpus-1.16.0 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name num_cpus --edition=2015 /tmp/tmp.CdpVEE8yBJ/registry/num_cpus-1.16.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=aa8c4de8b3b224a9 -C extra-filename=-aa8c4de8b3b224a9 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern libc=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/liblibc-8a14e953bd95a320.rmeta --cap-lints warn -Ctarget-feature=+backchain` 941s warning: unexpected `cfg` condition value: `nacl` 941s --> /tmp/tmp.CdpVEE8yBJ/registry/num_cpus-1.16.0/src/lib.rs:355:5 941s | 941s 355 | target_os = "nacl", 941s | ^^^^^^^^^^^^^^^^^^ 941s | 941s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 941s = note: see for more information about checking conditional configuration 941s = note: `#[warn(unexpected_cfgs)]` on by default 941s 941s warning: unexpected `cfg` condition value: `nacl` 941s --> /tmp/tmp.CdpVEE8yBJ/registry/num_cpus-1.16.0/src/lib.rs:437:5 941s | 941s 437 | target_os = "nacl", 941s | ^^^^^^^^^^^^^^^^^^ 941s | 941s = 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`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, and `vxworks` and 5 more 941s = note: see for more information about checking conditional configuration 941s 942s Compiling futures-macro v0.3.31 942s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-macro-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-macro-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations. 942s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-macro-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_macro --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-macro-0.3.31/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 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' -C debug-assertions=off --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=05f86e4433211bfb -C extra-filename=-05f86e4433211bfb --out-dir /tmp/tmp.CdpVEE8yBJ/target/release/deps -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern proc_macro2=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libproc_macro2-51701034196816e3.rlib --extern quote=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libquote-188d7e577e2a83a9.rlib --extern syn=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libsyn-1e840a5d57ad3da8.rlib --extern proc_macro --cap-lints warn` 942s warning: `num_cpus` (lib) generated 3 warnings (1 duplicate) 942s Compiling crossbeam-channel v0.5.14 942s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=crossbeam_channel CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-channel-0.5.14 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-channel-0.5.14/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Multi-producer multi-consumer channels for message passing' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.5.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/crossbeam-channel-0.5.14 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name crossbeam_channel --edition=2021 /tmp/tmp.CdpVEE8yBJ/registry/crossbeam-channel-0.5.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --warn=unexpected_cfgs '--allow=clippy::lint_groups_priority' '--allow=clippy::declare_interior_mutable_const' --check-cfg 'cfg(crossbeam_loom)' --check-cfg 'cfg(crossbeam_sanitize)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=f2bd7628ff2a2e38 -C extra-filename=-f2bd7628ff2a2e38 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern crossbeam_utils=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-95f01987ba6e4ab0.rmeta --cap-lints warn -Ctarget-feature=+backchain` 942s Compiling futures-util v0.3.31 942s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library. 942s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_util --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-util-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="channel"' --cfg 'feature="futures-channel"' --cfg 'feature="futures-io"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="io"' --cfg 'feature="memchr"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "async-await-macro", "bilock", "channel", "default", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "sink", "slab", "std", "unstable", "write-all-vectored"))' -C metadata=0ebb2f72c29b5aad -C extra-filename=-0ebb2f72c29b5aad --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern futures_channel=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rmeta --extern futures_core=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_io=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_io-856e715f1261c1e4.rmeta --extern futures_macro=/tmp/tmp.CdpVEE8yBJ/target/release/deps/libfutures_macro-05f86e4433211bfb.so --extern futures_sink=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --extern futures_task=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern memchr=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libmemchr-f5c2681b9228f1dd.rmeta --extern pin_project_lite=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-29a395de1ae2cae0.rmeta --extern pin_utils=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libpin_utils-9cfd72a719d295aa.rmeta --extern slab=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libslab-1c4ff1cdfec01095.rmeta --cap-lints warn -Ctarget-feature=+backchain` 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/lib.rs:308:7 943s | 943s 308 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s = note: requested on the command line with `-W unexpected-cfgs` 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/future/try_future/mod.rs:6:7 943s | 943s 6 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/future/try_future/mod.rs:580:11 943s | 943s 580 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:6:7 943s | 943s 6 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/stream/try_stream/mod.rs:1154:11 943s | 943s 1154 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/sink/mod.rs:15:7 943s | 943s 15 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/sink/mod.rs:291:11 943s | 943s 291 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/task/spawn.rs:3:7 943s | 943s 3 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/task/spawn.rs:92:11 943s | 943s 92 | #[cfg(feature = "compat")] 943s | ^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `io-compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/io/mod.rs:19:7 943s | 943s 19 | #[cfg(feature = "io-compat")] 943s | ^^^^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `io-compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `io-compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/io/mod.rs:388:11 943s | 943s 388 | #[cfg(feature = "io-compat")] 943s | ^^^^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `io-compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: unexpected `cfg` condition value: `io-compat` 943s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-util-0.3.31/src/io/mod.rs:547:11 943s | 943s 547 | #[cfg(feature = "io-compat")] 943s | ^^^^^^^^^^^^^^^^^^^^^ 943s | 943s = note: expected values for `feature` are: `alloc`, `async-await`, `async-await-macro`, `bilock`, `channel`, `default`, `futures-channel`, `futures-io`, `futures-macro`, `futures-sink`, `io`, `memchr`, `sink`, `slab`, `std`, `unstable`, and `write-all-vectored` 943s = help: consider adding `io-compat` as a feature in `Cargo.toml` 943s = note: see for more information about checking conditional configuration 943s 943s warning: `crossbeam-channel` (lib) generated 1 warning (1 duplicate) 945s Compiling futures-executor v0.3.31 945s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-executor-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-executor-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library. 945s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-executor-0.3.31 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures_executor --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-executor-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 opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "num_cpus", "std", "thread-pool"))' -C metadata=39928b4d12caeb20 -C extra-filename=-39928b4d12caeb20 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern futures_core=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_task=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern futures_util=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_util-0ebb2f72c29b5aad.rmeta --cap-lints warn -Ctarget-feature=+backchain` 945s warning: `futures-util` (lib) generated 13 warnings (1 duplicate) 945s Compiling futures v0.3.30 945s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=futures CARGO_MANIFEST_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-0.3.30 CARGO_MANIFEST_PATH=/tmp/tmp.CdpVEE8yBJ/registry/futures-0.3.30/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='An implementation of futures and streams featuring zero allocations, 945s composability, and iterator-like interfaces. 945s ' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.30 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=30 CARGO_PKG_VERSION_PRE='' CARGO_RUSTC_CURRENT_DIR=/tmp/tmp.CdpVEE8yBJ/registry/futures-0.3.30 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name futures --edition=2018 /tmp/tmp.CdpVEE8yBJ/registry/futures-0.3.30/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="default"' --cfg 'feature="executor"' --cfg 'feature="futures-executor"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "async-await", "bilock", "default", "executor", "futures-executor", "std", "thread-pool", "unstable", "write-all-vectored"))' -C metadata=92396590ce286f11 -C extra-filename=-92396590ce286f11 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern futures_channel=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rmeta --extern futures_core=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_core-d16d76e23453e348.rmeta --extern futures_executor=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_executor-39928b4d12caeb20.rmeta --extern futures_io=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_io-856e715f1261c1e4.rmeta --extern futures_sink=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_sink-e03363f514c75d32.rmeta --extern futures_task=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_task-5502b03b418f6215.rmeta --extern futures_util=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_util-0ebb2f72c29b5aad.rmeta --cap-lints warn -Ctarget-feature=+backchain` 945s warning: unexpected `cfg` condition value: `compat` 945s --> /tmp/tmp.CdpVEE8yBJ/registry/futures-0.3.30/src/lib.rs:206:7 945s | 945s 206 | #[cfg(feature = "compat")] 945s | ^^^^^^^^^^^^^^^^^^ 945s | 945s = note: expected values for `feature` are: `alloc`, `async-await`, `bilock`, `default`, `executor`, `futures-executor`, `std`, `thread-pool`, `unstable`, and `write-all-vectored` 945s = help: consider adding `compat` as a feature in `Cargo.toml` 945s = note: see for more information about checking conditional configuration 945s = note: `#[warn(unexpected_cfgs)]` on by default 945s 945s warning: `futures` (lib) generated 2 warnings (1 duplicate) 945s warning: `futures-executor` (lib) generated 1 warning (1 duplicate) 945s Compiling rusty_pool v0.7.0 (/usr/share/cargo/registry/rusty_pool-0.7.0) 945s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_CRATE_NAME=rusty_pool CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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='' CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 LD_LIBRARY_PATH=/tmp/tmp.CdpVEE8yBJ/target/release/deps rustc --crate-name rusty_pool --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no --test --cfg 'feature="async"' --cfg 'feature="default"' --cfg 'feature="futures"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async", "default", "futures"))' -C metadata=cfad8f891300b369 -C extra-filename=-cfad8f891300b369 --out-dir /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps --target s390x-unknown-linux-gnu -C strip=debuginfo -L dependency=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps -L dependency=/tmp/tmp.CdpVEE8yBJ/target/release/deps --extern crossbeam_channel=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libcrossbeam_channel-f2bd7628ff2a2e38.rlib --extern futures=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures-92396590ce286f11.rlib --extern futures_channel=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_channel-d42437bdb693d8c2.rlib --extern futures_executor=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libfutures_executor-39928b4d12caeb20.rlib --extern num_cpus=/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/libnum_cpus-aa8c4de8b3b224a9.rlib -Ctarget-feature=+backchain` 945s warning: trait `ThreadSafe` is never used 945s --> src/lib.rs:136:7 945s | 945s 136 | trait ThreadSafe: Send {} 945s | ^^^^^^^^^^ 945s | 945s = note: `#[warn(dead_code)]` on by default 945s 947s warning: `rusty_pool` (lib test) generated 2 warnings (1 duplicate) 947s Finished `release` profile [optimized] target(s) in 10.46s 947s Running `CARGO=/usr/lib/rust-1.83/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/rusty_pool-0.7.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/rusty_pool-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='robinfriedli ' CARGO_PKG_DESCRIPTION='Self growing / shrinking `ThreadPool` implementation based on crossbeam'\''s multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support' CARGO_PKG_HOMEPAGE='https://github.com/robinfriedli/rusty_pool' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_pool CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/robinfriedli/rusty_pool' 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.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps:/tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release:/usr/lib/rust-1.83/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.CdpVEE8yBJ/target/s390x-unknown-linux-gnu/release/deps/rusty_pool-cfad8f891300b369 --skip 'tests::test_try_increment_worker_total' --skip 'tests::worker_count_test'` 947s 947s running 34 tests 947s test tests::stress_test ... ignored 947s test tests::test_builder_max_size ... ok 947s test tests::test_complete_fut ... ok 957s test tests::test_drop_all_receivers ... ok 967s test tests::test_drop_oneshot_receiver ... ok 967s test tests::test_empty_join ... ok 967s test tests::test_empty_shutdown_join ... ok 972s test tests::test_evaluate ... ok 972s test tests::test_evaluate_panic - should panic ... ok 987s test tests::it_works ... ok 998s test tests::test_join ... ok 1032s test tests::test_full_usage has been running for over 60 seconds 1047s test tests::test_full_usage ... ok 1057s test tests::test_join_enqueued_task has been running for over 60 seconds 1057s test tests::test_join_timeout ... ok 1058s test tests::test_join_enqueued_task ... ok 1062s test tests::test_join_when_complete ... ok 1072s test tests::test_multiple_evaluate ... ok 1077s test tests::test_panic_all ... ok 1078s test tests::test_multi_thread_join ... ok 1078s test tests::test_panic_on_0_max_pool_size - should panic ... ok 1078s test tests::test_panic_on_max_size_exceeds_half_usize - should panic ... ok 1078s test tests::test_panic_on_smaller_max_than_core_pool_size - should panic ... ok 1087s test tests::test_panic_all_core_threads ... ok 1093s test tests::test_panic_some ... ok 1094s test tests::test_shutdown ... ok 1098s test tests::test_shutdown_core_pool ... ok 1098s test tests::test_shutdown_idle_core_pool ... ok 1100s test tests::test_shutdown_after_complete ... ok 1105s test tests::test_shutdown_join_timeout ... ok 1108s test tests::test_shutdown_join ... ok 1108s test tests::test_spawn ... ok 1108s test tests::test_spawn_await ... ok 1108s test tests::test_start_and_use_core_threads ... ok 1108s test tests::test_start_core_threads ... ok 1110s test tests::test_shutdown_on_complete ... ok 1110s 1110s test result: ok. 33 passed; 0 failed; 1 ignored; 0 measured; 2 filtered out; finished in 163.01s 1110s 1110s /tmp/autopkgtest.U1T4ph/wrapper.sh: checking for leaked background processes... 1110s /tmp/autopkgtest.U1T4ph/wrapper.sh: waiting for tee/cat subprocesses... 1110s /tmp/autopkgtest.U1T4ph/wrapper.sh: cleaning up... 1110s /tmp/autopkgtest.U1T4ph/wrapper.sh: Exit status: 0 1110s autopkgtest: DBG: testbed command exited with code 0 1111s autopkgtest [03:08:37]: test rust-rusty-pool-0.7:default: -----------------------] 1111s autopkgtest: DBG: testbed executing test finished with exit status 0 1111s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Adefault-stdout /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3Adefault-stdout 1111s autopkgtest: DBG: got reply from testbed: ok 1111s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Adefault-stderr /tmp/autopkgtest-work.a2qqp9mw/out/rust-rusty-pool-0.7%3Adefault-stderr 1111s autopkgtest: DBG: got reply from testbed: ok 1111s autopkgtest [03:08:37]: test rust-rusty-pool-0.7:default: - - - - - - - - - - results - - - - - - - - - - 1111s rust-rusty-pool-0.7:default PASS 1111s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7%3Adefault-artifacts/ /tmp/autopkgtest-work.a2qqp9mw/out/artifacts/ 1111s autopkgtest: DBG: got reply from testbed: ok 1111s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.U1T4ph/rust-rusty-pool-0.7:default-artifacts', '/tmp/autopkgtest.U1T4ph/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1112s autopkgtest: DBG: testbed command exited with code 0 1112s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 1112s autopkgtest [03:08:38]: @@@@@@@@@@@@@@@@@@@@ summary 1112s rust-rusty-pool-0.7:@ PASS 1112s rust-rusty-pool-0.7: PASS 1112s rust-rusty-pool-0.7:async PASS 1112s rust-rusty-pool-0.7:default PASS 1112s autopkgtest: DBG: testbed stop 1112s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.U1T4ph 1112s autopkgtest: DBG: sending command to testbed: close 1116s autopkgtest: DBG: got reply from testbed: ok 1116s autopkgtest: DBG: sending command to testbed: quit 1116s nova [W] Using flock in prodstack6-s390x 1116s flock: timeout while waiting to get lock 1116s Creating nova instance adt-plucky-s390x-rust-rusty-pool-20250208-025005-juju-7f2275-prod-proposed-migration-environment-15-c9d37343-946f-46bf-b820-3a8ee96a19ef from image adt/ubuntu-plucky-s390x-server-20250208.img (UUID d06308fe-ec48-4e48-9e6b-040f36b4f5a2)... 1116s nova [W] Timed out waiting for edf5ee81-c79e-4066-a8b0-52837bcd0bde to get deleted. 1116s nova [W] Using flock in prodstack6-s390x 1116s Creating nova instance adt-plucky-s390x-rust-rusty-pool-20250208-025005-juju-7f2275-prod-proposed-migration-environment-15-c9d37343-946f-46bf-b820-3a8ee96a19ef from image adt/ubuntu-plucky-s390x-server-20250208.img (UUID d06308fe-ec48-4e48-9e6b-040f36b4f5a2)... 1116s nova [W] Timed out waiting for e5b3b9f7-a448-4916-aead-38c285113ca0 to get deleted. 1116s nova [W] Using flock in prodstack6-s390x 1116s Creating nova instance adt-plucky-s390x-rust-rusty-pool-20250208-025005-juju-7f2275-prod-proposed-migration-environment-15-c9d37343-946f-46bf-b820-3a8ee96a19ef from image adt/ubuntu-plucky-s390x-server-20250208.img (UUID d06308fe-ec48-4e48-9e6b-040f36b4f5a2)... 1116s nova [W] Timed out waiting for 10f5ee60-76bd-4969-9a98-fe5d08967a3c to get deleted.