0s autopkgtest: DBG: testbed init 0s autopkgtest [20:01:48]: starting date and time: 2025-02-11 20:01:48+0000 0s autopkgtest [20:01:48]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [20:01:48]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.mth4mcpt/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:rust-defaults,src:libgit2,src:rustc-1.84 --apt-upgrade rust-zbus-names --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-5.secgroup --name adt-plucky-s390x-rust-zbus-names-20250211-200148-juju-7f2275-prod-proposed-migration-environment-15-ab8baa7b-5671-4700-a1bd-db24e2cdcb8b --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 83s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.HSjdeH 83s autopkgtest: DBG: sending command to testbed: print-execute-command 83s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ygqi_9ip/runcmd 83s autopkgtest: DBG: sending command to testbed: capabilities 83s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert-full-system suggested-normal-user=ubuntu revert root-on-testbed 83s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 83s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.HSjdeH'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.HSjdeH/wrapper.sh 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.HSjdeH/wrapper.sh'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest [20:03:12]: testbed dpkg architecture: s390x 84s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest [20:03:12]: testbed apt version: 2.9.28 84s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed has eatmydata 84s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest [20:03:13]: @@@@@@@@@@@@@@@@@@@@ test bed setup 85s 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 [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest [20:03:13]: testbed release detected to be: None 85s 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 [] 85s autopkgtest: DBG: testbed command exited with code 0 85s 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 [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: adding APT source: Types: deb deb-src 85s URIs: http://ftpmaster.internal/ubuntu/ 85s Suites: plucky-proposed 85s Components: main restricted universe multiverse 85s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 85s 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 [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 85s Package: * 85s Pin: release plucky-proposed 85s Pin-Priority: 500 85s 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 [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest [20:03:14]: updating testbed package index (apt update) 86s 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'] 86s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 86s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 86s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 86s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 86s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [67.1 kB] 86s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.7 kB] 86s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [862 kB] 87s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [83.4 kB] 87s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [782 kB] 87s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [6852 B] 87s Fetched 1926 kB in 1s (1854 kB/s) 87s Reading package lists... 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 87s Package: * 87s Pin: release plucky-proposed 87s Pin-Priority: 100 87s 87s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 87s Pin: release plucky-proposed 87s Pin-Priority: 995 87s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s 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.HSjdeH/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s 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'] 88s + lsb_release --codename --short 88s + RELEASE=plucky 88s + cat 88s + [ plucky != trusty ] 88s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 88s Reading package lists... 88s Building dependency tree... 88s Reading state information... 88s Calculating upgrade... 88s The following packages were automatically installed and are no longer required: 88s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 88s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 88s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 88s linux-tools-6.11.0-8-generic 88s Use 'sudo apt autoremove' to remove them. 88s The following packages will be upgraded: 88s libpcap0.8t64 88s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 88s Need to get 155 kB of archives. 88s After this operation, 0 B of additional disk space will be used. 88s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpcap0.8t64 s390x 1.10.5-2ubuntu1 [155 kB] 89s Fetched 155 kB in 0s (447 kB/s) 89s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 89s Preparing to unpack .../libpcap0.8t64_1.10.5-2ubuntu1_s390x.deb ... 89s Unpacking libpcap0.8t64:s390x (1.10.5-2ubuntu1) over (1.10.5-1ubuntu1) ... 89s Setting up libpcap0.8t64:s390x (1.10.5-2ubuntu1) ... 89s Processing triggers for man-db (2.13.0-1) ... 89s Processing triggers for libc-bin (2.40-4ubuntu1) ... 90s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 90s + /usr/lib/apt/apt-helper analyze-pattern ?true 90s + uname -r 90s + sed s/\./\\./g 90s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 90s + apt list ?obsolete 90s + tail -n+2 90s + grep -v ^linux-.*6\.12\.0-15-generic.* 90s + cut -d/ -f1 90s + true 90s + obsolete_pkgs= 90s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 90s Reading package lists... 90s Building dependency tree... 90s Reading state information... 90s The following packages will be REMOVED: 90s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 90s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 90s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 90s linux-tools-6.11.0-8-generic* 90s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 90s After this operation, 167 MB disk space will be freed. 90s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 90s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 90s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 90s Removing libpython3.12t64:s390x (3.12.9-1) ... 90s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 90s Removing libnsl2:s390x (1.3.0-3build3) ... 90s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 90s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 91s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 92s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 92s Processing triggers for libc-bin (2.40-4ubuntu1) ... 92s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 92s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 92s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 92s + grep -q trusty /etc/lsb-release 92s + [ ! -d /usr/share/doc/unattended-upgrades ] 92s + [ ! -d /usr/share/doc/lxd ] 92s + [ ! -d /usr/share/doc/lxd-client ] 92s + [ ! -d /usr/share/doc/snapd ] 92s + type iptables 92s + cat 92s + chmod 755 /etc/rc.local 92s + . /etc/rc.local 92s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 92s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 92s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 92s + uname -m 92s + [ s390x = ppc64le ] 92s + [ -d /run/systemd/system ] 92s + systemd-detect-virt --quiet --vm 92s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 92s + cat 92s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 92s + echo COMPRESS=lz4 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest [20:03:20]: upgrading testbed (apt dist-upgrade and autopurge) 92s 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'] 92s Reading package lists... 92s Building dependency tree... 92s Reading state information... 92s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 92s Starting 2 pkgProblemResolver with broken count: 0 92s Done 93s Entering ResolveByKeep 93s 93s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 93s autopkgtest: DBG: testbed command exited with code 0 93s 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'] 93s Reading package lists... 93s Building dependency tree... 93s Reading state information... 93s Starting pkgProblemResolver with broken count: 0 93s Starting 2 pkgProblemResolver with broken count: 0 93s Done 94s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 94s autopkgtest: DBG: testbed command exited with code 0 94s 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.HSjdeH/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 94s autopkgtest: DBG: testbed command exited with code 1 94s autopkgtest [20:03:22]: rebooting testbed after setup commands that affected boot 94s autopkgtest: DBG: sending command to testbed: reboot 113s autopkgtest: DBG: got reply from testbed: ok 113s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 113s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.HSjdeH'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.HSjdeH/autopkgtest-reboot 114s autopkgtest: DBG: got reply from testbed: ok 114s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.HSjdeH'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.HSjdeH/autopkgtest-reboot-prepare 115s autopkgtest: DBG: got reply from testbed: ok 115s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [20:03:43]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 115s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.HSjdeH/testbed-packages"], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/testbed-packages /tmp/autopkgtest-work.mth4mcpt/out/testbed-packages 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 116s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.HSjdeH'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.HSjdeH/autopkgtest-reboot 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.HSjdeH'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.HSjdeH/autopkgtest-reboot-prepare 117s autopkgtest: DBG: got reply from testbed: ok 117s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.HSjdeH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: Binaries: initialising 117s autopkgtest [20:03:45]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-zbus-names 117s autopkgtest: DBG: blame += rust-zbus-names 117s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 117s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-zbus-names'], kind short, sout pipe, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-zbus-names-dev$'], kind short, sout pipe, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-zbus-names-dev=3.0.0-3'], kind short, sout pipe, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: install_deps: deps_new=[] 118s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.HSjdeH/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-zbus-names=3.0.0-3 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-zbus-names_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1'] 119s + cd / 119s + mktemp -d /tmp/autopkgtest.HSjdeH/build.XXX 119s + builddir=/tmp/autopkgtest.HSjdeH/build.DjY 119s + cd /tmp/autopkgtest.HSjdeH/build.DjY 119s + apt-get source -d -q --only-source rust-zbus-names=3.0.0-3 119s + OUT=Reading package lists... 119s NOTICE: 'rust-zbus-names' packaging is maintained in the 'Git' version control system at: 119s https://salsa.debian.org/rust-team/debcargo-conf.git [src/zbus-names] 119s Please use: 119s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/zbus-names] 119s to retrieve the latest (possibly unreleased) updates to the package. 119s Need to get 15.2 kB of source archives. 119s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (dsc) [1764 B] 119s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (tar) [10.7 kB] 119s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (diff) [2828 B] 119s Fetched 15.2 kB in 0s (46.2 kB/s) 119s Download complete and in download only mode 119s + [ -n ] 119s + + grep ^Get: 119s echo Reading package lists... 119s NOTICE: 'rust-zbus-names' packaging is maintained in the 'Git' version control system at: 119s https://salsa.debian.org/rust-team/debcargo-conf.git [src/zbus-names] 119s Please use: 119s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/zbus-names] 119s to retrieve the latest (possibly unreleased) updates to the package. 119s Need to get 15.2 kB of source archives. 119s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (dsc) [1764 B] 119s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (tar) [10.7 kB] 119s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (diff) [2828 B] 119s Fetched 15.2 kB in 0s (46.2 kB/s) 119s Download complete and in download only mode 119s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (dsc) [1764 B] 119s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (tar) [10.7 kB] 119s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-zbus-names 3.0.0-3 (diff) [2828 B] 119s + dpkg-source -x rust-zbus-names_3.0.0-3.dsc src 119s gpgv: Signature made Sun Jul 14 13:22:02 2024 UTC 119s gpgv: using EDDSA key 14593BFF4A5EBF6FE0E9716EECBEDBB607B9B2BE 119s gpgv: issuer "werdahias@riseup.net" 119s gpgv: Can't check signature: No public key 119s dpkg-source: warning: cannot verify inline signature for ./rust-zbus-names_3.0.0-3.dsc: no acceptable signature found 119s + chmod -R a+rX . 119s + cd src/. 119s + pwd 119s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [20:03:47]: testing package rust-zbus-names version 3.0.0-3 120s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/build.DjY/src/debian/ /tmp/autopkgtest-work.mth4mcpt/out/pkg/debian/ 120s autopkgtest: DBG: got reply from testbed: ok 120s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 120s autopkgtest: DBG: processing dependency @ 120s autopkgtest: DBG: synthesised dependency librust-zbus-names-dev 120s autopkgtest: DBG: Test defined: name rust-zbus-names:@ path None command "/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-zbus-names:@'] depends ['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 121s autopkgtest: DBG: processing dependency @ 121s autopkgtest: DBG: synthesised dependency librust-zbus-names-dev 121s autopkgtest: DBG: Test defined: name librust-zbus-names-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-zbus-names-dev:default'] depends ['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 121s autopkgtest: DBG: processing dependency @ 121s autopkgtest: DBG: synthesised dependency librust-zbus-names-dev 121s autopkgtest: DBG: Test defined: name librust-zbus-names-dev: path None command "/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-zbus-names-dev:'] depends ['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest [20:03:49]: build not needed 121s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/build.DjY/src/ /tmp/autopkgtest-work.mth4mcpt/out/tests-tree/ 121s autopkgtest: DBG: got reply from testbed: ok 121s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 121s autopkgtest: DBG: processing dependency @ 121s autopkgtest: DBG: synthesised dependency librust-zbus-names-dev 121s autopkgtest: DBG: Test defined: name rust-zbus-names:@ path None command "/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-zbus-names:@'] depends ['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 121s autopkgtest: DBG: processing dependency @ 121s autopkgtest: DBG: synthesised dependency librust-zbus-names-dev 121s autopkgtest: DBG: Test defined: name librust-zbus-names-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-zbus-names-dev:default'] depends ['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 121s autopkgtest: DBG: processing dependency @ 121s autopkgtest: DBG: synthesised dependency librust-zbus-names-dev 121s autopkgtest: DBG: Test defined: name librust-zbus-names-dev: path None command "/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-zbus-names-dev:'] depends ['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest [20:03:49]: test rust-zbus-names:@: preparing testbed 121s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 121s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 121s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-zbus-names-dev 121s autopkgtest: DBG: can use apt-get on testbed: True 121s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-zbus-names-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 121s Reading package lists... 122s Building dependency tree... 122s Reading state information... 122s Starting pkgProblemResolver with broken count: 0 122s Starting 2 pkgProblemResolver with broken count: 0 122s Done 122s The following NEW packages will be installed: 122s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 122s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 122s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 122s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 122s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl 122s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 122s libitm1 libmpc3 librust-ahash-dev librust-aho-corasick-dev 122s librust-allocator-api2-dev librust-anstream-dev librust-anstyle-dev 122s librust-anstyle-parse-dev librust-anstyle-query-dev librust-arbitrary-dev 122s librust-arrayvec-dev librust-atomic-dev librust-autocfg-dev 122s librust-bitflags-1-dev librust-blobby-dev librust-block-buffer-dev 122s librust-bumpalo-dev librust-bytemuck-derive-dev librust-bytemuck-dev 122s librust-byteorder-dev librust-cc-dev librust-cfg-if-dev librust-chrono-dev 122s librust-colorchoice-dev librust-compiler-builtins-dev librust-const-oid-dev 122s librust-const-random-dev librust-const-random-macro-dev 122s librust-cpufeatures-dev librust-critical-section-dev 122s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 122s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 122s librust-crypto-common-dev librust-defmt-dev librust-defmt-macros-dev 122s librust-defmt-parser-dev librust-deranged-dev librust-derive-arbitrary-dev 122s librust-digest-dev librust-either-dev librust-endi-dev 122s librust-enumflags2-derive-dev librust-enumflags2-dev librust-env-filter-dev 122s librust-env-logger-dev librust-equivalent-dev librust-erased-serde-dev 122s librust-form-urlencoded-dev librust-generic-array-dev librust-getrandom-dev 122s librust-hash32-dev librust-hashbrown-dev librust-heapless-dev 122s librust-humantime-dev librust-iana-time-zone-dev librust-idna-dev 122s librust-indexmap-dev librust-itoa-dev librust-jobserver-dev 122s librust-js-sys-dev librust-kstring-dev librust-libc-dev librust-libm-dev 122s librust-log-dev librust-md-5-dev librust-md5-asm-dev librust-memchr-dev 122s librust-no-panic-dev librust-num-conv-dev librust-num-threads-dev 122s librust-num-traits-dev librust-once-cell-dev librust-parking-lot-core-dev 122s librust-percent-encoding-dev librust-portable-atomic-dev 122s librust-powerfmt-dev librust-powerfmt-macros-dev librust-ppv-lite86-dev 122s librust-proc-macro-crate-dev librust-proc-macro-error-attr2-dev 122s librust-proc-macro-error2-dev librust-proc-macro2-dev 122s librust-pure-rust-locales-dev librust-quickcheck-dev librust-quote-dev 122s librust-rand-chacha-dev librust-rand-core+getrandom-dev 122s librust-rand-core+serde-dev librust-rand-core+std-dev librust-rand-core-dev 122s librust-rand-dev librust-rayon-core-dev librust-rayon-dev 122s librust-regex-automata-dev librust-regex-dev librust-regex-syntax-dev 122s librust-rustc-std-workspace-core-dev librust-ryu-dev librust-serde-bytes-dev 122s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 122s librust-serde-json-dev librust-serde-spanned-dev librust-serde-test-dev 122s librust-sha1-asm-dev librust-sha1-dev librust-shlex-dev librust-slog-dev 122s librust-smallvec-dev librust-stable-deref-trait-dev 122s librust-static-assertions-dev librust-subtle-dev librust-sval-buffer-dev 122s librust-sval-derive-dev librust-sval-dev librust-sval-dynamic-dev 122s librust-sval-fmt-dev librust-sval-ref-dev librust-sval-serde-dev 122s librust-syn-dev librust-thiserror-dev librust-thiserror-impl-dev 122s librust-time-core-dev librust-time-dev librust-time-macros-dev 122s librust-tiny-keccak-dev librust-toml-datetime-dev librust-toml-edit-dev 122s librust-typenum-dev librust-ufmt-write-dev librust-unicode-bidi-dev 122s librust-unicode-ident-dev librust-unicode-normalization-dev librust-url-dev 122s librust-utf8parse-dev librust-uuid-dev librust-value-bag-dev 122s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 122s librust-version-check-dev librust-wasm-bindgen-backend-dev 122s librust-wasm-bindgen-dev librust-wasm-bindgen-macro-dev 122s librust-wasm-bindgen-macro-support-dev librust-wasm-bindgen-shared-dev 122s librust-winnow-dev librust-zbus-names-dev librust-zerocopy-derive-dev 122s librust-zerocopy-dev librust-zeroize-derive-dev librust-zeroize-dev 122s librust-zvariant-derive-dev librust-zvariant-dev librust-zvariant-utils-dev 122s libstd-rust-1.84 libstd-rust-1.84-dev libtool libubsan1 m4 po-debconf rustc 122s rustc-1.84 123s 0 upgraded, 198 newly installed, 0 to remove and 0 not upgraded. 123s Need to get 139 MB of archives. 123s After this operation, 548 MB of additional disk space will be used. 123s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 125s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 125s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 125s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 125s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 125s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 125s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 127s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 129s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 129s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 129s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 129s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 129s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 129s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 129s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 129s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 129s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 129s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 130s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 130s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 130s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 130s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 130s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 130s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 130s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 131s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 131s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 131s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 131s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 131s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 131s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 131s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 131s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 131s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 131s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 131s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 131s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 131s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 131s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 131s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 131s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 131s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 131s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 131s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 131s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 131s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 131s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 131s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 131s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 131s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 131s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 131s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 131s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 131s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 131s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 131s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 131s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 131s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 131s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 131s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 131s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 131s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 131s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 131s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 131s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 131s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 131s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 131s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 131s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 131s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 131s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 131s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 132s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 132s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 132s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 132s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 132s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 132s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 132s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 132s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 132s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 132s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 132s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 132s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 132s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 132s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 132s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 132s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 132s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 132s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 132s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 132s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 132s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 132s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 132s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 132s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 132s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 132s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 132s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 132s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-aho-corasick-dev s390x 1.1.3-1 [146 kB] 132s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-dev s390x 1.0.8-1 [16.7 kB] 132s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 132s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 132s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arrayvec-dev s390x 0.7.6-1 [31.7 kB] 132s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-utf8parse-dev s390x 0.2.1-1 [15.0 kB] 132s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-parse-dev s390x 0.2.1-1 [17.1 kB] 132s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstyle-query-dev s390x 1.0.0-1 [9768 B] 132s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-colorchoice-dev s390x 1.0.0-1 [8338 B] 132s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-anstream-dev s390x 0.6.15-1 [25.7 kB] 133s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-derive-dev s390x 1.5.0-2 [18.7 kB] 133s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-dev s390x 1.21.0-1 [48.9 kB] 133s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-atomic-dev s390x 0.6.0-1 [15.5 kB] 133s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 133s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-1-dev s390x 1.3.2-7 [25.6 kB] 133s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 133s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 133s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 133s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 133s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bumpalo-dev s390x 3.16.0-1 [75.7 kB] 133s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 133s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 133s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 133s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-iana-time-zone-dev s390x 0.1.60-1 [25.1 kB] 133s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-shared-dev s390x 0.2.99-1 [9822 B] 133s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-backend-dev s390x 0.2.99-1 [30.5 kB] 133s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-support-dev s390x 0.2.99-1 [23.9 kB] 133s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-macro-dev s390x 0.2.99-1 [9304 B] 133s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wasm-bindgen-dev s390x 0.2.99-1 [44.1 kB] 133s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-js-sys-dev s390x 0.3.64-1 [71.9 kB] 133s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libm-dev s390x 0.2.8-1 [101 kB] 133s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-traits-dev s390x 0.2.19-2 [46.2 kB] 133s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pure-rust-locales-dev s390x 0.8.1-1 [112 kB] 133s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-chrono-dev s390x 0.4.39-2 [174 kB] 133s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 133s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpufeatures-dev s390x 0.2.16-1 [15.5 kB] 133s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 133s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 133s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 133s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-dev s390x 2.0.11-1 [21.9 kB] 133s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-dev s390x 2.0.11-1 [29.0 kB] 133s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-parser-dev s390x 0.4.1-1 [11.8 kB] 133s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error-attr2-dev s390x 2.0.0-1 [9402 B] 133s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-error2-dev s390x 2.0.1-1 [26.2 kB] 133s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-macros-dev s390x 0.4.0-1 [22.4 kB] 133s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-defmt-dev s390x 0.3.10-1 [26.8 kB] 133s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-powerfmt-macros-dev s390x 0.1.0-1 [10.5 kB] 133s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-powerfmt-dev s390x 0.2.0-1 [16.5 kB] 133s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 133s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-automata-dev s390x 0.4.9-2 [425 kB] 134s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-dev s390x 1.11.1-2 [201 kB] 134s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-env-filter-dev s390x 0.1.3-1 [15.0 kB] 134s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-humantime-dev s390x 2.1.0-2 [19.2 kB] 134s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-env-logger-dev s390x 0.11.5-2 [30.2 kB] 134s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 134s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 134s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 134s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 134s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 134s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quickcheck-dev s390x 1.0.3-5 [28.1 kB] 134s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-deranged-dev s390x 0.3.11-1 [18.4 kB] 134s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 134s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 134s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-endi-dev s390x 1.1.0-2build1 [6938 B] 134s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-enumflags2-derive-dev s390x 0.7.10-1 [10.1 kB] 134s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-enumflags2-dev s390x 0.7.10-1 [18.3 kB] 134s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-percent-encoding-dev s390x 2.3.1-1 [11.9 kB] 134s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-form-urlencoded-dev s390x 1.2.1-1 [10.8 kB] 134s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hash32-dev s390x 0.3.1-2 [12.1 kB] 134s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 134s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ufmt-write-dev s390x 0.1.0-1 [3768 B] 134s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-heapless-dev s390x 0.8.0-2 [69.4 kB] 134s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-bidi-dev s390x 0.3.17-1 [47.5 kB] 134s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-normalization-dev s390x 0.1.22-1 [104 kB] 134s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-idna-dev s390x 0.4.0-1 [222 kB] 134s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 134s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-kstring-dev s390x 2.0.0-1 [17.7 kB] 134s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md5-asm-dev s390x 0.5.0-2 [7516 B] 134s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-md-5-dev s390x 0.10.6-1 [17.5 kB] 134s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-conv-dev s390x 0.1.0-1 [8990 B] 134s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-threads-dev s390x 0.1.7-1 [9154 B] 134s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-spanned-dev s390x 0.6.7-1 [10.7 kB] 134s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-toml-datetime-dev s390x 0.6.8-1 [13.3 kB] 134s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winnow-dev s390x 0.6.18-1 [127 kB] 134s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-toml-edit-dev s390x 0.22.20-1 [94.1 kB] 134s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-crate-dev s390x 3.2.0-1 [13.4 kB] 134s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-bytes-dev s390x 0.11.12-1 [13.4 kB] 134s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-asm-dev s390x 0.5.1-2 [8060 B] 134s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sha1-dev s390x 0.10.6-1 [16.0 kB] 134s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slog-dev s390x 2.7.0-1 [44.0 kB] 134s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-core-dev s390x 0.1.2-1 [9136 B] 134s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-macros-dev s390x 0.2.19-1 [25.1 kB] 134s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-time-dev s390x 0.3.37-1 [102 kB] 134s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-url-dev s390x 2.5.2-1 [70.8 kB] 134s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-uuid-dev s390x 1.10.0-1 [44.2 kB] 134s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-utils-dev s390x 2.1.0-1 [9028 B] 134s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-derive-dev s390x 4.2.0-1 [13.3 kB] 134s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-dev s390x 4.2.0-2 [67.7 kB] 134s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zbus-names-dev s390x 3.0.0-3 [12.2 kB] 135s Fetched 139 MB in 12s (11.6 MB/s) 135s Selecting previously unselected package m4. 135s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 135s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 135s Unpacking m4 (1.4.19-5) ... 135s Selecting previously unselected package autoconf. 135s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 135s Unpacking autoconf (2.72-3) ... 135s Selecting previously unselected package autotools-dev. 135s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 135s Unpacking autotools-dev (20220109.1) ... 135s Selecting previously unselected package automake. 135s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 135s Unpacking automake (1:1.17-3) ... 135s Selecting previously unselected package autopoint. 135s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 135s Unpacking autopoint (0.23.1-1) ... 135s Selecting previously unselected package libgit2-1.9:s390x. 135s Preparing to unpack .../005-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 135s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 135s Selecting previously unselected package libstd-rust-1.84:s390x. 135s Preparing to unpack .../006-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 135s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 136s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 136s Preparing to unpack .../007-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 136s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 137s Selecting previously unselected package libisl23:s390x. 137s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 137s Unpacking libisl23:s390x (0.27-1) ... 137s Selecting previously unselected package libmpc3:s390x. 137s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 137s Unpacking libmpc3:s390x (1.3.1-1build2) ... 137s Selecting previously unselected package cpp-14-s390x-linux-gnu. 137s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package cpp-14. 137s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package cpp-s390x-linux-gnu. 137s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 137s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 137s Selecting previously unselected package cpp. 137s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 137s Unpacking cpp (4:14.2.0-1ubuntu1) ... 137s Selecting previously unselected package libcc1-0:s390x. 137s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package libgomp1:s390x. 137s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package libitm1:s390x. 137s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package libasan8:s390x. 137s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package libubsan1:s390x. 137s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package libgcc-14-dev:s390x. 137s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package gcc-14-s390x-linux-gnu. 137s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package gcc-14. 137s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 137s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 137s Selecting previously unselected package gcc-s390x-linux-gnu. 137s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 137s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 137s Selecting previously unselected package gcc. 137s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 137s Unpacking gcc (4:14.2.0-1ubuntu1) ... 137s Selecting previously unselected package rustc-1.84. 137s Preparing to unpack .../024-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 137s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 137s Selecting previously unselected package cargo-1.84. 137s Preparing to unpack .../025-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 137s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 138s Selecting previously unselected package libdebhelper-perl. 138s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 138s Unpacking libdebhelper-perl (13.23ubuntu1) ... 138s Selecting previously unselected package libtool. 138s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 138s Unpacking libtool (2.5.4-3build1) ... 138s Selecting previously unselected package dh-autoreconf. 138s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 138s Unpacking dh-autoreconf (20) ... 138s Selecting previously unselected package libarchive-zip-perl. 138s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 138s Unpacking libarchive-zip-perl (1.68-1) ... 138s Selecting previously unselected package libfile-stripnondeterminism-perl. 138s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 138s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 138s Selecting previously unselected package dh-strip-nondeterminism. 138s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 138s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 138s Selecting previously unselected package debugedit. 138s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 138s Unpacking debugedit (1:5.1-2) ... 138s Selecting previously unselected package dwz. 138s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 138s Unpacking dwz (0.15-1build6) ... 138s Selecting previously unselected package gettext. 138s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 138s Unpacking gettext (0.23.1-1) ... 138s Selecting previously unselected package intltool-debian. 138s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 138s Unpacking intltool-debian (0.35.0+20060710.6) ... 138s Selecting previously unselected package po-debconf. 138s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 138s Unpacking po-debconf (1.0.21+nmu1) ... 138s Selecting previously unselected package debhelper. 138s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 138s Unpacking debhelper (13.23ubuntu1) ... 138s Selecting previously unselected package rustc. 138s Preparing to unpack .../038-rustc_1.84.0ubuntu1_s390x.deb ... 138s Unpacking rustc (1.84.0ubuntu1) ... 138s Selecting previously unselected package cargo. 138s Preparing to unpack .../039-cargo_1.84.0ubuntu1_s390x.deb ... 138s Unpacking cargo (1.84.0ubuntu1) ... 138s Selecting previously unselected package dh-cargo-tools. 138s Preparing to unpack .../040-dh-cargo-tools_31ubuntu4_all.deb ... 138s Unpacking dh-cargo-tools (31ubuntu4) ... 138s Selecting previously unselected package dh-cargo. 138s Preparing to unpack .../041-dh-cargo_31ubuntu4_all.deb ... 138s Unpacking dh-cargo (31ubuntu4) ... 138s Selecting previously unselected package librust-critical-section-dev:s390x. 138s Preparing to unpack .../042-librust-critical-section-dev_1.2.0-1_s390x.deb ... 138s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 138s Selecting previously unselected package librust-unicode-ident-dev:s390x. 138s Preparing to unpack .../043-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 138s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 138s Selecting previously unselected package librust-proc-macro2-dev:s390x. 138s Preparing to unpack .../044-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 138s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 138s Selecting previously unselected package librust-quote-dev:s390x. 138s Preparing to unpack .../045-librust-quote-dev_1.0.37-1_s390x.deb ... 138s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 138s Selecting previously unselected package librust-syn-dev:s390x. 138s Preparing to unpack .../046-librust-syn-dev_2.0.96-2_s390x.deb ... 138s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 138s Selecting previously unselected package librust-serde-derive-dev:s390x. 138s Preparing to unpack .../047-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 138s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 138s Selecting previously unselected package librust-serde-dev:s390x. 138s Preparing to unpack .../048-librust-serde-dev_1.0.217-1_s390x.deb ... 138s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 138s Selecting previously unselected package librust-portable-atomic-dev:s390x. 138s Preparing to unpack .../049-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 138s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 138s Selecting previously unselected package librust-cfg-if-dev:s390x. 138s Preparing to unpack .../050-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 138s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 138s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 138s Preparing to unpack .../051-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 138s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 138s Selecting previously unselected package librust-libc-dev:s390x. 138s Preparing to unpack .../052-librust-libc-dev_0.2.169-1_s390x.deb ... 138s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 138s Selecting previously unselected package librust-getrandom-dev:s390x. 138s Preparing to unpack .../053-librust-getrandom-dev_0.2.15-1_s390x.deb ... 138s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 138s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 138s Preparing to unpack .../054-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 138s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 138s Selecting previously unselected package librust-arbitrary-dev:s390x. 138s Preparing to unpack .../055-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 138s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 138s Selecting previously unselected package librust-smallvec-dev:s390x. 138s Preparing to unpack .../056-librust-smallvec-dev_1.13.2-1_s390x.deb ... 138s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 138s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 138s Preparing to unpack .../057-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 138s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 138s Selecting previously unselected package librust-once-cell-dev:s390x. 138s Preparing to unpack .../058-librust-once-cell-dev_1.20.2-1_s390x.deb ... 138s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 138s Selecting previously unselected package librust-crunchy-dev:s390x. 138s Preparing to unpack .../059-librust-crunchy-dev_0.2.2-1_s390x.deb ... 138s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 138s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 138s Preparing to unpack .../060-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 138s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 138s Selecting previously unselected package librust-const-random-macro-dev:s390x. 138s Preparing to unpack .../061-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 138s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 138s Selecting previously unselected package librust-const-random-dev:s390x. 138s Preparing to unpack .../062-librust-const-random-dev_0.1.17-2_s390x.deb ... 138s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 138s Selecting previously unselected package librust-version-check-dev:s390x. 138s Preparing to unpack .../063-librust-version-check-dev_0.9.5-1_s390x.deb ... 138s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 138s Selecting previously unselected package librust-byteorder-dev:s390x. 138s Preparing to unpack .../064-librust-byteorder-dev_1.5.0-1_s390x.deb ... 138s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 138s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 138s Preparing to unpack .../065-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 138s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 138s Selecting previously unselected package librust-zerocopy-dev:s390x. 138s Preparing to unpack .../066-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 138s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 138s Selecting previously unselected package librust-ahash-dev. 138s Preparing to unpack .../067-librust-ahash-dev_0.8.11-9_all.deb ... 138s Unpacking librust-ahash-dev (0.8.11-9) ... 138s Selecting previously unselected package librust-sval-derive-dev:s390x. 138s Preparing to unpack .../068-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 138s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 138s Selecting previously unselected package librust-sval-dev:s390x. 138s Preparing to unpack .../069-librust-sval-dev_2.6.1-2_s390x.deb ... 138s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 138s Selecting previously unselected package librust-sval-ref-dev:s390x. 138s Preparing to unpack .../070-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 138s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 138s Selecting previously unselected package librust-erased-serde-dev:s390x. 138s Preparing to unpack .../071-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 138s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 138s Selecting previously unselected package librust-serde-fmt-dev. 138s Preparing to unpack .../072-librust-serde-fmt-dev_1.0.3-4_all.deb ... 138s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 138s Selecting previously unselected package librust-equivalent-dev:s390x. 138s Preparing to unpack .../073-librust-equivalent-dev_1.0.1-1_s390x.deb ... 138s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 138s Selecting previously unselected package librust-allocator-api2-dev:s390x. 138s Preparing to unpack .../074-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 138s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 138s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 138s Preparing to unpack .../075-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 138s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 138s Selecting previously unselected package librust-either-dev:s390x. 138s Preparing to unpack .../076-librust-either-dev_1.13.0-1_s390x.deb ... 138s Unpacking librust-either-dev:s390x (1.13.0-1) ... 138s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 138s Preparing to unpack .../077-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 138s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 138s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 138s Preparing to unpack .../078-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 138s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 138s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 138s Preparing to unpack .../079-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 138s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 138s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 138s Preparing to unpack .../080-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 138s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 138s Selecting previously unselected package librust-rayon-core-dev:s390x. 138s Preparing to unpack .../081-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 138s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 138s Selecting previously unselected package librust-rayon-dev:s390x. 138s Preparing to unpack .../082-librust-rayon-dev_1.10.0-1_s390x.deb ... 138s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 138s Selecting previously unselected package librust-hashbrown-dev:s390x. 138s Preparing to unpack .../083-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 138s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 138s Selecting previously unselected package librust-indexmap-dev:s390x. 138s Preparing to unpack .../084-librust-indexmap-dev_2.7.0-1_s390x.deb ... 138s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 138s Selecting previously unselected package librust-no-panic-dev:s390x. 138s Preparing to unpack .../085-librust-no-panic-dev_0.1.32-1_s390x.deb ... 138s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 138s Selecting previously unselected package librust-itoa-dev:s390x. 138s Preparing to unpack .../086-librust-itoa-dev_1.0.14-1_s390x.deb ... 138s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 138s Selecting previously unselected package librust-memchr-dev:s390x. 138s Preparing to unpack .../087-librust-memchr-dev_2.7.4-1_s390x.deb ... 138s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 138s Selecting previously unselected package librust-ryu-dev:s390x. 138s Preparing to unpack .../088-librust-ryu-dev_1.0.19-1_s390x.deb ... 138s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 138s Selecting previously unselected package librust-serde-json-dev:s390x. 138s Preparing to unpack .../089-librust-serde-json-dev_1.0.133-1_s390x.deb ... 138s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 138s Selecting previously unselected package librust-serde-test-dev:s390x. 138s Preparing to unpack .../090-librust-serde-test-dev_1.0.171-1_s390x.deb ... 138s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 138s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 138s Preparing to unpack .../091-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 138s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 138s Selecting previously unselected package librust-sval-buffer-dev:s390x. 138s Preparing to unpack .../092-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 138s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 138s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 138s Preparing to unpack .../093-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 138s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 138s Selecting previously unselected package librust-sval-fmt-dev:s390x. 138s Preparing to unpack .../094-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 138s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 138s Selecting previously unselected package librust-sval-serde-dev:s390x. 138s Preparing to unpack .../095-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 138s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 138s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 138s Preparing to unpack .../096-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 138s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 138s Selecting previously unselected package librust-value-bag-dev:s390x. 138s Preparing to unpack .../097-librust-value-bag-dev_1.9.0-1_s390x.deb ... 138s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 139s Selecting previously unselected package librust-log-dev:s390x. 139s Preparing to unpack .../098-librust-log-dev_0.4.22-1_s390x.deb ... 139s Unpacking librust-log-dev:s390x (0.4.22-1) ... 139s Selecting previously unselected package librust-aho-corasick-dev:s390x. 139s Preparing to unpack .../099-librust-aho-corasick-dev_1.1.3-1_s390x.deb ... 139s Unpacking librust-aho-corasick-dev:s390x (1.1.3-1) ... 139s Selecting previously unselected package librust-anstyle-dev:s390x. 139s Preparing to unpack .../100-librust-anstyle-dev_1.0.8-1_s390x.deb ... 139s Unpacking librust-anstyle-dev:s390x (1.0.8-1) ... 139s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 139s Preparing to unpack .../101-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 139s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 139s Selecting previously unselected package librust-zeroize-dev:s390x. 139s Preparing to unpack .../102-librust-zeroize-dev_1.8.1-1_s390x.deb ... 139s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 139s Selecting previously unselected package librust-arrayvec-dev:s390x. 139s Preparing to unpack .../103-librust-arrayvec-dev_0.7.6-1_s390x.deb ... 139s Unpacking librust-arrayvec-dev:s390x (0.7.6-1) ... 139s Selecting previously unselected package librust-utf8parse-dev:s390x. 139s Preparing to unpack .../104-librust-utf8parse-dev_0.2.1-1_s390x.deb ... 139s Unpacking librust-utf8parse-dev:s390x (0.2.1-1) ... 139s Selecting previously unselected package librust-anstyle-parse-dev:s390x. 139s Preparing to unpack .../105-librust-anstyle-parse-dev_0.2.1-1_s390x.deb ... 139s Unpacking librust-anstyle-parse-dev:s390x (0.2.1-1) ... 139s Selecting previously unselected package librust-anstyle-query-dev:s390x. 139s Preparing to unpack .../106-librust-anstyle-query-dev_1.0.0-1_s390x.deb ... 139s Unpacking librust-anstyle-query-dev:s390x (1.0.0-1) ... 139s Selecting previously unselected package librust-colorchoice-dev:s390x. 139s Preparing to unpack .../107-librust-colorchoice-dev_1.0.0-1_s390x.deb ... 139s Unpacking librust-colorchoice-dev:s390x (1.0.0-1) ... 139s Selecting previously unselected package librust-anstream-dev:s390x. 139s Preparing to unpack .../108-librust-anstream-dev_0.6.15-1_s390x.deb ... 139s Unpacking librust-anstream-dev:s390x (0.6.15-1) ... 139s Selecting previously unselected package librust-bytemuck-derive-dev:s390x. 139s Preparing to unpack .../109-librust-bytemuck-derive-dev_1.5.0-2_s390x.deb ... 139s Unpacking librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 139s Selecting previously unselected package librust-bytemuck-dev:s390x. 139s Preparing to unpack .../110-librust-bytemuck-dev_1.21.0-1_s390x.deb ... 139s Unpacking librust-bytemuck-dev:s390x (1.21.0-1) ... 139s Selecting previously unselected package librust-atomic-dev:s390x. 139s Preparing to unpack .../111-librust-atomic-dev_0.6.0-1_s390x.deb ... 139s Unpacking librust-atomic-dev:s390x (0.6.0-1) ... 139s Selecting previously unselected package librust-autocfg-dev:s390x. 139s Preparing to unpack .../112-librust-autocfg-dev_1.1.0-1_s390x.deb ... 139s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 139s Selecting previously unselected package librust-bitflags-1-dev:s390x. 139s Preparing to unpack .../113-librust-bitflags-1-dev_1.3.2-7_s390x.deb ... 139s Unpacking librust-bitflags-1-dev:s390x (1.3.2-7) ... 139s Selecting previously unselected package librust-blobby-dev:s390x. 139s Preparing to unpack .../114-librust-blobby-dev_0.3.1-1_s390x.deb ... 139s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 139s Selecting previously unselected package librust-typenum-dev:s390x. 139s Preparing to unpack .../115-librust-typenum-dev_1.17.0-2_s390x.deb ... 139s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 139s Selecting previously unselected package librust-generic-array-dev:s390x. 139s Preparing to unpack .../116-librust-generic-array-dev_0.14.7-1_s390x.deb ... 139s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 139s Selecting previously unselected package librust-block-buffer-dev:s390x. 139s Preparing to unpack .../117-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 139s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 139s Selecting previously unselected package librust-bumpalo-dev:s390x. 139s Preparing to unpack .../118-librust-bumpalo-dev_3.16.0-1_s390x.deb ... 139s Unpacking librust-bumpalo-dev:s390x (3.16.0-1) ... 139s Selecting previously unselected package librust-jobserver-dev:s390x. 139s Preparing to unpack .../119-librust-jobserver-dev_0.1.32-1_s390x.deb ... 139s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 139s Selecting previously unselected package librust-shlex-dev:s390x. 139s Preparing to unpack .../120-librust-shlex-dev_1.3.0-1_s390x.deb ... 139s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 139s Selecting previously unselected package librust-cc-dev:s390x. 139s Preparing to unpack .../121-librust-cc-dev_1.1.14-1_s390x.deb ... 139s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 139s Selecting previously unselected package librust-iana-time-zone-dev:s390x. 139s Preparing to unpack .../122-librust-iana-time-zone-dev_0.1.60-1_s390x.deb ... 139s Unpacking librust-iana-time-zone-dev:s390x (0.1.60-1) ... 139s Selecting previously unselected package librust-wasm-bindgen-shared-dev:s390x. 139s Preparing to unpack .../123-librust-wasm-bindgen-shared-dev_0.2.99-1_s390x.deb ... 139s Unpacking librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 139s Selecting previously unselected package librust-wasm-bindgen-backend-dev:s390x. 139s Preparing to unpack .../124-librust-wasm-bindgen-backend-dev_0.2.99-1_s390x.deb ... 139s Unpacking librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 139s Selecting previously unselected package librust-wasm-bindgen-macro-support-dev:s390x. 139s Preparing to unpack .../125-librust-wasm-bindgen-macro-support-dev_0.2.99-1_s390x.deb ... 139s Unpacking librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 139s Selecting previously unselected package librust-wasm-bindgen-macro-dev:s390x. 139s Preparing to unpack .../126-librust-wasm-bindgen-macro-dev_0.2.99-1_s390x.deb ... 139s Unpacking librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 139s Selecting previously unselected package librust-wasm-bindgen-dev:s390x. 139s Preparing to unpack .../127-librust-wasm-bindgen-dev_0.2.99-1_s390x.deb ... 139s Unpacking librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 139s Selecting previously unselected package librust-js-sys-dev:s390x. 139s Preparing to unpack .../128-librust-js-sys-dev_0.3.64-1_s390x.deb ... 139s Unpacking librust-js-sys-dev:s390x (0.3.64-1) ... 139s Selecting previously unselected package librust-libm-dev:s390x. 139s Preparing to unpack .../129-librust-libm-dev_0.2.8-1_s390x.deb ... 139s Unpacking librust-libm-dev:s390x (0.2.8-1) ... 139s Selecting previously unselected package librust-num-traits-dev:s390x. 139s Preparing to unpack .../130-librust-num-traits-dev_0.2.19-2_s390x.deb ... 139s Unpacking librust-num-traits-dev:s390x (0.2.19-2) ... 139s Selecting previously unselected package librust-pure-rust-locales-dev:s390x. 139s Preparing to unpack .../131-librust-pure-rust-locales-dev_0.8.1-1_s390x.deb ... 139s Unpacking librust-pure-rust-locales-dev:s390x (0.8.1-1) ... 139s Selecting previously unselected package librust-chrono-dev:s390x. 139s Preparing to unpack .../132-librust-chrono-dev_0.4.39-2_s390x.deb ... 139s Unpacking librust-chrono-dev:s390x (0.4.39-2) ... 139s Selecting previously unselected package librust-const-oid-dev:s390x. 139s Preparing to unpack .../133-librust-const-oid-dev_0.9.6-1_s390x.deb ... 139s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 139s Selecting previously unselected package librust-cpufeatures-dev:s390x. 139s Preparing to unpack .../134-librust-cpufeatures-dev_0.2.16-1_s390x.deb ... 139s Unpacking librust-cpufeatures-dev:s390x (0.2.16-1) ... 139s Selecting previously unselected package librust-rand-core-dev:s390x. 139s Preparing to unpack .../135-librust-rand-core-dev_0.6.4-2_s390x.deb ... 139s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 139s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 139s Preparing to unpack .../136-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 139s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 139s Selecting previously unselected package librust-crypto-common-dev:s390x. 139s Preparing to unpack .../137-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 139s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 139s Selecting previously unselected package librust-thiserror-impl-dev:s390x. 139s Preparing to unpack .../138-librust-thiserror-impl-dev_2.0.11-1_s390x.deb ... 139s Unpacking librust-thiserror-impl-dev:s390x (2.0.11-1) ... 139s Selecting previously unselected package librust-thiserror-dev:s390x. 139s Preparing to unpack .../139-librust-thiserror-dev_2.0.11-1_s390x.deb ... 139s Unpacking librust-thiserror-dev:s390x (2.0.11-1) ... 139s Selecting previously unselected package librust-defmt-parser-dev:s390x. 139s Preparing to unpack .../140-librust-defmt-parser-dev_0.4.1-1_s390x.deb ... 139s Unpacking librust-defmt-parser-dev:s390x (0.4.1-1) ... 139s Selecting previously unselected package librust-proc-macro-error-attr2-dev:s390x. 139s Preparing to unpack .../141-librust-proc-macro-error-attr2-dev_2.0.0-1_s390x.deb ... 139s Unpacking librust-proc-macro-error-attr2-dev:s390x (2.0.0-1) ... 139s Selecting previously unselected package librust-proc-macro-error2-dev:s390x. 139s Preparing to unpack .../142-librust-proc-macro-error2-dev_2.0.1-1_s390x.deb ... 139s Unpacking librust-proc-macro-error2-dev:s390x (2.0.1-1) ... 139s Selecting previously unselected package librust-defmt-macros-dev:s390x. 139s Preparing to unpack .../143-librust-defmt-macros-dev_0.4.0-1_s390x.deb ... 139s Unpacking librust-defmt-macros-dev:s390x (0.4.0-1) ... 139s Selecting previously unselected package librust-defmt-dev:s390x. 139s Preparing to unpack .../144-librust-defmt-dev_0.3.10-1_s390x.deb ... 139s Unpacking librust-defmt-dev:s390x (0.3.10-1) ... 139s Selecting previously unselected package librust-powerfmt-macros-dev:s390x. 139s Preparing to unpack .../145-librust-powerfmt-macros-dev_0.1.0-1_s390x.deb ... 139s Unpacking librust-powerfmt-macros-dev:s390x (0.1.0-1) ... 139s Selecting previously unselected package librust-powerfmt-dev:s390x. 139s Preparing to unpack .../146-librust-powerfmt-dev_0.2.0-1_s390x.deb ... 139s Unpacking librust-powerfmt-dev:s390x (0.2.0-1) ... 139s Selecting previously unselected package librust-regex-syntax-dev:s390x. 139s Preparing to unpack .../147-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 139s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 139s Selecting previously unselected package librust-regex-automata-dev:s390x. 139s Preparing to unpack .../148-librust-regex-automata-dev_0.4.9-2_s390x.deb ... 139s Unpacking librust-regex-automata-dev:s390x (0.4.9-2) ... 139s Selecting previously unselected package librust-regex-dev:s390x. 139s Preparing to unpack .../149-librust-regex-dev_1.11.1-2_s390x.deb ... 139s Unpacking librust-regex-dev:s390x (1.11.1-2) ... 139s Selecting previously unselected package librust-env-filter-dev:s390x. 139s Preparing to unpack .../150-librust-env-filter-dev_0.1.3-1_s390x.deb ... 139s Unpacking librust-env-filter-dev:s390x (0.1.3-1) ... 139s Selecting previously unselected package librust-humantime-dev:s390x. 139s Preparing to unpack .../151-librust-humantime-dev_2.1.0-2_s390x.deb ... 139s Unpacking librust-humantime-dev:s390x (2.1.0-2) ... 139s Selecting previously unselected package librust-env-logger-dev:s390x. 139s Preparing to unpack .../152-librust-env-logger-dev_0.11.5-2_s390x.deb ... 139s Unpacking librust-env-logger-dev:s390x (0.11.5-2) ... 139s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 139s Preparing to unpack .../153-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 139s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 139s Selecting previously unselected package librust-rand-chacha-dev:s390x. 139s Preparing to unpack .../154-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 139s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 139s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 139s Preparing to unpack .../155-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 139s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 139s Selecting previously unselected package librust-rand-core+std-dev:s390x. 139s Preparing to unpack .../156-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 139s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 139s Selecting previously unselected package librust-rand-dev:s390x. 139s Preparing to unpack .../157-librust-rand-dev_0.8.5-1_s390x.deb ... 139s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 139s Selecting previously unselected package librust-quickcheck-dev:s390x. 139s Preparing to unpack .../158-librust-quickcheck-dev_1.0.3-5_s390x.deb ... 139s Unpacking librust-quickcheck-dev:s390x (1.0.3-5) ... 139s Selecting previously unselected package librust-deranged-dev:s390x. 139s Preparing to unpack .../159-librust-deranged-dev_0.3.11-1_s390x.deb ... 139s Unpacking librust-deranged-dev:s390x (0.3.11-1) ... 139s Selecting previously unselected package librust-subtle-dev:s390x. 139s Preparing to unpack .../160-librust-subtle-dev_2.6.1-1_s390x.deb ... 139s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 139s Selecting previously unselected package librust-digest-dev:s390x. 139s Preparing to unpack .../161-librust-digest-dev_0.10.7-2_s390x.deb ... 139s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 139s Selecting previously unselected package librust-endi-dev:s390x. 139s Preparing to unpack .../162-librust-endi-dev_1.1.0-2build1_s390x.deb ... 139s Unpacking librust-endi-dev:s390x (1.1.0-2build1) ... 139s Selecting previously unselected package librust-enumflags2-derive-dev:s390x. 139s Preparing to unpack .../163-librust-enumflags2-derive-dev_0.7.10-1_s390x.deb ... 139s Unpacking librust-enumflags2-derive-dev:s390x (0.7.10-1) ... 139s Selecting previously unselected package librust-enumflags2-dev:s390x. 139s Preparing to unpack .../164-librust-enumflags2-dev_0.7.10-1_s390x.deb ... 139s Unpacking librust-enumflags2-dev:s390x (0.7.10-1) ... 139s Selecting previously unselected package librust-percent-encoding-dev:s390x. 139s Preparing to unpack .../165-librust-percent-encoding-dev_2.3.1-1_s390x.deb ... 139s Unpacking librust-percent-encoding-dev:s390x (2.3.1-1) ... 139s Selecting previously unselected package librust-form-urlencoded-dev:s390x. 139s Preparing to unpack .../166-librust-form-urlencoded-dev_1.2.1-1_s390x.deb ... 139s Unpacking librust-form-urlencoded-dev:s390x (1.2.1-1) ... 139s Selecting previously unselected package librust-hash32-dev:s390x. 139s Preparing to unpack .../167-librust-hash32-dev_0.3.1-2_s390x.deb ... 139s Unpacking librust-hash32-dev:s390x (0.3.1-2) ... 139s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 139s Preparing to unpack .../168-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 139s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 139s Selecting previously unselected package librust-ufmt-write-dev:s390x. 139s Preparing to unpack .../169-librust-ufmt-write-dev_0.1.0-1_s390x.deb ... 139s Unpacking librust-ufmt-write-dev:s390x (0.1.0-1) ... 139s Selecting previously unselected package librust-heapless-dev:s390x. 139s Preparing to unpack .../170-librust-heapless-dev_0.8.0-2_s390x.deb ... 139s Unpacking librust-heapless-dev:s390x (0.8.0-2) ... 139s Selecting previously unselected package librust-unicode-bidi-dev:s390x. 139s Preparing to unpack .../171-librust-unicode-bidi-dev_0.3.17-1_s390x.deb ... 139s Unpacking librust-unicode-bidi-dev:s390x (0.3.17-1) ... 139s Selecting previously unselected package librust-unicode-normalization-dev:s390x. 139s Preparing to unpack .../172-librust-unicode-normalization-dev_0.1.22-1_s390x.deb ... 139s Unpacking librust-unicode-normalization-dev:s390x (0.1.22-1) ... 139s Selecting previously unselected package librust-idna-dev:s390x. 139s Preparing to unpack .../173-librust-idna-dev_0.4.0-1_s390x.deb ... 139s Unpacking librust-idna-dev:s390x (0.4.0-1) ... 139s Selecting previously unselected package librust-static-assertions-dev:s390x. 139s Preparing to unpack .../174-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 139s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 139s Selecting previously unselected package librust-kstring-dev:s390x. 139s Preparing to unpack .../175-librust-kstring-dev_2.0.0-1_s390x.deb ... 139s Unpacking librust-kstring-dev:s390x (2.0.0-1) ... 140s Selecting previously unselected package librust-md5-asm-dev:s390x. 140s Preparing to unpack .../176-librust-md5-asm-dev_0.5.0-2_s390x.deb ... 140s Unpacking librust-md5-asm-dev:s390x (0.5.0-2) ... 140s Selecting previously unselected package librust-md-5-dev:s390x. 140s Preparing to unpack .../177-librust-md-5-dev_0.10.6-1_s390x.deb ... 140s Unpacking librust-md-5-dev:s390x (0.10.6-1) ... 140s Selecting previously unselected package librust-num-conv-dev:s390x. 140s Preparing to unpack .../178-librust-num-conv-dev_0.1.0-1_s390x.deb ... 140s Unpacking librust-num-conv-dev:s390x (0.1.0-1) ... 140s Selecting previously unselected package librust-num-threads-dev:s390x. 140s Preparing to unpack .../179-librust-num-threads-dev_0.1.7-1_s390x.deb ... 140s Unpacking librust-num-threads-dev:s390x (0.1.7-1) ... 140s Selecting previously unselected package librust-serde-spanned-dev:s390x. 140s Preparing to unpack .../180-librust-serde-spanned-dev_0.6.7-1_s390x.deb ... 140s Unpacking librust-serde-spanned-dev:s390x (0.6.7-1) ... 140s Selecting previously unselected package librust-toml-datetime-dev:s390x. 140s Preparing to unpack .../181-librust-toml-datetime-dev_0.6.8-1_s390x.deb ... 140s Unpacking librust-toml-datetime-dev:s390x (0.6.8-1) ... 140s Selecting previously unselected package librust-winnow-dev:s390x. 140s Preparing to unpack .../182-librust-winnow-dev_0.6.18-1_s390x.deb ... 140s Unpacking librust-winnow-dev:s390x (0.6.18-1) ... 140s Selecting previously unselected package librust-toml-edit-dev:s390x. 140s Preparing to unpack .../183-librust-toml-edit-dev_0.22.20-1_s390x.deb ... 140s Unpacking librust-toml-edit-dev:s390x (0.22.20-1) ... 140s Selecting previously unselected package librust-proc-macro-crate-dev:s390x. 140s Preparing to unpack .../184-librust-proc-macro-crate-dev_3.2.0-1_s390x.deb ... 140s Unpacking librust-proc-macro-crate-dev:s390x (3.2.0-1) ... 140s Selecting previously unselected package librust-serde-bytes-dev:s390x. 140s Preparing to unpack .../185-librust-serde-bytes-dev_0.11.12-1_s390x.deb ... 140s Unpacking librust-serde-bytes-dev:s390x (0.11.12-1) ... 140s Selecting previously unselected package librust-sha1-asm-dev:s390x. 140s Preparing to unpack .../186-librust-sha1-asm-dev_0.5.1-2_s390x.deb ... 140s Unpacking librust-sha1-asm-dev:s390x (0.5.1-2) ... 140s Selecting previously unselected package librust-sha1-dev:s390x. 140s Preparing to unpack .../187-librust-sha1-dev_0.10.6-1_s390x.deb ... 140s Unpacking librust-sha1-dev:s390x (0.10.6-1) ... 140s Selecting previously unselected package librust-slog-dev:s390x. 140s Preparing to unpack .../188-librust-slog-dev_2.7.0-1_s390x.deb ... 140s Unpacking librust-slog-dev:s390x (2.7.0-1) ... 140s Selecting previously unselected package librust-time-core-dev:s390x. 140s Preparing to unpack .../189-librust-time-core-dev_0.1.2-1_s390x.deb ... 140s Unpacking librust-time-core-dev:s390x (0.1.2-1) ... 140s Selecting previously unselected package librust-time-macros-dev:s390x. 140s Preparing to unpack .../190-librust-time-macros-dev_0.2.19-1_s390x.deb ... 140s Unpacking librust-time-macros-dev:s390x (0.2.19-1) ... 140s Selecting previously unselected package librust-time-dev:s390x. 140s Preparing to unpack .../191-librust-time-dev_0.3.37-1_s390x.deb ... 140s Unpacking librust-time-dev:s390x (0.3.37-1) ... 140s Selecting previously unselected package librust-url-dev:s390x. 140s Preparing to unpack .../192-librust-url-dev_2.5.2-1_s390x.deb ... 140s Unpacking librust-url-dev:s390x (2.5.2-1) ... 140s Selecting previously unselected package librust-uuid-dev:s390x. 140s Preparing to unpack .../193-librust-uuid-dev_1.10.0-1_s390x.deb ... 140s Unpacking librust-uuid-dev:s390x (1.10.0-1) ... 140s Selecting previously unselected package librust-zvariant-utils-dev:s390x. 140s Preparing to unpack .../194-librust-zvariant-utils-dev_2.1.0-1_s390x.deb ... 140s Unpacking librust-zvariant-utils-dev:s390x (2.1.0-1) ... 140s Selecting previously unselected package librust-zvariant-derive-dev:s390x. 140s Preparing to unpack .../195-librust-zvariant-derive-dev_4.2.0-1_s390x.deb ... 140s Unpacking librust-zvariant-derive-dev:s390x (4.2.0-1) ... 140s Selecting previously unselected package librust-zvariant-dev:s390x. 140s Preparing to unpack .../196-librust-zvariant-dev_4.2.0-2_s390x.deb ... 140s Unpacking librust-zvariant-dev:s390x (4.2.0-2) ... 140s Selecting previously unselected package librust-zbus-names-dev:s390x. 140s Preparing to unpack .../197-librust-zbus-names-dev_3.0.0-3_s390x.deb ... 140s Unpacking librust-zbus-names-dev:s390x (3.0.0-3) ... 140s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 140s Setting up librust-either-dev:s390x (1.13.0-1) ... 140s Setting up dh-cargo-tools (31ubuntu4) ... 140s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 140s Setting up librust-anstyle-dev:s390x (1.0.8-1) ... 140s Setting up librust-wasm-bindgen-shared-dev:s390x (0.2.99-1) ... 140s Setting up libarchive-zip-perl (1.68-1) ... 140s Setting up librust-colorchoice-dev:s390x (1.0.0-1) ... 140s Setting up libdebhelper-perl (13.23ubuntu1) ... 140s Setting up librust-endi-dev:s390x (1.1.0-2build1) ... 140s Setting up librust-libm-dev:s390x (0.2.8-1) ... 140s Setting up m4 (1.4.19-5) ... 140s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 140s Setting up librust-humantime-dev:s390x (2.1.0-2) ... 140s Setting up librust-anstyle-query-dev:s390x (1.0.0-1) ... 140s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 140s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 140s Setting up librust-ufmt-write-dev:s390x (0.1.0-1) ... 140s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 140s Setting up librust-utf8parse-dev:s390x (0.2.1-1) ... 140s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 140s Setting up autotools-dev (20220109.1) ... 140s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 140s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 140s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 140s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 140s Setting up librust-iana-time-zone-dev:s390x (0.1.60-1) ... 140s Setting up libmpc3:s390x (1.3.1-1build2) ... 140s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 140s Setting up autopoint (0.23.1-1) ... 140s Setting up librust-time-core-dev:s390x (0.1.2-1) ... 140s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 140s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 140s Setting up autoconf (2.72-3) ... 140s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 140s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 140s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 140s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 140s Setting up dwz (0.15-1build6) ... 140s Setting up librust-bitflags-1-dev:s390x (1.3.2-7) ... 140s Setting up librust-slog-dev:s390x (2.7.0-1) ... 140s Setting up librust-pure-rust-locales-dev:s390x (0.8.1-1) ... 140s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 140s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 140s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 140s Setting up debugedit (1:5.1-2) ... 140s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 140s Setting up librust-percent-encoding-dev:s390x (2.3.1-1) ... 140s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 140s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 140s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 140s Setting up libisl23:s390x (0.27-1) ... 140s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 140s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 140s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 140s Setting up librust-num-conv-dev:s390x (0.1.0-1) ... 140s Setting up automake (1:1.17-3) ... 140s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 140s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 140s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 140s Setting up librust-form-urlencoded-dev:s390x (1.2.1-1) ... 140s Setting up librust-libc-dev:s390x (0.2.169-1) ... 140s Setting up gettext (0.23.1-1) ... 140s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 140s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 140s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 140s Setting up librust-cpufeatures-dev:s390x (0.2.16-1) ... 140s Setting up librust-hash32-dev:s390x (0.3.1-2) ... 140s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 140s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 140s Setting up intltool-debian (0.35.0+20060710.6) ... 140s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 140s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 140s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 140s Setting up cpp-14 (14.2.0-16ubuntu1) ... 140s Setting up dh-strip-nondeterminism (1.14.1-2) ... 140s Setting up librust-num-traits-dev:s390x (0.2.19-2) ... 140s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 140s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 140s Setting up librust-time-macros-dev:s390x (0.2.19-1) ... 140s Setting up librust-num-threads-dev:s390x (0.1.7-1) ... 140s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 140s Setting up po-debconf (1.0.21+nmu1) ... 140s Setting up librust-quote-dev:s390x (1.0.37-1) ... 140s Setting up librust-proc-macro-error-attr2-dev:s390x (2.0.0-1) ... 140s Setting up librust-syn-dev:s390x (2.0.96-2) ... 140s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 140s Setting up librust-powerfmt-macros-dev:s390x (0.1.0-1) ... 140s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 140s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 140s Setting up librust-powerfmt-dev:s390x (0.2.0-1) ... 140s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 140s Setting up librust-cc-dev:s390x (1.1.14-1) ... 140s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 140s Setting up librust-enumflags2-derive-dev:s390x (0.7.10-1) ... 140s Setting up librust-proc-macro-error2-dev:s390x (2.0.1-1) ... 140s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 140s Setting up cpp (4:14.2.0-1ubuntu1) ... 140s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 140s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 140s Setting up librust-sha1-asm-dev:s390x (0.5.1-2) ... 140s Setting up librust-zvariant-utils-dev:s390x (2.1.0-1) ... 140s Setting up librust-serde-dev:s390x (1.0.217-1) ... 140s Setting up librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 140s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 140s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 140s Setting up librust-thiserror-impl-dev:s390x (2.0.11-1) ... 140s Setting up librust-thiserror-dev:s390x (2.0.11-1) ... 140s Setting up librust-serde-fmt-dev (1.0.3-4) ... 140s Setting up librust-serde-bytes-dev:s390x (0.11.12-1) ... 140s Setting up librust-toml-datetime-dev:s390x (0.6.8-1) ... 140s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 140s Setting up librust-sval-dev:s390x (2.6.1-2) ... 140s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 140s Setting up gcc-14 (14.2.0-16ubuntu1) ... 140s Setting up librust-bumpalo-dev:s390x (3.16.0-1) ... 140s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 140s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 140s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 140s Setting up librust-md5-asm-dev:s390x (0.5.0-2) ... 140s Setting up librust-bytemuck-dev:s390x (1.21.0-1) ... 140s Setting up librust-enumflags2-dev:s390x (0.7.10-1) ... 140s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 140s Setting up librust-serde-spanned-dev:s390x (0.6.7-1) ... 140s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 140s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 140s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 140s Setting up librust-kstring-dev:s390x (2.0.0-1) ... 140s Setting up librust-defmt-parser-dev:s390x (0.4.1-1) ... 140s Setting up librust-atomic-dev:s390x (0.6.0-1) ... 140s Setting up librust-defmt-macros-dev:s390x (0.4.0-1) ... 140s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 140s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 140s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 140s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 140s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 140s Setting up libtool (2.5.4-3build1) ... 140s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 140s Setting up librust-arrayvec-dev:s390x (0.7.6-1) ... 140s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 140s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 140s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 140s Setting up gcc (4:14.2.0-1ubuntu1) ... 140s Setting up librust-anstyle-parse-dev:s390x (0.2.1-1) ... 140s Setting up dh-autoreconf (20) ... 140s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 140s Setting up librust-unicode-normalization-dev:s390x (0.1.22-1) ... 140s Setting up librust-anstream-dev:s390x (0.6.15-1) ... 140s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 140s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 140s Setting up rustc (1.84.0ubuntu1) ... 140s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 140s Setting up librust-defmt-dev:s390x (0.3.10-1) ... 140s Setting up librust-heapless-dev:s390x (0.8.0-2) ... 140s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 140s Setting up librust-digest-dev:s390x (0.10.7-2) ... 140s Setting up librust-md-5-dev:s390x (0.10.6-1) ... 140s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 140s Setting up librust-unicode-bidi-dev:s390x (0.3.17-1) ... 140s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 140s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 140s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 140s Setting up librust-sha1-dev:s390x (0.10.6-1) ... 140s Setting up debhelper (13.23ubuntu1) ... 140s Setting up librust-ahash-dev (0.8.11-9) ... 140s Setting up cargo (1.84.0ubuntu1) ... 140s Setting up dh-cargo (31ubuntu4) ... 140s Setting up librust-idna-dev:s390x (0.4.0-1) ... 140s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 140s Setting up librust-url-dev:s390x (2.5.2-1) ... 140s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 140s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 140s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 140s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 140s Setting up librust-winnow-dev:s390x (0.6.18-1) ... 140s Setting up librust-toml-edit-dev:s390x (0.22.20-1) ... 140s Setting up librust-proc-macro-crate-dev:s390x (3.2.0-1) ... 140s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 140s Setting up librust-zvariant-derive-dev:s390x (4.2.0-1) ... 140s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 140s Setting up librust-log-dev:s390x (0.4.22-1) ... 140s Setting up librust-aho-corasick-dev:s390x (1.1.3-1) ... 140s Setting up librust-rand-dev:s390x (0.8.5-1) ... 140s Setting up librust-wasm-bindgen-backend-dev:s390x (0.2.99-1) ... 140s Setting up librust-wasm-bindgen-macro-support-dev:s390x (0.2.99-1) ... 140s Setting up librust-regex-automata-dev:s390x (0.4.9-2) ... 140s Setting up librust-wasm-bindgen-macro-dev:s390x (0.2.99-1) ... 140s Setting up librust-uuid-dev:s390x (1.10.0-1) ... 140s Setting up librust-wasm-bindgen-dev:s390x (0.2.99-1) ... 140s Setting up librust-js-sys-dev:s390x (0.3.64-1) ... 140s Setting up librust-regex-dev:s390x (1.11.1-2) ... 140s Setting up librust-env-filter-dev:s390x (0.1.3-1) ... 140s Setting up librust-chrono-dev:s390x (0.4.39-2) ... 140s Setting up librust-env-logger-dev:s390x (0.11.5-2) ... 140s Setting up librust-quickcheck-dev:s390x (1.0.3-5) ... 140s Setting up librust-deranged-dev:s390x (0.3.11-1) ... 140s Setting up librust-time-dev:s390x (0.3.37-1) ... 140s Setting up librust-zvariant-dev:s390x (4.2.0-2) ... 140s Setting up librust-zbus-names-dev:s390x (3.0.0-3) ... 140s Processing triggers for install-info (7.1.1-1) ... 140s Processing triggers for libc-bin (2.40-4ubuntu1) ... 140s Processing triggers for man-db (2.13.0-1) ... 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-zbus-names-dev'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.HSjdeH/rust-zbus-names:@-packages.all"], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/rust-zbus-names%3A%40-packages.all /tmp/autopkgtest-work.mth4mcpt/out/rust-zbus-names%3A%40-packages.all 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.HSjdeH/build.DjY/src'], kind short, sout raw, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.HSjdeH/build.DjY/src already exists 142s autopkgtest [20:04:10]: test rust-zbus-names:@: /usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --all-features 142s autopkgtest [20:04:10]: test rust-zbus-names:@: [----------------------- 142s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.HSjdeH/wrapper.sh --debug --artifacts=/tmp/autopkgtest.HSjdeH/rust-zbus-names:@-artifacts --chdir=/tmp/autopkgtest.HSjdeH/build.DjY/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.HSjdeH/rust-zbus-names:@-stderr --stdout=/tmp/autopkgtest.HSjdeH/rust-zbus-names:@-stdout --tmp=/tmp/autopkgtest.HSjdeH/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.HSjdeH/rust-zbus-names:@-artifacts 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: changing to directory: /tmp/autopkgtest.HSjdeH/build.DjY/src 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: LANG=C.UTF-8 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LANGUAGE 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_ADDRESS 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_ALL 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_COLLATE 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_CTYPE 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_IDENTIFICATION 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MEASUREMENT 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MESSAGES 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MONETARY 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_NAME 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_NUMERIC 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_PAPER 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_TELEPHONE 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_TIME 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: pretending to be a login shell 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: will write standard error to /tmp/autopkgtest.HSjdeH/rust-zbus-names:@-stderr 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: will write stdout to /tmp/autopkgtest.HSjdeH/rust-zbus-names:@-stdout 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.HSjdeH/autopkgtest_tmp 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --all-features 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: copying /tmp/tmp.hZgs6bxbVY/out to stdout and file: /tmp/autopkgtest.HSjdeH/rust-zbus-names:@-stdout 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: copying /tmp/tmp.hZgs6bxbVY/err to standard error and file: /tmp/autopkgtest.HSjdeH/rust-zbus-names:@-stdout 142s /tmp/autopkgtest.HSjdeH/wrapper.sh: writing script pid 3190 to /tmp/autopkgtest_script_pid 142s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 142s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 142s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 142s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.hut8FiZWMN/registry/ 142s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 142s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 142s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 142s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--all-features'],) {} 142s Compiling proc-macro2 v1.0.92 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.hut8FiZWMN/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn` 142s Compiling unicode-ident v1.0.13 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.hut8FiZWMN/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn` 143s Compiling equivalent v1.0.1 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.hut8FiZWMN/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a11b0a19a3bf2c19 -C extra-filename=-a11b0a19a3bf2c19 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn` 143s Compiling hashbrown v0.14.5 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=e14e27c8ff208110 -C extra-filename=-e14e27c8ff208110 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn` 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/lib.rs:14:5 143s | 143s 14 | feature = "nightly", 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s = note: `#[warn(unexpected_cfgs)]` on by default 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/lib.rs:39:13 143s | 143s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/lib.rs:40:13 143s | 143s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/lib.rs:49:7 143s | 143s 49 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/macros.rs:59:7 143s | 143s 59 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/macros.rs:65:11 143s | 143s 65 | #[cfg(not(feature = "nightly"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 143s | 143s 53 | #[cfg(not(feature = "nightly"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 143s | 143s 55 | #[cfg(not(feature = "nightly"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 143s | 143s 57 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 143s | 143s 3549 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 143s | 143s 3661 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 143s | 143s 3678 | #[cfg(not(feature = "nightly"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 143s | 143s 4304 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 143s | 143s 4319 | #[cfg(not(feature = "nightly"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 143s | 143s 7 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 143s | 143s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 143s | 143s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 143s | 143s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `rkyv` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 143s | 143s 3 | #[cfg(feature = "rkyv")] 143s | ^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `rkyv` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:242:11 143s | 143s 242 | #[cfg(not(feature = "nightly"))] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:255:7 143s | 143s 255 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:6517:11 143s | 143s 6517 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:6523:11 143s | 143s 6523 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:6591:11 143s | 143s 6591 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:6597:11 143s | 143s 6597 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:6651:11 143s | 143s 6651 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/map.rs:6657:11 143s | 143s 6657 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/set.rs:1359:11 143s | 143s 1359 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/set.rs:1365:11 143s | 143s 1365 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/set.rs:1383:11 143s | 143s 1383 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `nightly` 143s --> /tmp/tmp.hut8FiZWMN/registry/hashbrown-0.14.5/src/set.rs:1389:11 143s | 143s 1389 | #[cfg(feature = "nightly")] 143s | ^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 143s = help: consider adding `nightly` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.hut8FiZWMN/target/debug/deps:/tmp/tmp.hut8FiZWMN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.hut8FiZWMN/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.hut8FiZWMN/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 143s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 143s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 143s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 143s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps OUT_DIR=/tmp/tmp.hut8FiZWMN/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.hut8FiZWMN/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern unicode_ident=/tmp/tmp.hut8FiZWMN/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 143s warning: `hashbrown` (lib) generated 31 warnings 143s Compiling indexmap v2.7.0 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=1e18ac9265fbd6ac -C extra-filename=-1e18ac9265fbd6ac --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern equivalent=/tmp/tmp.hut8FiZWMN/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.hut8FiZWMN/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 143s warning: unexpected `cfg` condition value: `borsh` 143s --> /tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0/src/lib.rs:117:7 143s | 143s 117 | #[cfg(feature = "borsh")] 143s | ^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 143s = help: consider adding `borsh` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s = note: `#[warn(unexpected_cfgs)]` on by default 143s 143s warning: unexpected `cfg` condition value: `rustc-rayon` 143s --> /tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0/src/lib.rs:131:7 143s | 143s 131 | #[cfg(feature = "rustc-rayon")] 143s | ^^^^^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 143s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `quickcheck` 143s --> /tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 143s | 143s 38 | #[cfg(feature = "quickcheck")] 143s | ^^^^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 143s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `rustc-rayon` 143s --> /tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0/src/macros.rs:128:30 143s | 143s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 143s | ^^^^^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 143s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 143s warning: unexpected `cfg` condition value: `rustc-rayon` 143s --> /tmp/tmp.hut8FiZWMN/registry/indexmap-2.7.0/src/macros.rs:153:30 143s | 143s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 143s | ^^^^^^^^^^^^^^^^^^^^^^^ 143s | 143s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 143s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 143s = note: see for more information about checking conditional configuration 143s 144s Compiling quote v1.0.37 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.hut8FiZWMN/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern proc_macro2=/tmp/tmp.hut8FiZWMN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 144s warning: `indexmap` (lib) generated 5 warnings 144s Compiling winnow v0.6.18 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=winnow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/winnow-rs/winnow' CARGO_PKG_RUST_VERSION=1.65.0 CARGO_PKG_VERSION=0.6.18 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=18 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--allow=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::uninlined_format_args' '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "simd", "std", "unstable-doc", "unstable-recover"))' -C metadata=0f17435733cfc3dc -C extra-filename=-0f17435733cfc3dc --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn` 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 144s | 144s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s = note: `#[warn(unexpected_cfgs)]` on by default 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 144s | 144s 3 | #[cfg(feature = "debug")] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 144s | 144s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 144s | 144s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 144s | 144s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 144s | 144s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 144s | 144s 79 | #[cfg(feature = "debug")] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 144s | 144s 44 | #[cfg(feature = "debug")] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 144s | 144s 48 | #[cfg(not(feature = "debug"))] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s warning: unexpected `cfg` condition value: `debug` 144s --> /tmp/tmp.hut8FiZWMN/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 144s | 144s 59 | #[cfg(feature = "debug")] 144s | ^^^^^^^^^^^^^^^^^ 144s | 144s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 144s = help: consider adding `debug` as a feature in `Cargo.toml` 144s = note: see for more information about checking conditional configuration 144s 144s Compiling syn v2.0.96 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.hut8FiZWMN/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --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=dee9ecc2709fc75f -C extra-filename=-dee9ecc2709fc75f --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern proc_macro2=/tmp/tmp.hut8FiZWMN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.hut8FiZWMN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.hut8FiZWMN/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 146s warning: `winnow` (lib) generated 10 warnings 146s Compiling toml_datetime v0.6.8 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/toml_datetime-0.6.8/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A TOML-compatible datetime type' CARGO_PKG_HOMEPAGE='https://github.com/toml-rs/toml' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=toml_datetime CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.6.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.hut8FiZWMN/registry/toml_datetime-0.6.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=df29d6121930b5d6 -C extra-filename=-df29d6121930b5d6 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn` 146s Compiling serde v1.0.217 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.hut8FiZWMN/registry/serde-1.0.217/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=c22c8603f1f999ec -C extra-filename=-c22c8603f1f999ec --out-dir /tmp/tmp.hut8FiZWMN/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn` 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0--remap-path-prefix/tmp/tmp.hut8FiZWMN/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_SERDE_DERIVE=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.hut8FiZWMN/target/debug/deps:/tmp/tmp.hut8FiZWMN/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.hut8FiZWMN/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 146s [serde 1.0.217] cargo:rerun-if-changed=build.rs 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 147s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 147s Compiling toml_edit v0.22.20 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/toml_edit-0.22.20/Cargo.toml CARGO_PKG_AUTHORS='Andronik Ordian :Ed Page ' CARGO_PKG_DESCRIPTION='Yet another format-preserving TOML parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=toml_edit CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.22.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=22 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.hut8FiZWMN/registry/toml_edit-0.22.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="default"' --cfg 'feature="display"' --cfg 'feature="parse"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "parse", "perf", "serde", "unbounded"))' -C metadata=89b547630831cc85 -C extra-filename=-89b547630831cc85 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern indexmap=/tmp/tmp.hut8FiZWMN/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.hut8FiZWMN/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.hut8FiZWMN/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 151s Compiling zvariant_utils v2.1.0 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/zvariant_utils-2.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan :turbocooler ' CARGO_PKG_DESCRIPTION='Various utilities used internally by the zvariant crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=2.1.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.hut8FiZWMN/registry/zvariant_utils-2.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4a20f09f685365a6 -C extra-filename=-4a20f09f685365a6 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern proc_macro2=/tmp/tmp.hut8FiZWMN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.hut8FiZWMN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.hut8FiZWMN/target/debug/deps/libsyn-dee9ecc2709fc75f.rmeta --cap-lints warn` 152s Compiling proc-macro-crate v3.2.0 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/proc-macro-crate-3.2.0/Cargo.toml CARGO_PKG_AUTHORS='Bastian Köcher ' CARGO_PKG_DESCRIPTION='Replacement for crate (macro_rules keyword) in proc-macros 152s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro-crate CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bkchr/proc-macro-crate' CARGO_PKG_RUST_VERSION=1.67.0 CARGO_PKG_VERSION=3.2.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.hut8FiZWMN/registry/proc-macro-crate-3.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=900b46bff7d8f3e2 -C extra-filename=-900b46bff7d8f3e2 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern toml_edit=/tmp/tmp.hut8FiZWMN/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 152s Compiling endi v1.1.0 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.hut8FiZWMN/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.hut8FiZWMN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 152s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 152s | 152s = note: this feature is not stably supported; its behavior can change in the future 152s 152s warning: `endi` (lib) generated 1 warning 152s Compiling static_assertions v1.1.0 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.hut8FiZWMN/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.hut8FiZWMN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 152s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 153s Compiling serde_derive v1.0.217 153s Compiling enumflags2_derive v0.7.10 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/serde_derive-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='Macros 1.1 implementation of #[derive(Serialize, Deserialize)]' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_derive CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.hut8FiZWMN/registry/serde_derive-1.0.217/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "deserialize_in_place"))' -C metadata=e70ce57a4c132e97 -C extra-filename=-e70ce57a4c132e97 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern proc_macro2=/tmp/tmp.hut8FiZWMN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.hut8FiZWMN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.hut8FiZWMN/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/enumflags2_derive-0.7.10/Cargo.toml CARGO_PKG_AUTHORS='maik klein :Maja Kądziołka ' CARGO_PKG_DESCRIPTION='Do not use directly, use the reexport in the `enumflags2` crate. This allows for better compatibility across versions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=enumflags2_derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/meithecatte/enumflags2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.7.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.hut8FiZWMN/registry/enumflags2_derive-0.7.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4e8cf4352c8852a5 -C extra-filename=-4e8cf4352c8852a5 --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern proc_macro2=/tmp/tmp.hut8FiZWMN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.hut8FiZWMN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.hut8FiZWMN/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 154s Compiling zvariant_derive v4.2.0 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.hut8FiZWMN/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6517a295c227094e -C extra-filename=-6517a295c227094e --out-dir /tmp/tmp.hut8FiZWMN/target/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern proc_macro_crate=/tmp/tmp.hut8FiZWMN/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.hut8FiZWMN/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.hut8FiZWMN/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.hut8FiZWMN/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.hut8FiZWMN/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro --cap-lints warn` 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps OUT_DIR=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.hut8FiZWMN/registry/serde-1.0.217/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=0341e769f80125f9 -C extra-filename=-0341e769f80125f9 --out-dir /tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern serde_derive=/tmp/tmp.hut8FiZWMN/target/debug/deps/libserde_derive-e70ce57a4c132e97.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.hut8FiZWMN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(no_core_cstr)' --check-cfg 'cfg(no_core_error)' --check-cfg 'cfg(no_core_net)' --check-cfg 'cfg(no_core_num_saturating)' --check-cfg 'cfg(no_core_try_from)' --check-cfg 'cfg(no_diagnostic_namespace)' --check-cfg 'cfg(no_float_copysign)' --check-cfg 'cfg(no_num_nonzero_signed)' --check-cfg 'cfg(no_relaxed_trait_bounds)' --check-cfg 'cfg(no_serde_derive)' --check-cfg 'cfg(no_std_atomic)' --check-cfg 'cfg(no_std_atomic64)' --check-cfg 'cfg(no_systemtime_checked_add)' --check-cfg 'cfg(no_target_has_atomic)'` 160s Compiling enumflags2 v0.7.10 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/enumflags2-0.7.10/Cargo.toml CARGO_PKG_AUTHORS='maik klein :Maja Kądziołka ' CARGO_PKG_DESCRIPTION='Enum-based bit flags' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=enumflags2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/meithecatte/enumflags2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.7.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.hut8FiZWMN/registry/enumflags2-0.7.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "std"))' -C metadata=746c0dc2128bcbc0 -C extra-filename=-746c0dc2128bcbc0 --out-dir /tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern enumflags2_derive=/tmp/tmp.hut8FiZWMN/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.hut8FiZWMN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 160s Compiling zvariant v4.2.0 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.hut8FiZWMN/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.hut8FiZWMN/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.hut8FiZWMN/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=dd6a34ce24a0cd91 -C extra-filename=-dd6a34ce24a0cd91 --out-dir /tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern endi=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rmeta --extern serde=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rmeta --extern static_assertions=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.hut8FiZWMN/target/debug/deps/libzvariant_derive-6517a295c227094e.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.hut8FiZWMN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: `serde` (lib) generated 1 warning (1 duplicate) 164s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 164s Compiling zbus_names v3.0.0 (/usr/share/cargo/registry/zbus_names-3.0.0) 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.hut8FiZWMN/target/debug/deps rustc --crate-name zbus_names --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=083cea9e789c81fb -C extra-filename=-083cea9e789c81fb --out-dir /tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.hut8FiZWMN/target/debug/deps --extern serde=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern static_assertions=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rlib --extern zvariant=/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-dd6a34ce24a0cd91.rlib -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.hut8FiZWMN/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `zbus_names` (lib test) generated 1 warning (1 duplicate) 165s Finished `test` profile [unoptimized + debuginfo] target(s) in 22.21s 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.hut8FiZWMN/target/s390x-unknown-linux-gnu/debug/deps/zbus_names-083cea9e789c81fb` 165s 165s running 0 tests 165s 165s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 165s 165s /tmp/autopkgtest.HSjdeH/wrapper.sh: checking for leaked background processes... 165s /tmp/autopkgtest.HSjdeH/wrapper.sh: waiting for tee/cat subprocesses... 165s /tmp/autopkgtest.HSjdeH/wrapper.sh: cleaning up... 165s /tmp/autopkgtest.HSjdeH/wrapper.sh: Exit status: 0 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest [20:04:33]: test rust-zbus-names:@: -----------------------] 165s autopkgtest: DBG: testbed executing test finished with exit status 0 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/rust-zbus-names%3A%40-stdout /tmp/autopkgtest-work.mth4mcpt/out/rust-zbus-names%3A%40-stdout 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/rust-zbus-names%3A%40-stderr /tmp/autopkgtest-work.mth4mcpt/out/rust-zbus-names%3A%40-stderr 165s autopkgtest: DBG: got reply from testbed: ok 166s rust-zbus-names:@ PASS 166s autopkgtest [20:04:34]: test rust-zbus-names:@: - - - - - - - - - - results - - - - - - - - - - 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/rust-zbus-names%3A%40-artifacts/ /tmp/autopkgtest-work.mth4mcpt/out/artifacts/ 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.HSjdeH/rust-zbus-names:@-artifacts', '/tmp/autopkgtest.HSjdeH/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [20:04:34]: test librust-zbus-names-dev:default: preparing testbed 166s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-zbus-names-dev'], deps_new=['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 166s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 166s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 166s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-zbus-names-dev 166s autopkgtest: DBG: can use apt-get on testbed: True 166s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-zbus-names-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 166s Reading package lists... 166s Building dependency tree... 166s Reading state information... 166s Starting pkgProblemResolver with broken count: 0 166s Starting 2 pkgProblemResolver with broken count: 0 166s Done 167s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-zbus-names-dev'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3Adefault-packages.all /tmp/autopkgtest-work.mth4mcpt/out/librust-zbus-names-dev%3Adefault-packages.all 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.HSjdeH/build.DjY/src'], kind short, sout raw, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.HSjdeH/build.DjY/src already exists 167s autopkgtest [20:04:35]: test librust-zbus-names-dev:default: /usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets 167s autopkgtest [20:04:35]: test librust-zbus-names-dev:default: [----------------------- 167s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.HSjdeH/wrapper.sh --debug --artifacts=/tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-artifacts --chdir=/tmp/autopkgtest.HSjdeH/build.DjY/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.HSjdeH/librust-zbus-names-dev:default-stderr --stdout=/tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-stdout --tmp=/tmp/autopkgtest.HSjdeH/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets'"], kind test, sout raw, serr raw, env [] 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-artifacts 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: changing to directory: /tmp/autopkgtest.HSjdeH/build.DjY/src 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: LANG=C.UTF-8 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LANGUAGE 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_ADDRESS 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_ALL 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_COLLATE 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_CTYPE 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_IDENTIFICATION 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MEASUREMENT 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MESSAGES 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MONETARY 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_NAME 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_NUMERIC 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_PAPER 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_TELEPHONE 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_TIME 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: pretending to be a login shell 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: will write standard error to /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-stderr 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: will write stdout to /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-stdout 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.HSjdeH/autopkgtest_tmp 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: copying /tmp/tmp.mi7Krk8SdZ/out to stdout and file: /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-stdout 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: copying /tmp/tmp.mi7Krk8SdZ/err to standard error and file: /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-stdout 168s /tmp/autopkgtest.HSjdeH/wrapper.sh: writing script pid 3665 to /tmp/autopkgtest_script_pid 168s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 168s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 168s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 168s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.r0v6zAUXu2/registry/ 168s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 168s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 168s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 168s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 168s Compiling proc-macro2 v1.0.92 168s Compiling unicode-ident v1.0.13 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.r0v6zAUXu2/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn` 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn` 168s Compiling equivalent v1.0.1 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.r0v6zAUXu2/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a11b0a19a3bf2c19 -C extra-filename=-a11b0a19a3bf2c19 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn` 168s Compiling hashbrown v0.14.5 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=e14e27c8ff208110 -C extra-filename=-e14e27c8ff208110 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn` 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/lib.rs:14:5 168s | 168s 14 | feature = "nightly", 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s = note: `#[warn(unexpected_cfgs)]` on by default 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/lib.rs:39:13 168s | 168s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/lib.rs:40:13 168s | 168s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/lib.rs:49:7 168s | 168s 49 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/macros.rs:59:7 168s | 168s 59 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/macros.rs:65:11 168s | 168s 65 | #[cfg(not(feature = "nightly"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 168s | 168s 53 | #[cfg(not(feature = "nightly"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 168s | 168s 55 | #[cfg(not(feature = "nightly"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 168s | 168s 57 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 168s | 168s 3549 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 168s | 168s 3661 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 168s | 168s 3678 | #[cfg(not(feature = "nightly"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 168s | 168s 4304 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 168s | 168s 4319 | #[cfg(not(feature = "nightly"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 168s | 168s 7 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 168s | 168s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 168s | 168s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 168s | 168s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `rkyv` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 168s | 168s 3 | #[cfg(feature = "rkyv")] 168s | ^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `rkyv` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:242:11 168s | 168s 242 | #[cfg(not(feature = "nightly"))] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:255:7 168s | 168s 255 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:6517:11 168s | 168s 6517 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:6523:11 168s | 168s 6523 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:6591:11 168s | 168s 6591 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:6597:11 168s | 168s 6597 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:6651:11 168s | 168s 6651 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/map.rs:6657:11 168s | 168s 6657 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/set.rs:1359:11 168s | 168s 1359 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/set.rs:1365:11 168s | 168s 1365 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/set.rs:1383:11 168s | 168s 1383 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s warning: unexpected `cfg` condition value: `nightly` 168s --> /tmp/tmp.r0v6zAUXu2/registry/hashbrown-0.14.5/src/set.rs:1389:11 168s | 168s 1389 | #[cfg(feature = "nightly")] 168s | ^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 168s = help: consider adding `nightly` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.r0v6zAUXu2/target/debug/deps:/tmp/tmp.r0v6zAUXu2/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.r0v6zAUXu2/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.r0v6zAUXu2/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 168s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 168s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 168s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 168s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps OUT_DIR=/tmp/tmp.r0v6zAUXu2/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern unicode_ident=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 168s warning: `hashbrown` (lib) generated 31 warnings 168s Compiling indexmap v2.7.0 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=1e18ac9265fbd6ac -C extra-filename=-1e18ac9265fbd6ac --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern equivalent=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 169s warning: unexpected `cfg` condition value: `borsh` 169s --> /tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0/src/lib.rs:117:7 169s | 169s 117 | #[cfg(feature = "borsh")] 169s | ^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 169s = help: consider adding `borsh` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s = note: `#[warn(unexpected_cfgs)]` on by default 169s 169s warning: unexpected `cfg` condition value: `rustc-rayon` 169s --> /tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0/src/lib.rs:131:7 169s | 169s 131 | #[cfg(feature = "rustc-rayon")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 169s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `quickcheck` 169s --> /tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 169s | 169s 38 | #[cfg(feature = "quickcheck")] 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 169s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `rustc-rayon` 169s --> /tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0/src/macros.rs:128:30 169s | 169s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 169s | ^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 169s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `rustc-rayon` 169s --> /tmp/tmp.r0v6zAUXu2/registry/indexmap-2.7.0/src/macros.rs:153:30 169s | 169s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 169s | ^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 169s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: `indexmap` (lib) generated 5 warnings 169s Compiling quote v1.0.37 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.r0v6zAUXu2/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern proc_macro2=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 169s Compiling serde v1.0.217 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=c22c8603f1f999ec -C extra-filename=-c22c8603f1f999ec --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn` 169s Compiling syn v2.0.96 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --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=dee9ecc2709fc75f -C extra-filename=-dee9ecc2709fc75f --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern proc_macro2=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 169s Compiling toml_datetime v0.6.8 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/toml_datetime-0.6.8/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A TOML-compatible datetime type' CARGO_PKG_HOMEPAGE='https://github.com/toml-rs/toml' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=toml_datetime CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.6.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/toml_datetime-0.6.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=df29d6121930b5d6 -C extra-filename=-df29d6121930b5d6 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn` 170s Compiling winnow v0.6.18 170s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=winnow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/winnow-rs/winnow' CARGO_PKG_RUST_VERSION=1.65.0 CARGO_PKG_VERSION=0.6.18 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=18 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--allow=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::uninlined_format_args' '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "simd", "std", "unstable-doc", "unstable-recover"))' -C metadata=0f17435733cfc3dc -C extra-filename=-0f17435733cfc3dc --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn` 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 170s | 170s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s = note: `#[warn(unexpected_cfgs)]` on by default 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 170s | 170s 3 | #[cfg(feature = "debug")] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 170s | 170s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 170s | 170s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 170s | 170s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 170s | 170s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 170s | 170s 79 | #[cfg(feature = "debug")] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 170s | 170s 44 | #[cfg(feature = "debug")] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 170s | 170s 48 | #[cfg(not(feature = "debug"))] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 170s warning: unexpected `cfg` condition value: `debug` 170s --> /tmp/tmp.r0v6zAUXu2/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 170s | 170s 59 | #[cfg(feature = "debug")] 170s | ^^^^^^^^^^^^^^^^^ 170s | 170s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 170s = help: consider adding `debug` as a feature in `Cargo.toml` 170s = note: see for more information about checking conditional configuration 170s 172s warning: `winnow` (lib) generated 10 warnings 172s Compiling toml_edit v0.22.20 172s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/toml_edit-0.22.20/Cargo.toml CARGO_PKG_AUTHORS='Andronik Ordian :Ed Page ' CARGO_PKG_DESCRIPTION='Yet another format-preserving TOML parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=toml_edit CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.22.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=22 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/toml_edit-0.22.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="default"' --cfg 'feature="display"' --cfg 'feature="parse"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "parse", "perf", "serde", "unbounded"))' -C metadata=89b547630831cc85 -C extra-filename=-89b547630831cc85 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern indexmap=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 176s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0--remap-path-prefix/tmp/tmp.r0v6zAUXu2/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_SERDE_DERIVE=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.r0v6zAUXu2/target/debug/deps:/tmp/tmp.r0v6zAUXu2/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.r0v6zAUXu2/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 176s [serde 1.0.217] cargo:rerun-if-changed=build.rs 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 176s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 176s Compiling proc-macro-crate v3.2.0 176s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/proc-macro-crate-3.2.0/Cargo.toml CARGO_PKG_AUTHORS='Bastian Köcher ' CARGO_PKG_DESCRIPTION='Replacement for crate (macro_rules keyword) in proc-macros 176s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro-crate CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bkchr/proc-macro-crate' CARGO_PKG_RUST_VERSION=1.67.0 CARGO_PKG_VERSION=3.2.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/proc-macro-crate-3.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=900b46bff7d8f3e2 -C extra-filename=-900b46bff7d8f3e2 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern toml_edit=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 176s Compiling serde_derive v1.0.217 176s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/serde_derive-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='Macros 1.1 implementation of #[derive(Serialize, Deserialize)]' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_derive CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.r0v6zAUXu2/registry/serde_derive-1.0.217/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "deserialize_in_place"))' -C metadata=e70ce57a4c132e97 -C extra-filename=-e70ce57a4c132e97 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern proc_macro2=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 177s Compiling enumflags2_derive v0.7.10 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/enumflags2_derive-0.7.10/Cargo.toml CARGO_PKG_AUTHORS='maik klein :Maja Kądziołka ' CARGO_PKG_DESCRIPTION='Do not use directly, use the reexport in the `enumflags2` crate. This allows for better compatibility across versions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=enumflags2_derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/meithecatte/enumflags2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.7.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.r0v6zAUXu2/registry/enumflags2_derive-0.7.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4e8cf4352c8852a5 -C extra-filename=-4e8cf4352c8852a5 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern proc_macro2=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 178s Compiling zvariant_utils v2.1.0 178s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/zvariant_utils-2.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan :turbocooler ' CARGO_PKG_DESCRIPTION='Various utilities used internally by the zvariant crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=2.1.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/zvariant_utils-2.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4a20f09f685365a6 -C extra-filename=-4a20f09f685365a6 --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern proc_macro2=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libsyn-dee9ecc2709fc75f.rmeta --cap-lints warn` 179s Compiling zvariant_derive v4.2.0 179s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6517a295c227094e -C extra-filename=-6517a295c227094e --out-dir /tmp/tmp.r0v6zAUXu2/target/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern proc_macro_crate=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro --cap-lints warn` 181s Compiling static_assertions v1.1.0 181s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.r0v6zAUXu2/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.r0v6zAUXu2/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 181s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 181s | 181s = note: this feature is not stably supported; its behavior can change in the future 181s 181s warning: `static_assertions` (lib) generated 1 warning 181s Compiling endi v1.1.0 181s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.r0v6zAUXu2/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 181s warning: `endi` (lib) generated 1 warning (1 duplicate) 182s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps OUT_DIR=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.r0v6zAUXu2/registry/serde-1.0.217/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=0341e769f80125f9 -C extra-filename=-0341e769f80125f9 --out-dir /tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern serde_derive=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libserde_derive-e70ce57a4c132e97.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.r0v6zAUXu2/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(no_core_cstr)' --check-cfg 'cfg(no_core_error)' --check-cfg 'cfg(no_core_net)' --check-cfg 'cfg(no_core_num_saturating)' --check-cfg 'cfg(no_core_try_from)' --check-cfg 'cfg(no_diagnostic_namespace)' --check-cfg 'cfg(no_float_copysign)' --check-cfg 'cfg(no_num_nonzero_signed)' --check-cfg 'cfg(no_relaxed_trait_bounds)' --check-cfg 'cfg(no_serde_derive)' --check-cfg 'cfg(no_std_atomic)' --check-cfg 'cfg(no_std_atomic64)' --check-cfg 'cfg(no_systemtime_checked_add)' --check-cfg 'cfg(no_target_has_atomic)'` 185s Compiling enumflags2 v0.7.10 185s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/enumflags2-0.7.10/Cargo.toml CARGO_PKG_AUTHORS='maik klein :Maja Kądziołka ' CARGO_PKG_DESCRIPTION='Enum-based bit flags' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=enumflags2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/meithecatte/enumflags2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.7.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.r0v6zAUXu2/registry/enumflags2-0.7.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "std"))' -C metadata=746c0dc2128bcbc0 -C extra-filename=-746c0dc2128bcbc0 --out-dir /tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern enumflags2_derive=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.r0v6zAUXu2/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 185s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 185s Compiling zvariant v4.2.0 185s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.r0v6zAUXu2/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.r0v6zAUXu2/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.r0v6zAUXu2/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=dd6a34ce24a0cd91 -C extra-filename=-dd6a34ce24a0cd91 --out-dir /tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern endi=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rmeta --extern serde=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rmeta --extern static_assertions=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.r0v6zAUXu2/target/debug/deps/libzvariant_derive-6517a295c227094e.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.r0v6zAUXu2/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 185s warning: `serde` (lib) generated 1 warning (1 duplicate) 188s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 188s Compiling zbus_names v3.0.0 (/usr/share/cargo/registry/zbus_names-3.0.0) 188s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.r0v6zAUXu2/target/debug/deps rustc --crate-name zbus_names --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=083cea9e789c81fb -C extra-filename=-083cea9e789c81fb --out-dir /tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.r0v6zAUXu2/target/debug/deps --extern serde=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern static_assertions=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rlib --extern zvariant=/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-dd6a34ce24a0cd91.rlib -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.r0v6zAUXu2/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 188s warning: `zbus_names` (lib test) generated 1 warning (1 duplicate) 188s Finished `test` profile [unoptimized + debuginfo] target(s) in 20.64s 188s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.r0v6zAUXu2/target/s390x-unknown-linux-gnu/debug/deps/zbus_names-083cea9e789c81fb` 188s 188s running 0 tests 188s 188s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 188s 188s /tmp/autopkgtest.HSjdeH/wrapper.sh: checking for leaked background processes... 188s /tmp/autopkgtest.HSjdeH/wrapper.sh: waiting for tee/cat subprocesses... 188s /tmp/autopkgtest.HSjdeH/wrapper.sh: cleaning up... 188s /tmp/autopkgtest.HSjdeH/wrapper.sh: Exit status: 0 188s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest [20:04:57]: test librust-zbus-names-dev:default: -----------------------] 189s autopkgtest: DBG: testbed executing test finished with exit status 0 189s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3Adefault-stdout /tmp/autopkgtest-work.mth4mcpt/out/librust-zbus-names-dev%3Adefault-stdout 189s autopkgtest: DBG: got reply from testbed: ok 189s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3Adefault-stderr /tmp/autopkgtest-work.mth4mcpt/out/librust-zbus-names-dev%3Adefault-stderr 189s autopkgtest: DBG: got reply from testbed: ok 189s autopkgtest [20:04:57]: test librust-zbus-names-dev:default: - - - - - - - - - - results - - - - - - - - - - 189s librust-zbus-names-dev:default PASS 189s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.mth4mcpt/out/artifacts/ 189s autopkgtest: DBG: got reply from testbed: ok 189s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:default-artifacts', '/tmp/autopkgtest.HSjdeH/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest [20:04:58]: test librust-zbus-names-dev:: preparing testbed 190s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-zbus-names-dev'], deps_new=['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 190s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 190s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-zbus-names-dev'] 190s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-zbus-names-dev 190s autopkgtest: DBG: can use apt-get on testbed: True 190s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-zbus-names-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 190s Reading package lists... 190s Building dependency tree... 190s Reading state information... 190s Starting pkgProblemResolver with broken count: 0 190s Starting 2 pkgProblemResolver with broken count: 0 190s Done 190s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-zbus-names-dev'], kind short, sout pipe, serr pipe, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3A-packages.all /tmp/autopkgtest-work.mth4mcpt/out/librust-zbus-names-dev%3A-packages.all 191s autopkgtest: DBG: got reply from testbed: ok 191s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.HSjdeH/build.DjY/src'], kind short, sout raw, serr raw, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.HSjdeH/build.DjY/src already exists 191s autopkgtest [20:04:59]: test librust-zbus-names-dev:: /usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --no-default-features 191s autopkgtest [20:04:59]: test librust-zbus-names-dev:: [----------------------- 191s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.HSjdeH/wrapper.sh --debug --artifacts=/tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-artifacts --chdir=/tmp/autopkgtest.HSjdeH/build.DjY/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.HSjdeH/librust-zbus-names-dev:-stderr --stdout=/tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-stdout --tmp=/tmp/autopkgtest.HSjdeH/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-artifacts 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: changing to directory: /tmp/autopkgtest.HSjdeH/build.DjY/src 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: LANG=C.UTF-8 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LANGUAGE 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_ADDRESS 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_ALL 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_COLLATE 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_CTYPE 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_IDENTIFICATION 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MEASUREMENT 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MESSAGES 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_MONETARY 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_NAME 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_NUMERIC 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_PAPER 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_TELEPHONE 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: unsetting environment: LC_TIME 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: pretending to be a login shell 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: will write standard error to /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-stderr 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: will write stdout to /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-stdout 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.HSjdeH/autopkgtest_tmp 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test zbus_names 3.0.0 --all-targets --no-default-features 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: copying /tmp/tmp.Tx14zqx1Px/out to stdout and file: /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-stdout 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: copying /tmp/tmp.Tx14zqx1Px/err to standard error and file: /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-stdout 191s /tmp/autopkgtest.HSjdeH/wrapper.sh: writing script pid 4140 to /tmp/autopkgtest_script_pid 191s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 191s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 191s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 191s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.9zZemcW9rz/registry/ 191s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 191s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 191s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 191s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-default-features'],) {} 192s Compiling proc-macro2 v1.0.92 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.9zZemcW9rz/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn` 192s Compiling unicode-ident v1.0.13 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.9zZemcW9rz/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn` 192s Compiling equivalent v1.0.1 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.9zZemcW9rz/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=a11b0a19a3bf2c19 -C extra-filename=-a11b0a19a3bf2c19 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn` 192s Compiling hashbrown v0.14.5 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=e14e27c8ff208110 -C extra-filename=-e14e27c8ff208110 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn` 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/lib.rs:14:5 192s | 192s 14 | feature = "nightly", 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s = note: `#[warn(unexpected_cfgs)]` on by default 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/lib.rs:39:13 192s | 192s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/lib.rs:40:13 192s | 192s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/lib.rs:49:7 192s | 192s 49 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/macros.rs:59:7 192s | 192s 59 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/macros.rs:65:11 192s | 192s 65 | #[cfg(not(feature = "nightly"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 192s | 192s 53 | #[cfg(not(feature = "nightly"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 192s | 192s 55 | #[cfg(not(feature = "nightly"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 192s | 192s 57 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 192s | 192s 3549 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 192s | 192s 3661 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 192s | 192s 3678 | #[cfg(not(feature = "nightly"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 192s | 192s 4304 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 192s | 192s 4319 | #[cfg(not(feature = "nightly"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 192s | 192s 7 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 192s | 192s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 192s | 192s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 192s | 192s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `rkyv` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 192s | 192s 3 | #[cfg(feature = "rkyv")] 192s | ^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `rkyv` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:242:11 192s | 192s 242 | #[cfg(not(feature = "nightly"))] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:255:7 192s | 192s 255 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:6517:11 192s | 192s 6517 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:6523:11 192s | 192s 6523 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:6591:11 192s | 192s 6591 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:6597:11 192s | 192s 6597 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:6651:11 192s | 192s 6651 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/map.rs:6657:11 192s | 192s 6657 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/set.rs:1359:11 192s | 192s 1359 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/set.rs:1365:11 192s | 192s 1365 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/set.rs:1383:11 192s | 192s 1383 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `nightly` 192s --> /tmp/tmp.9zZemcW9rz/registry/hashbrown-0.14.5/src/set.rs:1389:11 192s | 192s 1389 | #[cfg(feature = "nightly")] 192s | ^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 192s = help: consider adding `nightly` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.9zZemcW9rz/target/debug/deps:/tmp/tmp.9zZemcW9rz/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.9zZemcW9rz/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.9zZemcW9rz/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 192s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 192s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 192s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 192s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps OUT_DIR=/tmp/tmp.9zZemcW9rz/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.9zZemcW9rz/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern unicode_ident=/tmp/tmp.9zZemcW9rz/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 192s warning: `hashbrown` (lib) generated 31 warnings 192s Compiling indexmap v2.7.0 192s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=1e18ac9265fbd6ac -C extra-filename=-1e18ac9265fbd6ac --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern equivalent=/tmp/tmp.9zZemcW9rz/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.9zZemcW9rz/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 192s warning: unexpected `cfg` condition value: `borsh` 192s --> /tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0/src/lib.rs:117:7 192s | 192s 117 | #[cfg(feature = "borsh")] 192s | ^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 192s = help: consider adding `borsh` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s = note: `#[warn(unexpected_cfgs)]` on by default 192s 192s warning: unexpected `cfg` condition value: `rustc-rayon` 192s --> /tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0/src/lib.rs:131:7 192s | 192s 131 | #[cfg(feature = "rustc-rayon")] 192s | ^^^^^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 192s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `quickcheck` 192s --> /tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 192s | 192s 38 | #[cfg(feature = "quickcheck")] 192s | ^^^^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 192s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `rustc-rayon` 192s --> /tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0/src/macros.rs:128:30 192s | 192s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 192s | ^^^^^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 192s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 192s warning: unexpected `cfg` condition value: `rustc-rayon` 192s --> /tmp/tmp.9zZemcW9rz/registry/indexmap-2.7.0/src/macros.rs:153:30 192s | 192s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 192s | ^^^^^^^^^^^^^^^^^^^^^^^ 192s | 192s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 192s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 192s = note: see for more information about checking conditional configuration 192s 193s warning: `indexmap` (lib) generated 5 warnings 193s Compiling quote v1.0.37 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.9zZemcW9rz/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern proc_macro2=/tmp/tmp.9zZemcW9rz/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 193s Compiling serde v1.0.217 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.9zZemcW9rz/registry/serde-1.0.217/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=c22c8603f1f999ec -C extra-filename=-c22c8603f1f999ec --out-dir /tmp/tmp.9zZemcW9rz/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn` 193s Compiling syn v2.0.96 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.9zZemcW9rz/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --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=dee9ecc2709fc75f -C extra-filename=-dee9ecc2709fc75f --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern proc_macro2=/tmp/tmp.9zZemcW9rz/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.9zZemcW9rz/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.9zZemcW9rz/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 193s Compiling toml_datetime v0.6.8 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/toml_datetime-0.6.8/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A TOML-compatible datetime type' CARGO_PKG_HOMEPAGE='https://github.com/toml-rs/toml' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=toml_datetime CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.6.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.9zZemcW9rz/registry/toml_datetime-0.6.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=df29d6121930b5d6 -C extra-filename=-df29d6121930b5d6 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn` 193s Compiling winnow v0.6.18 193s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=winnow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/winnow-rs/winnow' CARGO_PKG_RUST_VERSION=1.65.0 CARGO_PKG_VERSION=0.6.18 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=18 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--allow=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::uninlined_format_args' '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "simd", "std", "unstable-doc", "unstable-recover"))' -C metadata=0f17435733cfc3dc -C extra-filename=-0f17435733cfc3dc --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn` 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 194s | 194s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s = note: `#[warn(unexpected_cfgs)]` on by default 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 194s | 194s 3 | #[cfg(feature = "debug")] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 194s | 194s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 194s | 194s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 194s | 194s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 194s | 194s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 194s | 194s 79 | #[cfg(feature = "debug")] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 194s | 194s 44 | #[cfg(feature = "debug")] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 194s | 194s 48 | #[cfg(not(feature = "debug"))] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 194s warning: unexpected `cfg` condition value: `debug` 194s --> /tmp/tmp.9zZemcW9rz/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 194s | 194s 59 | #[cfg(feature = "debug")] 194s | ^^^^^^^^^^^^^^^^^ 194s | 194s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 194s = help: consider adding `debug` as a feature in `Cargo.toml` 194s = note: see for more information about checking conditional configuration 194s 196s warning: `winnow` (lib) generated 10 warnings 196s Compiling toml_edit v0.22.20 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/toml_edit-0.22.20/Cargo.toml CARGO_PKG_AUTHORS='Andronik Ordian :Ed Page ' CARGO_PKG_DESCRIPTION='Yet another format-preserving TOML parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=toml_edit CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/toml-rs/toml' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.22.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=22 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.9zZemcW9rz/registry/toml_edit-0.22.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=rust_2018_idioms '--warn=clippy::zero_sized_map_values' '--warn=clippy::wildcard_imports' '--warn=clippy::verbose_file_reads' --warn=unused_qualifications --warn=unused_macro_rules --warn=unused_lifetimes --warn=unsafe_op_in_unsafe_fn --warn=unreachable_pub '--warn=clippy::trait_duplication_in_bounds' '--warn=clippy::todo' '--warn=clippy::string_to_string' '--warn=clippy::string_lit_as_bytes' '--warn=clippy::string_add_assign' '--warn=clippy::string_add' '--warn=clippy::str_to_string' '--warn=clippy::semicolon_if_nothing_returned' '--warn=clippy::self_named_module_files' '--warn=clippy::same_functions_in_if_condition' '--warn=clippy::rest_pat_in_fully_bound_structs' '--warn=clippy::ref_option_ref' '--warn=clippy::redundant_feature_names' '--warn=clippy::rc_mutex' '--warn=clippy::ptr_as_ptr' '--warn=clippy::path_buf_push_overwrite' '--warn=clippy::negative_feature_names' '--warn=clippy::needless_for_each' '--warn=clippy::needless_continue' '--warn=clippy::mutex_integer' '--warn=clippy::mem_forget' '--warn=clippy::macro_use_imports' '--warn=clippy::lossy_float_literal' '--warn=clippy::linkedlist' '--allow=clippy::let_and_return' '--warn=clippy::large_types_passed_by_value' '--warn=clippy::large_stack_arrays' '--warn=clippy::large_digit_groups' '--warn=clippy::invalid_upcast_comparisons' '--warn=clippy::infinite_loop' '--warn=clippy::inefficient_to_string' '--warn=clippy::inconsistent_struct_constructor' '--warn=clippy::imprecise_flops' '--warn=clippy::implicit_clone' '--allow=clippy::if_same_then_else' '--warn=clippy::from_iter_instead_of_collect' '--warn=clippy::fn_params_excessive_bools' '--warn=clippy::float_cmp_const' '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::fallible_impl_from' '--warn=clippy::explicit_into_iter_loop' '--warn=clippy::explicit_deref_methods' '--warn=clippy::expl_impl_clone_on_copy' '--warn=clippy::enum_glob_use' '--warn=clippy::empty_enum' '--warn=clippy::doc_markdown' '--warn=clippy::debug_assert_with_mut_call' '--warn=clippy::dbg_macro' '--warn=clippy::create_dir' '--allow=clippy::collapsible_else_if' '--warn=clippy::checked_conversions' '--allow=clippy::branches_sharing_code' '--allow=clippy::bool_assert_comparison' --cfg 'feature="default"' --cfg 'feature="display"' --cfg 'feature="parse"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "display", "parse", "perf", "serde", "unbounded"))' -C metadata=89b547630831cc85 -C extra-filename=-89b547630831cc85 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern indexmap=/tmp/tmp.9zZemcW9rz/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.9zZemcW9rz/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.9zZemcW9rz/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0--remap-path-prefix/tmp/tmp.9zZemcW9rz/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_SERDE_DERIVE=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.9zZemcW9rz/target/debug/deps:/tmp/tmp.9zZemcW9rz/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.9zZemcW9rz/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 199s [serde 1.0.217] cargo:rerun-if-changed=build.rs 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 199s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 199s Compiling proc-macro-crate v3.2.0 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/proc-macro-crate-3.2.0/Cargo.toml CARGO_PKG_AUTHORS='Bastian Köcher ' CARGO_PKG_DESCRIPTION='Replacement for crate (macro_rules keyword) in proc-macros 199s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro-crate CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bkchr/proc-macro-crate' CARGO_PKG_RUST_VERSION=1.67.0 CARGO_PKG_VERSION=3.2.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.9zZemcW9rz/registry/proc-macro-crate-3.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=900b46bff7d8f3e2 -C extra-filename=-900b46bff7d8f3e2 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern toml_edit=/tmp/tmp.9zZemcW9rz/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 200s Compiling serde_derive v1.0.217 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/serde_derive-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='Macros 1.1 implementation of #[derive(Serialize, Deserialize)]' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_derive CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.9zZemcW9rz/registry/serde_derive-1.0.217/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "deserialize_in_place"))' -C metadata=e70ce57a4c132e97 -C extra-filename=-e70ce57a4c132e97 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern proc_macro2=/tmp/tmp.9zZemcW9rz/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.9zZemcW9rz/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.9zZemcW9rz/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 200s Compiling enumflags2_derive v0.7.10 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/enumflags2_derive-0.7.10/Cargo.toml CARGO_PKG_AUTHORS='maik klein :Maja Kądziołka ' CARGO_PKG_DESCRIPTION='Do not use directly, use the reexport in the `enumflags2` crate. This allows for better compatibility across versions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=enumflags2_derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/meithecatte/enumflags2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.7.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.9zZemcW9rz/registry/enumflags2_derive-0.7.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4e8cf4352c8852a5 -C extra-filename=-4e8cf4352c8852a5 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern proc_macro2=/tmp/tmp.9zZemcW9rz/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.9zZemcW9rz/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.9zZemcW9rz/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 201s Compiling zvariant_utils v2.1.0 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/zvariant_utils-2.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan :turbocooler ' CARGO_PKG_DESCRIPTION='Various utilities used internally by the zvariant crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_utils CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=2.1.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.9zZemcW9rz/registry/zvariant_utils-2.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4a20f09f685365a6 -C extra-filename=-4a20f09f685365a6 --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern proc_macro2=/tmp/tmp.9zZemcW9rz/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.9zZemcW9rz/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.9zZemcW9rz/target/debug/deps/libsyn-dee9ecc2709fc75f.rmeta --cap-lints warn` 201s Compiling zvariant_derive v4.2.0 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/zvariant_derive-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant_derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 /tmp/tmp.9zZemcW9rz/registry/zvariant_derive-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6517a295c227094e -C extra-filename=-6517a295c227094e --out-dir /tmp/tmp.9zZemcW9rz/target/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern proc_macro_crate=/tmp/tmp.9zZemcW9rz/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.9zZemcW9rz/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.9zZemcW9rz/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.9zZemcW9rz/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.9zZemcW9rz/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro --cap-lints warn` 203s Compiling endi v1.1.0 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=endi CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/endi-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/endi-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A simple endian-handling library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=endi CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/zeenix/endi' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name endi --edition=2021 /tmp/tmp.9zZemcW9rz/registry/endi-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=6479300693b4fccf -C extra-filename=-6479300693b4fccf --out-dir /tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.9zZemcW9rz/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 203s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 203s | 203s = note: this feature is not stably supported; its behavior can change in the future 203s 203s warning: `endi` (lib) generated 1 warning 203s Compiling static_assertions v1.1.0 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/static_assertions-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/static_assertions-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name static_assertions --edition=2015 /tmp/tmp.9zZemcW9rz/registry/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=18df01cc327facaa -C extra-filename=-18df01cc327facaa --out-dir /tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.9zZemcW9rz/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 203s warning: `static_assertions` (lib) generated 1 warning (1 duplicate) 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/serde-1.0.217/Cargo.toml CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_README=crates-io.md CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.217 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=217 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps OUT_DIR=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.9zZemcW9rz/registry/serde-1.0.217/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=0341e769f80125f9 -C extra-filename=-0341e769f80125f9 --out-dir /tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern serde_derive=/tmp/tmp.9zZemcW9rz/target/debug/deps/libserde_derive-e70ce57a4c132e97.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.9zZemcW9rz/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(no_core_cstr)' --check-cfg 'cfg(no_core_error)' --check-cfg 'cfg(no_core_net)' --check-cfg 'cfg(no_core_num_saturating)' --check-cfg 'cfg(no_core_try_from)' --check-cfg 'cfg(no_diagnostic_namespace)' --check-cfg 'cfg(no_float_copysign)' --check-cfg 'cfg(no_num_nonzero_signed)' --check-cfg 'cfg(no_relaxed_trait_bounds)' --check-cfg 'cfg(no_serde_derive)' --check-cfg 'cfg(no_std_atomic)' --check-cfg 'cfg(no_std_atomic64)' --check-cfg 'cfg(no_systemtime_checked_add)' --check-cfg 'cfg(no_target_has_atomic)'` 207s Compiling enumflags2 v0.7.10 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/enumflags2-0.7.10/Cargo.toml CARGO_PKG_AUTHORS='maik klein :Maja Kądziołka ' CARGO_PKG_DESCRIPTION='Enum-based bit flags' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=enumflags2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/meithecatte/enumflags2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.7.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.9zZemcW9rz/registry/enumflags2-0.7.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="serde"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "std"))' -C metadata=746c0dc2128bcbc0 -C extra-filename=-746c0dc2128bcbc0 --out-dir /tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern enumflags2_derive=/tmp/tmp.9zZemcW9rz/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.9zZemcW9rz/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 207s Compiling zvariant v4.2.0 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant CARGO_MANIFEST_DIR=/tmp/tmp.9zZemcW9rz/registry/zvariant-4.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.9zZemcW9rz/registry/zvariant-4.2.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='D-Bus & GVariant encoding & decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zvariant CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=4.2.0 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name zvariant --edition=2021 /tmp/tmp.9zZemcW9rz/registry/zvariant-4.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="enumflags2"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arrayvec", "chrono", "default", "enumflags2", "gvariant", "heapless", "option-as-array", "ostree-tests", "serde_bytes", "time", "url", "uuid"))' -C metadata=dd6a34ce24a0cd91 -C extra-filename=-dd6a34ce24a0cd91 --out-dir /tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern endi=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libendi-6479300693b4fccf.rmeta --extern enumflags2=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rmeta --extern serde=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rmeta --extern static_assertions=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rmeta --extern zvariant_derive=/tmp/tmp.9zZemcW9rz/target/debug/deps/libzvariant_derive-6517a295c227094e.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.9zZemcW9rz/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: `serde` (lib) generated 1 warning (1 duplicate) 210s warning: `zvariant` (lib) generated 1 warning (1 duplicate) 210s Compiling zbus_names v3.0.0 (/usr/share/cargo/registry/zbus_names-3.0.0) 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zbus_names CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.9zZemcW9rz/target/debug/deps rustc --crate-name zbus_names --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=083cea9e789c81fb -C extra-filename=-083cea9e789c81fb --out-dir /tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.9zZemcW9rz/target/debug/deps --extern serde=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern static_assertions=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libstatic_assertions-18df01cc327facaa.rlib --extern zvariant=/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/libzvariant-dd6a34ce24a0cd91.rlib -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/zbus_names-3.0.0=/usr/share/cargo/registry/zbus-names-3.0.0 --remap-path-prefix /tmp/tmp.9zZemcW9rz/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 211s warning: `zbus_names` (lib test) generated 1 warning (1 duplicate) 211s Finished `test` profile [unoptimized + debuginfo] target(s) in 19.20s 211s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zbus_names-3.0.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/zbus_names-3.0.0/Cargo.toml CARGO_PKG_AUTHORS='Zeeshan Ali Khan ' CARGO_PKG_DESCRIPTION='A collection of D-Bus bus names types' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zbus_names CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dbus2/zbus/' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=3.0.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.9zZemcW9rz/target/s390x-unknown-linux-gnu/debug/deps/zbus_names-083cea9e789c81fb` 211s 211s running 0 tests 211s 211s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 211s 211s /tmp/autopkgtest.HSjdeH/wrapper.sh: checking for leaked background processes... 211s /tmp/autopkgtest.HSjdeH/wrapper.sh: waiting for tee/cat subprocesses... 211s /tmp/autopkgtest.HSjdeH/wrapper.sh: cleaning up... 211s /tmp/autopkgtest.HSjdeH/wrapper.sh: Exit status: 0 211s autopkgtest: DBG: testbed command exited with code 0 211s autopkgtest [20:05:19]: test librust-zbus-names-dev:: -----------------------] 211s autopkgtest: DBG: testbed executing test finished with exit status 0 211s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3A-stdout /tmp/autopkgtest-work.mth4mcpt/out/librust-zbus-names-dev%3A-stdout 212s autopkgtest: DBG: got reply from testbed: ok 212s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3A-stderr /tmp/autopkgtest-work.mth4mcpt/out/librust-zbus-names-dev%3A-stderr 212s autopkgtest: DBG: got reply from testbed: ok 212s librust-zbus-names-dev: PASS 212s autopkgtest [20:05:20]: test librust-zbus-names-dev:: - - - - - - - - - - results - - - - - - - - - - 212s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.HSjdeH/librust-zbus-names-dev%3A-artifacts/ /tmp/autopkgtest-work.mth4mcpt/out/artifacts/ 212s autopkgtest: DBG: got reply from testbed: ok 212s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.HSjdeH/librust-zbus-names-dev:-artifacts', '/tmp/autopkgtest.HSjdeH/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 213s autopkgtest [20:05:20]: @@@@@@@@@@@@@@@@@@@@ summary 213s rust-zbus-names:@ PASS 213s librust-zbus-names-dev:default PASS 213s librust-zbus-names-dev: PASS 213s autopkgtest: DBG: testbed stop 213s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.HSjdeH 213s autopkgtest: DBG: sending command to testbed: close 230s autopkgtest: DBG: got reply from testbed: ok 230s autopkgtest: DBG: sending command to testbed: quit 230s nova [W] Using flock in prodstack6-s390x 230s Creating nova instance adt-plucky-s390x-rust-zbus-names-20250211-200148-juju-7f2275-prod-proposed-migration-environment-15-ab8baa7b-5671-4700-a1bd-db24e2cdcb8b from image adt/ubuntu-plucky-s390x-server-20250211.img (UUID 66c3edab-d329-48ef-b4f4-4fc082c07041)... 230s nova [W] Timed out waiting for 40931f35-1702-4831-80a8-745ac828a9ea to get deleted.