0s autopkgtest: DBG: testbed init 0s autopkgtest [01:33:13]: starting date and time: 2025-02-11 01:33:13+0000 0s autopkgtest [01:33:13]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:33:13]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.fwz5kj8r/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-zvariant-derive --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-29.secgroup --name adt-plucky-s390x-rust-zvariant-derive-20250211-013312-juju-7f2275-prod-proposed-migration-environment-15-af399b43-e6b8-41cc-87ac-e3b7fb84e310 --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 53s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ioXZx1 53s autopkgtest: DBG: sending command to testbed: print-execute-command 53s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.s8qb57n0/runcmd 53s autopkgtest: DBG: sending command to testbed: capabilities 53s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert revert-full-system suggested-normal-user=ubuntu root-on-testbed 53s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert', 'revert-full-system', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 53s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ioXZx1'], kind short, sout raw, serr pipe, env [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ioXZx1/wrapper.sh 53s autopkgtest: DBG: got reply from testbed: ok 53s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ioXZx1/wrapper.sh'], kind short, sout raw, serr pipe, env [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 53s autopkgtest: DBG: testbed command exited with code 0 53s autopkgtest [01:34:06]: testbed dpkg architecture: s390x 53s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest [01:34:07]: testbed apt version: 2.9.28 54s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest: DBG: testbed has eatmydata 54s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest [01:34:07]: @@@@@@@@@@@@@@@@@@@@ test bed setup 54s 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 [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest [01:34:07]: testbed release detected to be: None 54s 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 [] 54s autopkgtest: DBG: testbed command exited with code 0 54s 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 [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest: DBG: adding APT source: Types: deb deb-src 54s URIs: http://ftpmaster.internal/ubuntu/ 54s Suites: plucky-proposed 54s Components: main restricted universe multiverse 54s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 54s 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 [] 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 54s Package: * 54s Pin: release plucky-proposed 54s Pin-Priority: 500 54s 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 [] 55s autopkgtest: DBG: testbed command exited with code 0 55s autopkgtest [01:34:08]: updating testbed package index (apt update) 55s 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'] 55s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 55s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 55s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 55s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 55s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [56.0 kB] 55s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.5 kB] 55s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [885 kB] 56s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [65.7 kB] 56s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [730 kB] 56s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3984 B] 56s Fetched 1865 kB in 1s (1872 kB/s) 56s Reading package lists... 56s autopkgtest: DBG: testbed command exited with code 0 56s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 56s Package: * 56s Pin: release plucky-proposed 56s Pin-Priority: 100 56s 56s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 56s Pin: release plucky-proposed 56s Pin-Priority: 995 56s 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 [] 57s autopkgtest: DBG: testbed command exited with code 0 57s 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.ioXZx1/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 57s autopkgtest: DBG: testbed command exited with code 0 57s 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'] 57s + lsb_release --codename --short 57s Reading package lists...+ RELEASE=plucky 57s + cat 57s + [ plucky != trusty ] 57s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 57s 57s Building dependency tree... 57s Reading state information... 57s Calculating upgrade... 57s The following packages were automatically installed and are no longer required: 57s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 57s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 57s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 57s linux-tools-6.11.0-8-generic 57s Use 'sudo apt autoremove' to remove them. 57s The following packages will be upgraded: 57s ubuntu-kernel-accessories ubuntu-minimal ubuntu-standard 57s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 57s Need to get 33.7 kB of archives. 57s After this operation, 0 B of additional disk space will be used. 57s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-minimal s390x 1.545 [11.3 kB] 57s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-standard s390x 1.545 [11.3 kB] 57s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-kernel-accessories s390x 1.545 [11.1 kB] 58s Fetched 33.7 kB in 0s (164 kB/s) 58s (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.) 58s Preparing to unpack .../ubuntu-minimal_1.545_s390x.deb ... 58s Unpacking ubuntu-minimal (1.545) over (1.544) ... 58s Preparing to unpack .../ubuntu-standard_1.545_s390x.deb ... 58s Unpacking ubuntu-standard (1.545) over (1.544) ... 58s Preparing to unpack .../ubuntu-kernel-accessories_1.545_s390x.deb ... 58s Unpacking ubuntu-kernel-accessories (1.545) over (1.544) ... 58s Setting up ubuntu-kernel-accessories (1.545) ... 58s Setting up ubuntu-minimal (1.545) ... 58s Setting up ubuntu-standard (1.545) ... 58s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 58s + /usr/lib/apt/apt-helper analyze-pattern ?true 58s + uname -r 58s + sed s/\./\\./g 58s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 58s + apt list ?obsolete 58s + tail -n+2 58s + cut -d/ -f1 58s + grep -v ^linux-.*6\.12\.0-15-generic.* 58s + true 58s + obsolete_pkgs= 58s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 58s Reading package lists... 58s Building dependency tree... 58s Reading state information... 58s The following packages will be REMOVED: 58s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 58s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 58s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 58s linux-tools-6.11.0-8-generic* 59s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 59s After this operation, 167 MB disk space will be freed. 59s (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.) 59s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 59s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 59s Removing libpython3.12t64:s390x (3.12.9-1) ... 59s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 59s Removing libnsl2:s390x (1.3.0-3build3) ... 59s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 59s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 59s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 60s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 60s Processing triggers for libc-bin (2.40-4ubuntu1) ... 60s (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.) 60s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 60s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 60s + grep -q trusty /etc/lsb-release 60s + [ ! -d /usr/share/doc/unattended-upgrades ] 60s + [ ! -d /usr/share/doc/lxd ] 60s + [ ! -d /usr/share/doc/lxd-client ] 60s + [ ! -d /usr/share/doc/snapd ] 60s + type iptables 60s + cat 60s + chmod 755 /etc/rc.local 60s + . /etc/rc.local 60s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 60s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 60s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 60s + uname -m 60s + [ s390x = ppc64le ] 60s + [ -d /run/systemd/system ] 60s + systemd-detect-virt --quiet --vm 60s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 60s + cat 60s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 60s + echo COMPRESS=lz4 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest [01:34:13]: upgrading testbed (apt dist-upgrade and autopurge) 60s 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'] 60s Reading package lists... 60s Building dependency tree... 60s Reading state information... 60s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 60s Starting 2 pkgProblemResolver with broken count: 0 60s Done 60s Entering ResolveByKeep 61s 61s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 61s autopkgtest: DBG: testbed command exited with code 0 61s 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'] 61s Reading package lists... 61s Building dependency tree... 61s Reading state information... 61s Starting pkgProblemResolver with broken count: 0 61s Starting 2 pkgProblemResolver with broken count: 0 61s Done 61s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 61s autopkgtest: DBG: testbed command exited with code 0 61s 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.ioXZx1/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 61s autopkgtest: DBG: testbed command exited with code 1 61s autopkgtest [01:34:14]: rebooting testbed after setup commands that affected boot 61s autopkgtest: DBG: sending command to testbed: reboot 78s autopkgtest: DBG: got reply from testbed: ok 78s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 78s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ioXZx1'], kind short, sout raw, serr pipe, env [] 78s autopkgtest: DBG: testbed command exited with code 0 78s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ioXZx1/autopkgtest-reboot 79s autopkgtest: DBG: got reply from testbed: ok 79s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ioXZx1'], kind short, sout raw, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ioXZx1/autopkgtest-reboot-prepare 79s autopkgtest: DBG: got reply from testbed: ok 79s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest [01:34:33]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 80s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ioXZx1/testbed-packages"], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/testbed-packages /tmp/autopkgtest-work.fwz5kj8r/out/testbed-packages 80s autopkgtest: DBG: got reply from testbed: ok 80s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 80s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ioXZx1'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ioXZx1/autopkgtest-reboot 81s autopkgtest: DBG: got reply from testbed: ok 81s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ioXZx1'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ioXZx1/autopkgtest-reboot-prepare 82s autopkgtest: DBG: got reply from testbed: ok 82s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ioXZx1/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: Binaries: initialising 82s autopkgtest [01:34:35]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-zvariant-derive 82s autopkgtest: DBG: blame += rust-zvariant-derive 82s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 82s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-zvariant-derive'], kind short, sout pipe, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-zvariant-derive-dev$'], kind short, sout pipe, serr raw, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-zvariant-derive-dev=4.2.0-1'], kind short, sout pipe, serr raw, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: install_deps: deps_new=[] 83s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s 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.ioXZx1/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-zvariant-derive=4.2.0-1 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-zvariant-derive_*.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'] 83s + cd / 83s + mktemp -d /tmp/autopkgtest.ioXZx1/build.XXX 83s + builddir=/tmp/autopkgtest.ioXZx1/build.8ub 83s + cd /tmp/autopkgtest.ioXZx1/build.8ub 83s + apt-get source -d -q --only-source rust-zvariant-derive=4.2.0-1 84s + OUT=Reading package lists... 84s NOTICE: 'rust-zvariant-derive' packaging is maintained in the 'Git' version control system at: 84s https://salsa.debian.org/rust-team/debcargo-conf.git [src/zvariant-derive] 84s Please use: 84s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/zvariant-derive] 84s to retrieve the latest (possibly unreleased) updates to the package. 84s Need to get 16.5 kB of source archives. 84s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (dsc) [2156 B] 84s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (tar) [11.1 kB] 84s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (diff) [3308 B] 84s Fetched 16.5 kB in 0s (58.0 kB/s) 84s Download complete and in download only mode 84s + [ -n ] 84s + + echo Reading package lists... 84s NOTICE: 'rust-zvariant-derive' packaging is maintained in the 'Git' version control system at: 84s https://salsa.debian.org/rust-team/debcargo-conf.git [src/zvariant-derive] 84s Please use: 84s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/zvariant-derive] 84s to retrieve the latest (possibly unreleased) updates to the package. 84s Need to get 16.5 kB of source archives. 84s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (dsc) [2156 B] 84s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (tar) [11.1 kB] 84s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (diff) [3308 B] 84s Fetched 16.5 kB in 0s (58.0 kB/s) 84s Download complete and in download only mode 84s grep ^Get: 84s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (dsc) [2156 B] 84s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (tar) [11.1 kB] 84s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-zvariant-derive 4.2.0-1 (diff) [3308 B] 84s + dpkg-source -x rust-zvariant-derive_4.2.0-1.dsc src 84s gpgv: Signature made Wed Sep 18 18:15:44 2024 UTC 84s gpgv: using EDDSA key 14593BFF4A5EBF6FE0E9716EECBEDBB607B9B2BE 84s gpgv: Can't check signature: No public key 84s dpkg-source: warning: cannot verify inline signature for ./rust-zvariant-derive_4.2.0-1.dsc: no acceptable signature found 84s + chmod -R a+rX . 84s + cd src/. 84s + pwd 84s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest [01:34:37]: testing package rust-zvariant-derive version 4.2.0-1 84s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/build.8ub/src/debian/ /tmp/autopkgtest-work.fwz5kj8r/out/pkg/debian/ 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+default-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+default-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+derive-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-repr-0.1+default-dev 84s autopkgtest: DBG: processing dependency @ 84s autopkgtest: DBG: synthesised dependency librust-zvariant-derive-dev 84s autopkgtest: DBG: Test defined: name rust-zvariant-derive:@ path None command "/usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --all-features" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=rust-zvariant-derive:@'] depends ['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+default-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+default-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+derive-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-repr-0.1+default-dev 84s autopkgtest: DBG: processing dependency @ 84s autopkgtest: DBG: synthesised dependency librust-zvariant-derive-dev 84s autopkgtest: DBG: Test defined: name librust-zvariant-derive-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-zvariant-derive-dev:default'] depends ['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+default-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+default-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+derive-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-repr-0.1+default-dev 84s autopkgtest: DBG: processing dependency @ 84s autopkgtest: DBG: synthesised dependency librust-zvariant-derive-dev 84s autopkgtest: DBG: Test defined: name librust-zvariant-derive-dev: path None command "/usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-zvariant-derive-dev:'] depends ['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest [01:34:37]: build not needed 84s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/build.8ub/src/ /tmp/autopkgtest-work.fwz5kj8r/out/tests-tree/ 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+default-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+default-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+derive-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-repr-0.1+default-dev 84s autopkgtest: DBG: processing dependency @ 84s autopkgtest: DBG: synthesised dependency librust-zvariant-derive-dev 84s autopkgtest: DBG: Test defined: name rust-zvariant-derive:@ path None command "/usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --all-features" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=rust-zvariant-derive:@'] depends ['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+default-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+default-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+derive-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-repr-0.1+default-dev 84s autopkgtest: DBG: processing dependency @ 84s autopkgtest: DBG: synthesised dependency librust-zvariant-derive-dev 84s autopkgtest: DBG: Test defined: name librust-zvariant-derive-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-zvariant-derive-dev:default'] depends ['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+default-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+default-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-1+derive-dev (>= 1.0.200-~~) 84s autopkgtest: DBG: processing dependency librust-serde-repr-0.1+default-dev 84s autopkgtest: DBG: processing dependency @ 84s autopkgtest: DBG: synthesised dependency librust-zvariant-derive-dev 84s autopkgtest: DBG: Test defined: name librust-zvariant-derive-dev: path None command "/usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'flaky', 'skip-not-installable'] features ['test-name=librust-zvariant-derive-dev:'] depends ['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest [01:34:37]: test rust-zvariant-derive:@: preparing testbed 84s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 84s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 84s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-enumflags2-0.7+default-dev (>= 0.7.9-~~), librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~), librust-serde-1+default-dev (>= 1.0.200-~~), librust-serde-1+derive-dev (>= 1.0.200-~~), librust-serde-repr-0.1+default-dev, librust-zvariant-derive-dev 84s autopkgtest: DBG: can use apt-get on testbed: True 84s 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-enumflags2-0.7+default-dev (>= 0.7.9-~~), librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~), librust-serde-1+default-dev (>= 1.0.200-~~), librust-serde-1+derive-dev (>= 1.0.200-~~), librust-serde-repr-0.1+default-dev, librust-zvariant-derive-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 85s Reading package lists... 85s Building dependency tree... 85s Reading state information... 85s Starting pkgProblemResolver with broken count: 0 85s Starting 2 pkgProblemResolver with broken count: 0 85s Done 85s The following NEW packages will be installed: 85s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 85s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 85s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 85s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 85s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl 85s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 85s libitm1 libmpc3 librust-ahash-dev librust-allocator-api2-dev 85s librust-arbitrary-dev librust-byteorder-dev librust-cfg-if-dev 85s librust-compiler-builtins-dev librust-const-random-dev 85s librust-const-random-macro-dev librust-critical-section-dev 85s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 85s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 85s librust-derive-arbitrary-dev librust-either-dev 85s librust-enumflags2-derive-dev librust-enumflags2-dev librust-equivalent-dev 85s librust-erased-serde-dev librust-getrandom-dev librust-hashbrown-dev 85s librust-indexmap-dev librust-itoa-dev librust-kstring-dev librust-libc-dev 85s librust-log-dev librust-memchr-dev librust-no-panic-dev 85s librust-once-cell-dev librust-parking-lot-core-dev 85s librust-portable-atomic-dev librust-proc-macro-crate-dev 85s librust-proc-macro2-dev librust-quote-dev librust-rayon-core-dev 85s librust-rayon-dev librust-rustc-std-workspace-core-dev librust-ryu-dev 85s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 85s librust-serde-json-dev librust-serde-repr-dev librust-serde-spanned-dev 85s librust-serde-test-dev librust-smallvec-dev librust-static-assertions-dev 85s librust-sval-buffer-dev librust-sval-derive-dev librust-sval-dev 85s librust-sval-dynamic-dev librust-sval-fmt-dev librust-sval-ref-dev 85s librust-sval-serde-dev librust-syn-dev librust-tiny-keccak-dev 85s librust-toml-datetime-dev librust-toml-edit-dev librust-unicode-ident-dev 85s librust-value-bag-dev librust-value-bag-serde1-dev 85s librust-value-bag-sval2-dev librust-version-check-dev librust-winnow-dev 85s librust-zerocopy-derive-dev librust-zerocopy-dev librust-zvariant-derive-dev 85s librust-zvariant-utils-dev libstd-rust-1.84 libstd-rust-1.84-dev libtool 85s libubsan1 m4 po-debconf rustc rustc-1.84 85s 0 upgraded, 111 newly installed, 0 to remove and 0 not upgraded. 85s Need to get 135 MB of archives. 85s After this operation, 522 MB of additional disk space will be used. 85s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 85s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 86s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 86s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 86s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 86s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 86s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 86s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 88s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 88s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 88s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 88s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 88s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 88s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 88s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 88s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 88s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 88s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 88s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 88s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 88s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 89s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 89s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 89s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 89s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 89s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 89s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 89s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 89s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 89s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 89s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 89s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 89s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 90s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 90s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 90s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 90s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 90s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 90s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 90s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 90s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 90s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 90s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 90s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 90s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 90s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 90s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 90s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 90s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 90s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 90s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 90s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 90s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 90s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 90s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 90s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 90s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 90s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 90s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 90s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 90s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 90s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 90s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 90s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 90s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 90s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 90s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 90s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 90s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 90s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 90s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 90s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 90s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 90s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 90s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 90s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-enumflags2-derive-dev s390x 0.7.10-1 [10.1 kB] 90s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-enumflags2-dev s390x 0.7.10-1 [18.3 kB] 90s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 90s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 90s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 90s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 90s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 90s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 90s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 90s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 90s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 90s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-kstring-dev s390x 2.0.0-1 [17.7 kB] 90s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 90s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 90s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 90s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 90s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 90s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 90s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 90s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 90s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 90s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 90s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 90s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 90s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 90s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 91s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 91s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 91s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-spanned-dev s390x 0.6.7-1 [10.7 kB] 91s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-toml-datetime-dev s390x 0.6.8-1 [13.3 kB] 91s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-winnow-dev s390x 0.6.18-1 [127 kB] 91s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-toml-edit-dev s390x 0.22.20-1 [94.1 kB] 91s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro-crate-dev s390x 3.2.0-1 [13.4 kB] 91s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-repr-dev s390x 0.1.12-1 [11.9 kB] 91s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-utils-dev s390x 2.1.0-1 [9028 B] 91s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zvariant-derive-dev s390x 4.2.0-1 [13.3 kB] 91s Fetched 135 MB in 6s (22.9 MB/s) 91s Selecting previously unselected package m4. 91s (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.) 91s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 91s Unpacking m4 (1.4.19-5) ... 91s Selecting previously unselected package autoconf. 91s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 91s Unpacking autoconf (2.72-3) ... 91s Selecting previously unselected package autotools-dev. 91s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 91s Unpacking autotools-dev (20220109.1) ... 91s Selecting previously unselected package automake. 91s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 91s Unpacking automake (1:1.17-3) ... 91s Selecting previously unselected package autopoint. 91s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 91s Unpacking autopoint (0.23.1-1) ... 91s Selecting previously unselected package libgit2-1.9:s390x. 91s Preparing to unpack .../005-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 91s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 92s Selecting previously unselected package libstd-rust-1.84:s390x. 92s Preparing to unpack .../006-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 92s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 92s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 92s Preparing to unpack .../007-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 92s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 93s Selecting previously unselected package libisl23:s390x. 93s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 93s Unpacking libisl23:s390x (0.27-1) ... 93s Selecting previously unselected package libmpc3:s390x. 93s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 93s Unpacking libmpc3:s390x (1.3.1-1build2) ... 93s Selecting previously unselected package cpp-14-s390x-linux-gnu. 93s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package cpp-14. 93s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package cpp-s390x-linux-gnu. 93s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 93s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 93s Selecting previously unselected package cpp. 93s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 93s Unpacking cpp (4:14.2.0-1ubuntu1) ... 93s Selecting previously unselected package libcc1-0:s390x. 93s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package libgomp1:s390x. 93s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package libitm1:s390x. 93s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package libasan8:s390x. 93s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package libubsan1:s390x. 93s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package libgcc-14-dev:s390x. 93s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package gcc-14-s390x-linux-gnu. 93s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package gcc-14. 93s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 93s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 93s Selecting previously unselected package gcc-s390x-linux-gnu. 93s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 93s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 93s Selecting previously unselected package gcc. 93s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 93s Unpacking gcc (4:14.2.0-1ubuntu1) ... 93s Selecting previously unselected package rustc-1.84. 93s Preparing to unpack .../024-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 93s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 93s Selecting previously unselected package cargo-1.84. 93s Preparing to unpack .../025-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 93s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 94s Selecting previously unselected package libdebhelper-perl. 94s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 94s Unpacking libdebhelper-perl (13.23ubuntu1) ... 94s Selecting previously unselected package libtool. 94s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 94s Unpacking libtool (2.5.4-3build1) ... 94s Selecting previously unselected package dh-autoreconf. 94s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 94s Unpacking dh-autoreconf (20) ... 94s Selecting previously unselected package libarchive-zip-perl. 94s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 94s Unpacking libarchive-zip-perl (1.68-1) ... 94s Selecting previously unselected package libfile-stripnondeterminism-perl. 94s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 94s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 94s Selecting previously unselected package dh-strip-nondeterminism. 94s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 94s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 94s Selecting previously unselected package debugedit. 94s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 94s Unpacking debugedit (1:5.1-2) ... 94s Selecting previously unselected package dwz. 94s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 94s Unpacking dwz (0.15-1build6) ... 94s Selecting previously unselected package gettext. 94s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 94s Unpacking gettext (0.23.1-1) ... 94s Selecting previously unselected package intltool-debian. 94s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 94s Unpacking intltool-debian (0.35.0+20060710.6) ... 94s Selecting previously unselected package po-debconf. 94s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 94s Unpacking po-debconf (1.0.21+nmu1) ... 94s Selecting previously unselected package debhelper. 94s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 94s Unpacking debhelper (13.23ubuntu1) ... 94s Selecting previously unselected package rustc. 94s Preparing to unpack .../038-rustc_1.84.0ubuntu1_s390x.deb ... 94s Unpacking rustc (1.84.0ubuntu1) ... 94s Selecting previously unselected package cargo. 94s Preparing to unpack .../039-cargo_1.84.0ubuntu1_s390x.deb ... 94s Unpacking cargo (1.84.0ubuntu1) ... 94s Selecting previously unselected package dh-cargo-tools. 94s Preparing to unpack .../040-dh-cargo-tools_31ubuntu4_all.deb ... 94s Unpacking dh-cargo-tools (31ubuntu4) ... 94s Selecting previously unselected package dh-cargo. 94s Preparing to unpack .../041-dh-cargo_31ubuntu4_all.deb ... 94s Unpacking dh-cargo (31ubuntu4) ... 94s Selecting previously unselected package librust-critical-section-dev:s390x. 94s Preparing to unpack .../042-librust-critical-section-dev_1.2.0-1_s390x.deb ... 94s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 94s Selecting previously unselected package librust-unicode-ident-dev:s390x. 94s Preparing to unpack .../043-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 94s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 94s Selecting previously unselected package librust-proc-macro2-dev:s390x. 94s Preparing to unpack .../044-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 94s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 94s Selecting previously unselected package librust-quote-dev:s390x. 94s Preparing to unpack .../045-librust-quote-dev_1.0.37-1_s390x.deb ... 94s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 94s Selecting previously unselected package librust-syn-dev:s390x. 94s Preparing to unpack .../046-librust-syn-dev_2.0.96-2_s390x.deb ... 94s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 94s Selecting previously unselected package librust-serde-derive-dev:s390x. 94s Preparing to unpack .../047-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 94s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 94s Selecting previously unselected package librust-serde-dev:s390x. 94s Preparing to unpack .../048-librust-serde-dev_1.0.217-1_s390x.deb ... 94s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 94s Selecting previously unselected package librust-portable-atomic-dev:s390x. 94s Preparing to unpack .../049-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 94s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 94s Selecting previously unselected package librust-cfg-if-dev:s390x. 94s Preparing to unpack .../050-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 94s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 94s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 94s Preparing to unpack .../051-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 94s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 94s Selecting previously unselected package librust-libc-dev:s390x. 94s Preparing to unpack .../052-librust-libc-dev_0.2.169-1_s390x.deb ... 94s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 94s Selecting previously unselected package librust-getrandom-dev:s390x. 94s Preparing to unpack .../053-librust-getrandom-dev_0.2.15-1_s390x.deb ... 94s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 94s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 94s Preparing to unpack .../054-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 94s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 94s Selecting previously unselected package librust-arbitrary-dev:s390x. 94s Preparing to unpack .../055-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 94s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 94s Selecting previously unselected package librust-smallvec-dev:s390x. 94s Preparing to unpack .../056-librust-smallvec-dev_1.13.2-1_s390x.deb ... 94s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 94s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 94s Preparing to unpack .../057-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 94s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 94s Selecting previously unselected package librust-once-cell-dev:s390x. 94s Preparing to unpack .../058-librust-once-cell-dev_1.20.2-1_s390x.deb ... 94s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 94s Selecting previously unselected package librust-crunchy-dev:s390x. 94s Preparing to unpack .../059-librust-crunchy-dev_0.2.2-1_s390x.deb ... 94s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 94s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 94s Preparing to unpack .../060-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 94s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 94s Selecting previously unselected package librust-const-random-macro-dev:s390x. 94s Preparing to unpack .../061-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 94s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 94s Selecting previously unselected package librust-const-random-dev:s390x. 94s Preparing to unpack .../062-librust-const-random-dev_0.1.17-2_s390x.deb ... 94s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 94s Selecting previously unselected package librust-version-check-dev:s390x. 94s Preparing to unpack .../063-librust-version-check-dev_0.9.5-1_s390x.deb ... 94s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 94s Selecting previously unselected package librust-byteorder-dev:s390x. 94s Preparing to unpack .../064-librust-byteorder-dev_1.5.0-1_s390x.deb ... 94s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 94s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 94s Preparing to unpack .../065-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 94s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 94s Selecting previously unselected package librust-zerocopy-dev:s390x. 94s Preparing to unpack .../066-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 94s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 94s Selecting previously unselected package librust-ahash-dev. 94s Preparing to unpack .../067-librust-ahash-dev_0.8.11-9_all.deb ... 94s Unpacking librust-ahash-dev (0.8.11-9) ... 94s Selecting previously unselected package librust-allocator-api2-dev:s390x. 94s Preparing to unpack .../068-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 94s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 94s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 94s Preparing to unpack .../069-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 94s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 94s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 94s Preparing to unpack .../070-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 94s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 94s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 94s Preparing to unpack .../071-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 94s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 94s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 94s Preparing to unpack .../072-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 94s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 94s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 94s Preparing to unpack .../073-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 94s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 94s Selecting previously unselected package librust-either-dev:s390x. 94s Preparing to unpack .../074-librust-either-dev_1.13.0-1_s390x.deb ... 94s Unpacking librust-either-dev:s390x (1.13.0-1) ... 94s Selecting previously unselected package librust-enumflags2-derive-dev:s390x. 94s Preparing to unpack .../075-librust-enumflags2-derive-dev_0.7.10-1_s390x.deb ... 94s Unpacking librust-enumflags2-derive-dev:s390x (0.7.10-1) ... 94s Selecting previously unselected package librust-enumflags2-dev:s390x. 94s Preparing to unpack .../076-librust-enumflags2-dev_0.7.10-1_s390x.deb ... 94s Unpacking librust-enumflags2-dev:s390x (0.7.10-1) ... 94s Selecting previously unselected package librust-equivalent-dev:s390x. 94s Preparing to unpack .../077-librust-equivalent-dev_1.0.1-1_s390x.deb ... 94s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 94s Selecting previously unselected package librust-erased-serde-dev:s390x. 94s Preparing to unpack .../078-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 94s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 94s Selecting previously unselected package librust-rayon-core-dev:s390x. 94s Preparing to unpack .../079-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 94s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 94s Selecting previously unselected package librust-rayon-dev:s390x. 94s Preparing to unpack .../080-librust-rayon-dev_1.10.0-1_s390x.deb ... 94s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 94s Selecting previously unselected package librust-hashbrown-dev:s390x. 94s Preparing to unpack .../081-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 94s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 94s Selecting previously unselected package librust-indexmap-dev:s390x. 94s Preparing to unpack .../082-librust-indexmap-dev_2.7.0-1_s390x.deb ... 94s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 94s Selecting previously unselected package librust-no-panic-dev:s390x. 94s Preparing to unpack .../083-librust-no-panic-dev_0.1.32-1_s390x.deb ... 94s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 94s Selecting previously unselected package librust-itoa-dev:s390x. 94s Preparing to unpack .../084-librust-itoa-dev_1.0.14-1_s390x.deb ... 94s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 94s Selecting previously unselected package librust-static-assertions-dev:s390x. 94s Preparing to unpack .../085-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 94s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 94s Selecting previously unselected package librust-kstring-dev:s390x. 94s Preparing to unpack .../086-librust-kstring-dev_2.0.0-1_s390x.deb ... 94s Unpacking librust-kstring-dev:s390x (2.0.0-1) ... 94s Selecting previously unselected package librust-sval-derive-dev:s390x. 94s Preparing to unpack .../087-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 94s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 94s Selecting previously unselected package librust-sval-dev:s390x. 94s Preparing to unpack .../088-librust-sval-dev_2.6.1-2_s390x.deb ... 94s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 94s Selecting previously unselected package librust-sval-ref-dev:s390x. 94s Preparing to unpack .../089-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 94s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 94s Selecting previously unselected package librust-serde-fmt-dev. 94s Preparing to unpack .../090-librust-serde-fmt-dev_1.0.3-4_all.deb ... 94s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 94s Selecting previously unselected package librust-memchr-dev:s390x. 94s Preparing to unpack .../091-librust-memchr-dev_2.7.4-1_s390x.deb ... 94s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 95s Selecting previously unselected package librust-ryu-dev:s390x. 95s Preparing to unpack .../092-librust-ryu-dev_1.0.19-1_s390x.deb ... 95s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 95s Selecting previously unselected package librust-serde-json-dev:s390x. 95s Preparing to unpack .../093-librust-serde-json-dev_1.0.133-1_s390x.deb ... 95s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 95s Selecting previously unselected package librust-serde-test-dev:s390x. 95s Preparing to unpack .../094-librust-serde-test-dev_1.0.171-1_s390x.deb ... 95s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 95s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 95s Preparing to unpack .../095-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 95s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 95s Selecting previously unselected package librust-sval-buffer-dev:s390x. 95s Preparing to unpack .../096-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 95s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 95s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 95s Preparing to unpack .../097-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 95s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 95s Selecting previously unselected package librust-sval-fmt-dev:s390x. 95s Preparing to unpack .../098-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 95s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 95s Selecting previously unselected package librust-sval-serde-dev:s390x. 95s Preparing to unpack .../099-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 95s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 95s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 95s Preparing to unpack .../100-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 95s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 95s Selecting previously unselected package librust-value-bag-dev:s390x. 95s Preparing to unpack .../101-librust-value-bag-dev_1.9.0-1_s390x.deb ... 95s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 95s Selecting previously unselected package librust-log-dev:s390x. 95s Preparing to unpack .../102-librust-log-dev_0.4.22-1_s390x.deb ... 95s Unpacking librust-log-dev:s390x (0.4.22-1) ... 95s Selecting previously unselected package librust-serde-spanned-dev:s390x. 95s Preparing to unpack .../103-librust-serde-spanned-dev_0.6.7-1_s390x.deb ... 95s Unpacking librust-serde-spanned-dev:s390x (0.6.7-1) ... 95s Selecting previously unselected package librust-toml-datetime-dev:s390x. 95s Preparing to unpack .../104-librust-toml-datetime-dev_0.6.8-1_s390x.deb ... 95s Unpacking librust-toml-datetime-dev:s390x (0.6.8-1) ... 95s Selecting previously unselected package librust-winnow-dev:s390x. 95s Preparing to unpack .../105-librust-winnow-dev_0.6.18-1_s390x.deb ... 95s Unpacking librust-winnow-dev:s390x (0.6.18-1) ... 95s Selecting previously unselected package librust-toml-edit-dev:s390x. 95s Preparing to unpack .../106-librust-toml-edit-dev_0.22.20-1_s390x.deb ... 95s Unpacking librust-toml-edit-dev:s390x (0.22.20-1) ... 95s Selecting previously unselected package librust-proc-macro-crate-dev:s390x. 95s Preparing to unpack .../107-librust-proc-macro-crate-dev_3.2.0-1_s390x.deb ... 95s Unpacking librust-proc-macro-crate-dev:s390x (3.2.0-1) ... 95s Selecting previously unselected package librust-serde-repr-dev:s390x. 95s Preparing to unpack .../108-librust-serde-repr-dev_0.1.12-1_s390x.deb ... 95s Unpacking librust-serde-repr-dev:s390x (0.1.12-1) ... 95s Selecting previously unselected package librust-zvariant-utils-dev:s390x. 95s Preparing to unpack .../109-librust-zvariant-utils-dev_2.1.0-1_s390x.deb ... 95s Unpacking librust-zvariant-utils-dev:s390x (2.1.0-1) ... 95s Selecting previously unselected package librust-zvariant-derive-dev:s390x. 95s Preparing to unpack .../110-librust-zvariant-derive-dev_4.2.0-1_s390x.deb ... 95s Unpacking librust-zvariant-derive-dev:s390x (4.2.0-1) ... 95s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 95s Setting up librust-either-dev:s390x (1.13.0-1) ... 95s Setting up dh-cargo-tools (31ubuntu4) ... 95s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 95s Setting up libarchive-zip-perl (1.68-1) ... 95s Setting up libdebhelper-perl (13.23ubuntu1) ... 95s Setting up m4 (1.4.19-5) ... 95s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 95s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 95s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 95s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 95s Setting up autotools-dev (20220109.1) ... 95s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 95s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 95s Setting up libmpc3:s390x (1.3.1-1build2) ... 95s Setting up autopoint (0.23.1-1) ... 95s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 95s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 95s Setting up autoconf (2.72-3) ... 95s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 95s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 95s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 95s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 95s Setting up dwz (0.15-1build6) ... 95s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 95s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 95s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 95s Setting up debugedit (1:5.1-2) ... 95s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 95s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 95s Setting up libisl23:s390x (0.27-1) ... 95s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 95s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 95s Setting up automake (1:1.17-3) ... 95s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 95s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 95s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 95s Setting up librust-libc-dev:s390x (0.2.169-1) ... 95s Setting up gettext (0.23.1-1) ... 95s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 95s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 95s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 95s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 95s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 95s Setting up intltool-debian (0.35.0+20060710.6) ... 95s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 95s Setting up cpp-14 (14.2.0-16ubuntu1) ... 95s Setting up dh-strip-nondeterminism (1.14.1-2) ... 95s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 95s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 95s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 95s Setting up po-debconf (1.0.21+nmu1) ... 95s Setting up librust-quote-dev:s390x (1.0.37-1) ... 95s Setting up librust-syn-dev:s390x (2.0.96-2) ... 95s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 95s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 95s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 95s Setting up librust-enumflags2-derive-dev:s390x (0.7.10-1) ... 95s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 95s Setting up cpp (4:14.2.0-1ubuntu1) ... 95s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 95s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 95s Setting up librust-zvariant-utils-dev:s390x (2.1.0-1) ... 95s Setting up librust-serde-dev:s390x (1.0.217-1) ... 95s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 95s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 95s Setting up librust-serde-fmt-dev (1.0.3-4) ... 95s Setting up librust-toml-datetime-dev:s390x (0.6.8-1) ... 95s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 95s Setting up librust-serde-repr-dev:s390x (0.1.12-1) ... 95s Setting up librust-sval-dev:s390x (2.6.1-2) ... 95s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 95s Setting up gcc-14 (14.2.0-16ubuntu1) ... 95s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 95s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 95s Setting up librust-enumflags2-dev:s390x (0.7.10-1) ... 95s Setting up librust-serde-spanned-dev:s390x (0.6.7-1) ... 95s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 95s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 95s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 95s Setting up librust-kstring-dev:s390x (2.0.0-1) ... 95s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 95s Setting up libtool (2.5.4-3build1) ... 95s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 95s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 95s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 95s Setting up gcc (4:14.2.0-1ubuntu1) ... 95s Setting up dh-autoreconf (20) ... 95s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 95s Setting up rustc (1.84.0ubuntu1) ... 95s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 95s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 95s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 95s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 95s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 95s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 95s Setting up debhelper (13.23ubuntu1) ... 95s Setting up librust-ahash-dev (0.8.11-9) ... 95s Setting up cargo (1.84.0ubuntu1) ... 95s Setting up dh-cargo (31ubuntu4) ... 95s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 95s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 95s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 95s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 95s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 95s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 95s Setting up librust-log-dev:s390x (0.4.22-1) ... 95s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 95s Setting up librust-winnow-dev:s390x (0.6.18-1) ... 95s Setting up librust-toml-edit-dev:s390x (0.22.20-1) ... 95s Setting up librust-proc-macro-crate-dev:s390x (3.2.0-1) ... 95s Setting up librust-zvariant-derive-dev:s390x (4.2.0-1) ... 95s Processing triggers for install-info (7.1.1-1) ... 95s Processing triggers for libc-bin (2.40-4ubuntu1) ... 95s Processing triggers for man-db (2.13.0-1) ... 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-zvariant-derive-dev'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-packages.all"], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/rust-zvariant-derive%3A%40-packages.all /tmp/autopkgtest-work.fwz5kj8r/out/rust-zvariant-derive%3A%40-packages.all 96s autopkgtest: DBG: got reply from testbed: ok 96s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ioXZx1/build.8ub/src'], kind short, sout raw, serr raw, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ioXZx1/build.8ub/src already exists 96s autopkgtest [01:34:49]: test rust-zvariant-derive:@: /usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --all-features 96s autopkgtest [01:34:49]: test rust-zvariant-derive:@: [----------------------- 96s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ioXZx1/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-artifacts --chdir=/tmp/autopkgtest.ioXZx1/build.8ub/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.ioXZx1/rust-zvariant-derive:@-stderr --stdout=/tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-stdout --tmp=/tmp/autopkgtest.ioXZx1/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 zvariant_derive 4.2.0 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-artifacts 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: changing to directory: /tmp/autopkgtest.ioXZx1/build.8ub/src 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: LANG=C.UTF-8 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LANGUAGE 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_ADDRESS 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_ALL 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_COLLATE 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_CTYPE 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_IDENTIFICATION 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MEASUREMENT 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MESSAGES 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MONETARY 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_NAME 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_NUMERIC 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_PAPER 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_TELEPHONE 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_TIME 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: pretending to be a login shell 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: will write standard error to /tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-stderr 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: will write stdout to /tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-stdout 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ioXZx1/autopkgtest_tmp 97s /tmp/autopkgtest.ioXZx1/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 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --all-features 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: copying /tmp/tmp.AFbr3OqVsX/out to stdout and file: /tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-stdout 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: copying /tmp/tmp.AFbr3OqVsX/err to standard error and file: /tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-stdout 97s /tmp/autopkgtest.ioXZx1/wrapper.sh: writing script pid 2396 to /tmp/autopkgtest_script_pid 97s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 97s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 97s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 97s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.IaqRN1gjlF/registry/ 97s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 97s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 97s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 97s 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'],) {} 97s Compiling proc-macro2 v1.0.92 97s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --cap-lints warn` 97s Compiling unicode-ident v1.0.13 97s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --cap-lints warn` 97s Compiling serde v1.0.217 97s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --cap-lints warn` 97s 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.IaqRN1gjlF/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps:/tmp/tmp.IaqRN1gjlF/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.IaqRN1gjlF/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 97s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 97s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 97s Compiling hashbrown v0.14.5 97s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --cap-lints warn` 97s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 97s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 97s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern unicode_ident=/tmp/tmp.IaqRN1gjlF/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)'` 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/lib.rs:14:5 97s | 97s 14 | feature = "nightly", 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s = note: `#[warn(unexpected_cfgs)]` on by default 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/lib.rs:39:13 97s | 97s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/lib.rs:40:13 97s | 97s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/lib.rs:49:7 97s | 97s 49 | #[cfg(feature = "nightly")] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/macros.rs:59:7 97s | 97s 59 | #[cfg(feature = "nightly")] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/macros.rs:65:11 97s | 97s 65 | #[cfg(not(feature = "nightly"))] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 97s | 97s 53 | #[cfg(not(feature = "nightly"))] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 97s | 97s 55 | #[cfg(not(feature = "nightly"))] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 97s | 97s 57 | #[cfg(feature = "nightly")] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 97s | 97s 3549 | #[cfg(feature = "nightly")] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 97s | 97s 3661 | #[cfg(feature = "nightly")] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 97s | 97s 3678 | #[cfg(not(feature = "nightly"))] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 97s | 97s 4304 | #[cfg(feature = "nightly")] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 97s warning: unexpected `cfg` condition value: `nightly` 97s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 97s | 97s 4319 | #[cfg(not(feature = "nightly"))] 97s | ^^^^^^^^^^^^^^^^^^^ 97s | 97s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 97s = help: consider adding `nightly` as a feature in `Cargo.toml` 97s = note: see for more information about checking conditional configuration 97s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 98s | 98s 7 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 98s | 98s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 98s | 98s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 98s | 98s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `rkyv` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 98s | 98s 3 | #[cfg(feature = "rkyv")] 98s | ^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `rkyv` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:242:11 98s | 98s 242 | #[cfg(not(feature = "nightly"))] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:255:7 98s | 98s 255 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:6517:11 98s | 98s 6517 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:6523:11 98s | 98s 6523 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:6591:11 98s | 98s 6591 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:6597:11 98s | 98s 6597 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:6651:11 98s | 98s 6651 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/map.rs:6657:11 98s | 98s 6657 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/set.rs:1359:11 98s | 98s 1359 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/set.rs:1365:11 98s | 98s 1365 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/set.rs:1383:11 98s | 98s 1383 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `nightly` 98s --> /tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5/src/set.rs:1389:11 98s | 98s 1389 | #[cfg(feature = "nightly")] 98s | ^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 98s = help: consider adding `nightly` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: `hashbrown` (lib) generated 31 warnings 98s Compiling quote v1.0.37 98s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 98s Compiling syn v2.0.96 98s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 98s Compiling equivalent v1.0.1 98s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --cap-lints warn` 98s Compiling indexmap v2.7.0 98s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern equivalent=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 98s warning: unexpected `cfg` condition value: `borsh` 98s --> /tmp/tmp.IaqRN1gjlF/registry/indexmap-2.7.0/src/lib.rs:117:7 98s | 98s 117 | #[cfg(feature = "borsh")] 98s | ^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 98s = help: consider adding `borsh` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s = note: `#[warn(unexpected_cfgs)]` on by default 98s 98s warning: unexpected `cfg` condition value: `rustc-rayon` 98s --> /tmp/tmp.IaqRN1gjlF/registry/indexmap-2.7.0/src/lib.rs:131:7 98s | 98s 131 | #[cfg(feature = "rustc-rayon")] 98s | ^^^^^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 98s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `quickcheck` 98s --> /tmp/tmp.IaqRN1gjlF/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 98s | 98s 38 | #[cfg(feature = "quickcheck")] 98s | ^^^^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 98s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `rustc-rayon` 98s --> /tmp/tmp.IaqRN1gjlF/registry/indexmap-2.7.0/src/macros.rs:128:30 98s | 98s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 98s | ^^^^^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 98s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 98s warning: unexpected `cfg` condition value: `rustc-rayon` 98s --> /tmp/tmp.IaqRN1gjlF/registry/indexmap-2.7.0/src/macros.rs:153:30 98s | 98s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 98s | ^^^^^^^^^^^^^^^^^^^^^^^ 98s | 98s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 98s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 98s = note: see for more information about checking conditional configuration 98s 99s warning: `indexmap` (lib) generated 5 warnings 99s 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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0--remap-path-prefix/tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps:/tmp/tmp.IaqRN1gjlF/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/build/proc-macro2-0151d10497e44404/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.IaqRN1gjlF/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 99s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 99s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 99s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 99s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 99s Compiling winnow v0.6.18 99s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --cap-lints warn` 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 99s | 99s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s = note: `#[warn(unexpected_cfgs)]` on by default 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 99s | 99s 3 | #[cfg(feature = "debug")] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 99s | 99s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 99s | 99s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 99s | 99s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 99s | 99s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 99s | 99s 79 | #[cfg(feature = "debug")] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 99s | 99s 44 | #[cfg(feature = "debug")] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 99s | 99s 48 | #[cfg(not(feature = "debug"))] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 99s warning: unexpected `cfg` condition value: `debug` 99s --> /tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 99s | 99s 59 | #[cfg(feature = "debug")] 99s | ^^^^^^^^^^^^^^^^^ 99s | 99s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 99s = help: consider adding `debug` as a feature in `Cargo.toml` 99s = note: see for more information about checking conditional configuration 99s 100s warning: `winnow` (lib) generated 10 warnings 100s Compiling toml_datetime v0.6.8 100s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --cap-lints warn` 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.IaqRN1gjlF/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=3ff7765a610208af -C extra-filename=-3ff7765a610208af --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 101s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 101s | 101s = note: this feature is not stably supported; its behavior can change in the future 101s 101s warning: `unicode-ident` (lib) generated 1 warning 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/build/proc-macro2-0151d10497e44404/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.IaqRN1gjlF/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=39693d09aaf9eb4c -C extra-filename=-39693d09aaf9eb4c --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern unicode_ident=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libunicode_ident-3ff7765a610208af.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --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)'` 101s warning: `proc-macro2` (lib) generated 1 warning (1 duplicate) 101s Compiling toml_edit v0.22.20 101s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern indexmap=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 104s Compiling serde_derive v1.0.217 104s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 105s Compiling enumflags2_derive v0.7.10 105s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 106s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.IaqRN1gjlF/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=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 106s | 106s 14 | feature = "nightly", 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s = note: `#[warn(unexpected_cfgs)]` on by default 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 106s | 106s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 106s | 106s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 106s | 106s 49 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 106s | 106s 59 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 106s | 106s 65 | #[cfg(not(feature = "nightly"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 106s | 106s 53 | #[cfg(not(feature = "nightly"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 106s | 106s 55 | #[cfg(not(feature = "nightly"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 106s | 106s 57 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 106s | 106s 3549 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 106s | 106s 3661 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 106s | 106s 3678 | #[cfg(not(feature = "nightly"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 106s | 106s 4304 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 106s | 106s 4319 | #[cfg(not(feature = "nightly"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 106s | 106s 7 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 106s | 106s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 106s | 106s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 106s | 106s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `rkyv` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 106s | 106s 3 | #[cfg(feature = "rkyv")] 106s | ^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `rkyv` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 106s | 106s 242 | #[cfg(not(feature = "nightly"))] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 106s | 106s 255 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 106s | 106s 6517 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 106s | 106s 6523 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 106s | 106s 6591 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 106s | 106s 6597 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 106s | 106s 6651 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 106s | 106s 6657 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 106s | 106s 1359 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 106s | 106s 1365 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 106s | 106s 1383 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `nightly` 106s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 106s | 106s 1389 | #[cfg(feature = "nightly")] 106s | ^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 106s = help: consider adding `nightly` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 106s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.IaqRN1gjlF/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=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 106s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 106s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.IaqRN1gjlF/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=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern equivalent=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 106s warning: unexpected `cfg` condition value: `borsh` 106s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 106s | 106s 117 | #[cfg(feature = "borsh")] 106s | ^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 106s = help: consider adding `borsh` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s = note: `#[warn(unexpected_cfgs)]` on by default 106s 106s warning: unexpected `cfg` condition value: `rustc-rayon` 106s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 106s | 106s 131 | #[cfg(feature = "rustc-rayon")] 106s | ^^^^^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 106s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `quickcheck` 106s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 106s | 106s 38 | #[cfg(feature = "quickcheck")] 106s | ^^^^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 106s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `rustc-rayon` 106s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 106s | 106s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 106s | ^^^^^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 106s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 106s warning: unexpected `cfg` condition value: `rustc-rayon` 106s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 106s | 106s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 106s | ^^^^^^^^^^^^^^^^^^^^^^^ 106s | 106s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 106s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 106s = note: see for more information about checking conditional configuration 106s 107s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 107s Compiling proc-macro-crate v3.2.0 107s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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 107s ' 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.IaqRN1gjlF/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern toml_edit=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 107s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.IaqRN1gjlF/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=2c636d649123ea6c -C extra-filename=-2c636d649123ea6c --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 108s warning: `quote` (lib) generated 1 warning (1 duplicate) 108s Compiling zvariant_utils v2.1.0 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libsyn-dee9ecc2709fc75f.rmeta --cap-lints warn` 108s 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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0--remap-path-prefix/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps:/tmp/tmp.IaqRN1gjlF/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.IaqRN1gjlF/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 108s [serde 1.0.217] cargo:rerun-if-changed=build.rs 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 108s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.IaqRN1gjlF/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=b05c75224d924c01 -C extra-filename=-b05c75224d924c01 --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.IaqRN1gjlF/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=c88085f4478f35b6 -C extra-filename=-c88085f4478f35b6 --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 108s warning: `toml_datetime` (lib) generated 1 warning (1 duplicate) 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern serde_derive=/tmp/tmp.IaqRN1gjlF/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/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)'` 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 108s | 108s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s = note: `#[warn(unexpected_cfgs)]` on by default 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 108s | 108s 3 | #[cfg(feature = "debug")] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 108s | 108s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 108s | 108s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 108s | 108s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 108s | 108s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 108s | 108s 79 | #[cfg(feature = "debug")] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 108s | 108s 44 | #[cfg(feature = "debug")] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 108s | 108s 48 | #[cfg(not(feature = "debug"))] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 108s warning: unexpected `cfg` condition value: `debug` 108s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 108s | 108s 59 | #[cfg(feature = "debug")] 108s | ^^^^^^^^^^^^^^^^^ 108s | 108s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 108s = help: consider adding `debug` as a feature in `Cargo.toml` 108s = note: see for more information about checking conditional configuration 108s 110s warning: `winnow` (lib) generated 11 warnings (1 duplicate) 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.IaqRN1gjlF/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=b66fa067992059e6 -C extra-filename=-b66fa067992059e6 --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern indexmap=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --extern toml_datetime=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libtoml_datetime-b05c75224d924c01.rmeta --extern winnow=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libwinnow-c88085f4478f35b6.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 110s warning: `serde` (lib) generated 1 warning (1 duplicate) 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.IaqRN1gjlF/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=024c5fa424b7d94a -C extra-filename=-024c5fa424b7d94a --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rmeta --extern quote=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rmeta --extern unicode_ident=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libunicode_ident-3ff7765a610208af.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 113s warning: `toml_edit` (lib) generated 1 warning (1 duplicate) 113s Compiling serde_repr v0.1.12 113s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/registry/serde_repr-0.1.12/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_repr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/serde-repr' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.IaqRN1gjlF/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.IaqRN1gjlF/registry/serde_repr-0.1.12/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=b868ee92b3d78e38 -C extra-filename=-b868ee92b3d78e38 --out-dir /tmp/tmp.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 114s 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_DERIVE=1 CARGO_FEATURE_SERDE_DERIVE=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps:/tmp/tmp.IaqRN1gjlF/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/debug/build/serde-a32c7d39e9f1177d/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.IaqRN1gjlF/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 114s [serde 1.0.217] cargo:rerun-if-changed=build.rs 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 114s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps OUT_DIR=/tmp/tmp.IaqRN1gjlF/target/debug/build/serde-a32c7d39e9f1177d/out rustc --crate-name serde --edition=2018 /tmp/tmp.IaqRN1gjlF/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=58603df6549c24b9 -C extra-filename=-58603df6549c24b9 --out-dir /tmp/tmp.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern serde_derive=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde_derive-e70ce57a4c132e97.so --cap-lints warn --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)'` 116s warning: `syn` (lib) generated 1 warning (1 duplicate) 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.IaqRN1gjlF/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=422aa0b0a7459e98 -C extra-filename=-422aa0b0a7459e98 --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rmeta --extern quote=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rmeta --extern syn=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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 116s ' 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.IaqRN1gjlF/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.IaqRN1gjlF/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=b95b32d1535ecb06 -C extra-filename=-b95b32d1535ecb06 --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern toml_edit=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libtoml_edit-b66fa067992059e6.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 116s warning: `zvariant_utils` (lib) generated 1 warning (1 duplicate) 116s Compiling enumflags2 v0.7.10 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern enumflags2_derive=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.IaqRN1gjlF/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 116s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 116s Compiling zvariant_derive v4.2.0 (/usr/share/cargo/registry/zvariant_derive-4.2.0) 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.IaqRN1gjlF/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 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=eb2c07628ee42b0a -C extra-filename=-eb2c07628ee42b0a --out-dir /tmp/tmp.IaqRN1gjlF/target/debug/deps -C incremental=/tmp/tmp.IaqRN1gjlF/target/debug/incremental -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern proc_macro_crate=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro` 117s warning: `proc-macro-crate` (lib) generated 1 warning (1 duplicate) 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.IaqRN1gjlF/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.IaqRN1gjlF/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.IaqRN1gjlF/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.IaqRN1gjlF/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=bbaa8db27c98a8c5 -C extra-filename=-bbaa8db27c98a8c5 --out-dir /tmp/tmp.IaqRN1gjlF/target/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern enumflags2_derive=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde-58603df6549c24b9.rmeta --cap-lints warn` 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.IaqRN1gjlF/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=bfdab8197d523d6a -C extra-filename=-bfdab8197d523d6a --out-dir /tmp/tmp.IaqRN1gjlF/target/debug/deps -C incremental=/tmp/tmp.IaqRN1gjlF/target/debug/incremental -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern enumflags2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libenumflags2-bbaa8db27c98a8c5.rlib --extern proc_macro_crate=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern serde=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde-58603df6549c24b9.rlib --extern serde_repr=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro` 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tests CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.IaqRN1gjlF/target/debug/deps rustc --crate-name tests --edition=2021 tests/tests.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=d8872e99ae4673fa -C extra-filename=-d8872e99ae4673fa --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern enumflags2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=no_prelude CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.IaqRN1gjlF/target/debug/deps rustc --crate-name no_prelude --edition=2021 tests/no_prelude.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=6288a0f40c3a2585 -C extra-filename=-6288a0f40c3a2585 --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern enumflags2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 118s --> tests/tests.rs:4:5 118s | 118s 4 | use zvariant::{ 118s | ^^^^^^^^ use of undeclared crate or module `zvariant` 118s 118s error[E0432]: unresolved import `zvariant` 118s --> tests/tests.rs:4:5 118s | 118s 4 | use zvariant::{ 118s | ^^^^^^^^ use of undeclared crate or module `zvariant` 118s 118s error: cannot find attribute `zvariant` in this scope 118s --> tests/tests.rs:45:7 118s | 118s 45 | #[zvariant(deny_unknown_fields, signature = "a{sv}", rename_all = "camelCase")] 118s | ^^^^^^^^ 118s 118s error: cannot find attribute `zvariant` in this scope 118s --> tests/tests.rs:48:11 118s | 118s 48 | #[zvariant(rename = "field-b")] 118s | ^^^^^^^^ 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:24:10 118s | 118s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 118s | ^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `SerializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:6:10 118s | 118s 6 | #[derive(Type)] 118s | ^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:9:10 118s | 118s 9 | #[derive(Type)] 118s | ^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s error[E0599]: no function or associated item named `signature` found for struct `FooF` in the current scope 118s --> tests/tests.rs:14:22 118s | 118s 12 | struct FooF(f64); 118s | ----------- function or associated item `signature` not found for this struct 118s 13 | 118s 14 | assert_eq!(FooF::signature(), "d") 118s | ^^^^^^^^^ function or associated item not found in `FooF` 118s 118s error[E0599]: no function or associated item named `signature` found for struct `TestStruct` in the current scope 118s --> tests/tests.rs:26:28 118s | 118s 20 | struct TestStruct { 118s | ----------------- function or associated item `signature` not found for this struct 118s ... 118s 26 | assert_eq!(TestStruct::signature(), "(syay)") 118s | ^^^^^^^^^ function or associated item not found in `TestStruct` 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:17:10 118s | 118s 17 | #[derive(Type)] 118s | ^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s error[E0599]: no variant or associated item named `signature` found for enum `RequestNameFlags` in the current scope 118s --> tests/tests.rs:39:34 118s | 118s 33 | enum RequestNameFlags { 118s | --------------------- variant or associated item `signature` not found for this enum 118s ... 118s 39 | assert_eq!(RequestNameFlags::signature(), "u") 118s | ^^^^^^^^^ variant or associated item not found in `RequestNameFlags` 118s 118s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 118s --> tests/tests.rs:60:22 118s | 118s 60 | let serialized = zvariant::to_bytes(ctxt, &test).unwrap(); 118s | ^^^^^^^^ use of undeclared crate or module `zvariant` 118s 118s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 118s --> tests/tests.rs:76:22 118s | 118s 76 | let serialized = zvariant::to_bytes(ctxt, &deserialized).unwrap(); 118s | ^^^^^^^^ use of undeclared crate or module `zvariant` 118s 118s error[E0599]: no function or associated item named `signature` found for struct `Test` in the current scope 118s --> tests/tests.rs:83:22 118s | 118s 46 | struct Test { 118s | ----------- function or associated item `signature` not found for this struct 118s ... 118s 83 | assert_eq!(Test::signature(), "a{sv}") 118s | ^^^^^^^^^ function or associated item not found in `Test` 118s 118s Some errors have detailed explanations: E0432, E0433, E0599. 118s For more information about an error, try `rustc --explain E0432`. 118s error: could not compile `zvariant_derive` (test "tests") due to 10 previous errors 118s 118s Caused by: 118s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tests CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.IaqRN1gjlF/target/debug/deps rustc --crate-name tests --edition=2021 tests/tests.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=d8872e99ae4673fa -C extra-filename=-d8872e99ae4673fa --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern enumflags2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 118s warning: build failed, waiting for other jobs to finish... 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:24:25 118s | 118s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 118s | ^^^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `DeserializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:24:42 118s | 118s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 118s | ^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:9:10 118s | 118s 9 | #[derive(Type)] 118s | ^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 118s help: consider importing this struct 118s | 118s 4 + use syn::Signature; 118s | 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:24:10 118s | 118s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 118s | ^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `SerializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 118s help: consider importing this module 118s | 118s 4 + use serde::ser; 118s | 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:24:25 118s | 118s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 118s | ^^^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `DeserializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 118s help: consider importing this module 118s | 118s 4 + use serde::de; 118s | 118s 118s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 118s --> tests/no_prelude.rs:24:42 118s | 118s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 118s | ^^^^ could not find `zvariant` in the list of imported crates 118s | 118s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 118s help: consider importing this struct 118s | 118s 4 + use syn::Signature; 118s | 118s 118s For more information about this error, try `rustc --explain E0433`. 118s error: could not compile `zvariant_derive` (test "no_prelude") due to 10 previous errors 118s 118s Caused by: 118s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=no_prelude CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.IaqRN1gjlF/target/debug/deps rustc --crate-name no_prelude --edition=2021 tests/no_prelude.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=6288a0f40c3a2585 -C extra-filename=-6288a0f40c3a2585 --out-dir /tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.IaqRN1gjlF/target/debug/deps --extern enumflags2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.IaqRN1gjlF/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.IaqRN1gjlF/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.IaqRN1gjlF/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 118s /tmp/autopkgtest.ioXZx1/wrapper.sh: checking for leaked background processes... 118s /tmp/autopkgtest.ioXZx1/wrapper.sh: waiting for tee/cat subprocesses... 118s /tmp/autopkgtest.ioXZx1/wrapper.sh: cleaning up... 118s /tmp/autopkgtest.ioXZx1/wrapper.sh: Exit status: 101 118s autopkgtest: DBG: testbed command exited with code 101 119s autopkgtest [01:35:12]: test rust-zvariant-derive:@: -----------------------] 119s autopkgtest: DBG: testbed executing test finished with exit status 101 119s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/rust-zvariant-derive%3A%40-stdout /tmp/autopkgtest-work.fwz5kj8r/out/rust-zvariant-derive%3A%40-stdout 119s autopkgtest: DBG: got reply from testbed: ok 119s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/rust-zvariant-derive%3A%40-stderr /tmp/autopkgtest-work.fwz5kj8r/out/rust-zvariant-derive%3A%40-stderr 119s autopkgtest: DBG: got reply from testbed: ok 119s rust-zvariant-derive:@ FLAKY non-zero exit status 101 119s autopkgtest [01:35:12]: test rust-zvariant-derive:@: - - - - - - - - - - results - - - - - - - - - - 119s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/rust-zvariant-derive%3A%40-artifacts/ /tmp/autopkgtest-work.fwz5kj8r/out/artifacts/ 119s autopkgtest: DBG: got reply from testbed: ok 119s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ioXZx1/rust-zvariant-derive:@-artifacts', '/tmp/autopkgtest.ioXZx1/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest [01:35:13]: test librust-zvariant-derive-dev:default: preparing testbed 120s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'], deps_new=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 120s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 120s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 120s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-enumflags2-0.7+default-dev (>= 0.7.9-~~), librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~), librust-serde-1+default-dev (>= 1.0.200-~~), librust-serde-1+derive-dev (>= 1.0.200-~~), librust-serde-repr-0.1+default-dev, librust-zvariant-derive-dev 120s autopkgtest: DBG: can use apt-get on testbed: True 120s 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-enumflags2-0.7+default-dev (>= 0.7.9-~~), librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~), librust-serde-1+default-dev (>= 1.0.200-~~), librust-serde-1+derive-dev (>= 1.0.200-~~), librust-serde-repr-0.1+default-dev, librust-zvariant-derive-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 120s Reading package lists... 120s Building dependency tree... 120s Reading state information... 120s Starting pkgProblemResolver with broken count: 0 120s Starting 2 pkgProblemResolver with broken count: 0 120s Done 120s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-zvariant-derive-dev'], kind short, sout pipe, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3Adefault-packages.all /tmp/autopkgtest-work.fwz5kj8r/out/librust-zvariant-derive-dev%3Adefault-packages.all 121s autopkgtest: DBG: got reply from testbed: ok 121s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ioXZx1/build.8ub/src'], kind short, sout raw, serr raw, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ioXZx1/build.8ub/src already exists 121s autopkgtest [01:35:14]: test librust-zvariant-derive-dev:default: /usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets 121s autopkgtest [01:35:14]: test librust-zvariant-derive-dev:default: [----------------------- 121s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ioXZx1/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-artifacts --chdir=/tmp/autopkgtest.ioXZx1/build.8ub/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.ioXZx1/librust-zvariant-derive-dev:default-stderr --stdout=/tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-stdout --tmp=/tmp/autopkgtest.ioXZx1/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 zvariant_derive 4.2.0 --all-targets'"], kind test, sout raw, serr raw, env [] 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-artifacts 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: changing to directory: /tmp/autopkgtest.ioXZx1/build.8ub/src 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: LANG=C.UTF-8 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LANGUAGE 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_ADDRESS 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_ALL 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_COLLATE 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_CTYPE 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_IDENTIFICATION 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MEASUREMENT 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MESSAGES 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MONETARY 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_NAME 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_NUMERIC 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_PAPER 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_TELEPHONE 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_TIME 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: pretending to be a login shell 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: will write standard error to /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-stderr 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: will write stdout to /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-stdout 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ioXZx1/autopkgtest_tmp 121s /tmp/autopkgtest.ioXZx1/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 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: copying /tmp/tmp.N5nm4cjf3W/out to stdout and file: /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-stdout 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: copying /tmp/tmp.N5nm4cjf3W/err to standard error and file: /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-stdout 121s /tmp/autopkgtest.ioXZx1/wrapper.sh: writing script pid 3078 to /tmp/autopkgtest_script_pid 121s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 121s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 121s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 121s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.5o0NKA256s/registry/ 121s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 121s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 121s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 121s 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'],) {} 121s Compiling proc-macro2 v1.0.92 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --cap-lints warn` 121s Compiling unicode-ident v1.0.13 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --cap-lints warn` 121s Compiling serde v1.0.217 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --cap-lints warn` 122s 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.5o0NKA256s/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps:/tmp/tmp.5o0NKA256s/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.5o0NKA256s/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.5o0NKA256s/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 122s Compiling equivalent v1.0.1 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --cap-lints warn` 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 122s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 122s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 122s Compiling hashbrown v0.14.5 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --cap-lints warn` 122s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 122s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps OUT_DIR=/tmp/tmp.5o0NKA256s/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern unicode_ident=/tmp/tmp.5o0NKA256s/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)'` 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/lib.rs:14:5 122s | 122s 14 | feature = "nightly", 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s = note: `#[warn(unexpected_cfgs)]` on by default 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/lib.rs:39:13 122s | 122s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/lib.rs:40:13 122s | 122s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/lib.rs:49:7 122s | 122s 49 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/macros.rs:59:7 122s | 122s 59 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/macros.rs:65:11 122s | 122s 65 | #[cfg(not(feature = "nightly"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 122s | 122s 53 | #[cfg(not(feature = "nightly"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 122s | 122s 55 | #[cfg(not(feature = "nightly"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 122s | 122s 57 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 122s | 122s 3549 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 122s | 122s 3661 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 122s | 122s 3678 | #[cfg(not(feature = "nightly"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 122s | 122s 4304 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 122s | 122s 4319 | #[cfg(not(feature = "nightly"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 122s | 122s 7 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 122s | 122s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 122s | 122s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 122s | 122s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `rkyv` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 122s | 122s 3 | #[cfg(feature = "rkyv")] 122s | ^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `rkyv` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:242:11 122s | 122s 242 | #[cfg(not(feature = "nightly"))] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:255:7 122s | 122s 255 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:6517:11 122s | 122s 6517 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:6523:11 122s | 122s 6523 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:6591:11 122s | 122s 6591 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:6597:11 122s | 122s 6597 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:6651:11 122s | 122s 6651 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/map.rs:6657:11 122s | 122s 6657 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/set.rs:1359:11 122s | 122s 1359 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/set.rs:1365:11 122s | 122s 1365 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/set.rs:1383:11 122s | 122s 1383 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition value: `nightly` 122s --> /tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5/src/set.rs:1389:11 122s | 122s 1389 | #[cfg(feature = "nightly")] 122s | ^^^^^^^^^^^^^^^^^^^ 122s | 122s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 122s = help: consider adding `nightly` as a feature in `Cargo.toml` 122s = note: see for more information about checking conditional configuration 122s 122s warning: `hashbrown` (lib) generated 31 warnings 122s Compiling quote v1.0.37 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 123s Compiling syn v2.0.96 123s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.5o0NKA256s/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.5o0NKA256s/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 123s Compiling indexmap v2.7.0 123s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern equivalent=/tmp/tmp.5o0NKA256s/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.5o0NKA256s/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 123s warning: unexpected `cfg` condition value: `borsh` 123s --> /tmp/tmp.5o0NKA256s/registry/indexmap-2.7.0/src/lib.rs:117:7 123s | 123s 117 | #[cfg(feature = "borsh")] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 123s = help: consider adding `borsh` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s = note: `#[warn(unexpected_cfgs)]` on by default 123s 123s warning: unexpected `cfg` condition value: `rustc-rayon` 123s --> /tmp/tmp.5o0NKA256s/registry/indexmap-2.7.0/src/lib.rs:131:7 123s | 123s 131 | #[cfg(feature = "rustc-rayon")] 123s | ^^^^^^^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 123s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `quickcheck` 123s --> /tmp/tmp.5o0NKA256s/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 123s | 123s 38 | #[cfg(feature = "quickcheck")] 123s | ^^^^^^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 123s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `rustc-rayon` 123s --> /tmp/tmp.5o0NKA256s/registry/indexmap-2.7.0/src/macros.rs:128:30 123s | 123s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 123s | ^^^^^^^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 123s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `rustc-rayon` 123s --> /tmp/tmp.5o0NKA256s/registry/indexmap-2.7.0/src/macros.rs:153:30 123s | 123s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 123s | ^^^^^^^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 123s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: `indexmap` (lib) generated 5 warnings 123s 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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0--remap-path-prefix/tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps:/tmp/tmp.5o0NKA256s/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/build/proc-macro2-0151d10497e44404/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.5o0NKA256s/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 123s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 123s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 123s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 123s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 123s Compiling winnow v0.6.18 123s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --cap-lints warn` 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 123s | 123s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s = note: `#[warn(unexpected_cfgs)]` on by default 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 123s | 123s 3 | #[cfg(feature = "debug")] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 123s | 123s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 123s | 123s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 123s | 123s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 123s | 123s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 123s | 123s 79 | #[cfg(feature = "debug")] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 123s | 123s 44 | #[cfg(feature = "debug")] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 123s | 123s 48 | #[cfg(not(feature = "debug"))] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 123s warning: unexpected `cfg` condition value: `debug` 123s --> /tmp/tmp.5o0NKA256s/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 123s | 123s 59 | #[cfg(feature = "debug")] 123s | ^^^^^^^^^^^^^^^^^ 123s | 123s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 123s = help: consider adding `debug` as a feature in `Cargo.toml` 123s = note: see for more information about checking conditional configuration 123s 125s warning: `winnow` (lib) generated 10 warnings 125s Compiling toml_datetime v0.6.8 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --cap-lints warn` 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.5o0NKA256s/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=3ff7765a610208af -C extra-filename=-3ff7765a610208af --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 125s | 125s = note: this feature is not stably supported; its behavior can change in the future 125s 125s warning: `unicode-ident` (lib) generated 1 warning 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps OUT_DIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/build/proc-macro2-0151d10497e44404/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.5o0NKA256s/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=39693d09aaf9eb4c -C extra-filename=-39693d09aaf9eb4c --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern unicode_ident=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libunicode_ident-3ff7765a610208af.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --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)'` 126s warning: `proc-macro2` (lib) generated 1 warning (1 duplicate) 126s Compiling toml_edit v0.22.20 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern indexmap=/tmp/tmp.5o0NKA256s/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.5o0NKA256s/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.5o0NKA256s/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 128s Compiling serde_derive v1.0.217 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.5o0NKA256s/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 129s Compiling enumflags2_derive v0.7.10 129s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.5o0NKA256s/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.5o0NKA256s/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=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 130s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.5o0NKA256s/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=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 130s | 130s 14 | feature = "nightly", 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s = note: `#[warn(unexpected_cfgs)]` on by default 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 130s | 130s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 130s | 130s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 130s | 130s 49 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 130s | 130s 59 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 130s | 130s 65 | #[cfg(not(feature = "nightly"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 130s | 130s 53 | #[cfg(not(feature = "nightly"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 130s | 130s 55 | #[cfg(not(feature = "nightly"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 130s | 130s 57 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 130s | 130s 3549 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 130s | 130s 3661 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 130s | 130s 3678 | #[cfg(not(feature = "nightly"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 130s | 130s 4304 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 130s | 130s 4319 | #[cfg(not(feature = "nightly"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 130s | 130s 7 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 130s | 130s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 130s | 130s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 130s | 130s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `rkyv` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 130s | 130s 3 | #[cfg(feature = "rkyv")] 130s | ^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `rkyv` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 130s | 130s 242 | #[cfg(not(feature = "nightly"))] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 130s | 130s 255 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 130s | 130s 6517 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 130s | 130s 6523 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 130s | 130s 6591 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 130s | 130s 6597 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 130s | 130s 6651 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 130s | 130s 6657 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 130s | 130s 1359 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 130s | 130s 1365 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 130s | 130s 1383 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 130s warning: unexpected `cfg` condition value: `nightly` 130s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 130s | 130s 1389 | #[cfg(feature = "nightly")] 130s | ^^^^^^^^^^^^^^^^^^^ 130s | 130s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 130s = help: consider adding `nightly` as a feature in `Cargo.toml` 130s = note: see for more information about checking conditional configuration 130s 131s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.5o0NKA256s/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=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern equivalent=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 131s warning: unexpected `cfg` condition value: `borsh` 131s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 131s | 131s 117 | #[cfg(feature = "borsh")] 131s | ^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 131s = help: consider adding `borsh` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s = note: `#[warn(unexpected_cfgs)]` on by default 131s 131s warning: unexpected `cfg` condition value: `rustc-rayon` 131s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 131s | 131s 131 | #[cfg(feature = "rustc-rayon")] 131s | ^^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 131s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `quickcheck` 131s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 131s | 131s 38 | #[cfg(feature = "quickcheck")] 131s | ^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 131s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `rustc-rayon` 131s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 131s | 131s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 131s | ^^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 131s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: unexpected `cfg` condition value: `rustc-rayon` 131s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 131s | 131s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 131s | ^^^^^^^^^^^^^^^^^^^^^^^ 131s | 131s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 131s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 131s = note: see for more information about checking conditional configuration 131s 131s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 131s Compiling proc-macro-crate v3.2.0 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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 131s ' 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.5o0NKA256s/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern toml_edit=/tmp/tmp.5o0NKA256s/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.5o0NKA256s/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=2c636d649123ea6c -C extra-filename=-2c636d649123ea6c --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 132s warning: `quote` (lib) generated 1 warning (1 duplicate) 132s Compiling zvariant_utils v2.1.0 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.5o0NKA256s/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.5o0NKA256s/target/debug/deps/libsyn-dee9ecc2709fc75f.rmeta --cap-lints warn` 132s 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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0--remap-path-prefix/tmp/tmp.5o0NKA256s/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.5o0NKA256s/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps:/tmp/tmp.5o0NKA256s/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.5o0NKA256s/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 132s [serde 1.0.217] cargo:rerun-if-changed=build.rs 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 132s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.5o0NKA256s/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=b05c75224d924c01 -C extra-filename=-b05c75224d924c01 --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 133s warning: `toml_datetime` (lib) generated 1 warning (1 duplicate) 133s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.5o0NKA256s/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=c88085f4478f35b6 -C extra-filename=-c88085f4478f35b6 --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 133s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps OUT_DIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern serde_derive=/tmp/tmp.5o0NKA256s/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/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)'` 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 133s | 133s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s = note: `#[warn(unexpected_cfgs)]` on by default 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 133s | 133s 3 | #[cfg(feature = "debug")] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 133s | 133s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 133s | 133s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 133s | 133s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 133s | 133s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 133s | 133s 79 | #[cfg(feature = "debug")] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 133s | 133s 44 | #[cfg(feature = "debug")] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 133s | 133s 48 | #[cfg(not(feature = "debug"))] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `debug` 133s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 133s | 133s 59 | #[cfg(feature = "debug")] 133s | ^^^^^^^^^^^^^^^^^ 133s | 133s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 133s = help: consider adding `debug` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 134s warning: `winnow` (lib) generated 11 warnings (1 duplicate) 134s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.5o0NKA256s/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=b66fa067992059e6 -C extra-filename=-b66fa067992059e6 --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern indexmap=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --extern toml_datetime=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libtoml_datetime-b05c75224d924c01.rmeta --extern winnow=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libwinnow-c88085f4478f35b6.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 135s warning: `serde` (lib) generated 1 warning (1 duplicate) 135s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.5o0NKA256s/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=024c5fa424b7d94a -C extra-filename=-024c5fa424b7d94a --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rmeta --extern quote=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rmeta --extern unicode_ident=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libunicode_ident-3ff7765a610208af.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 138s warning: `toml_edit` (lib) generated 1 warning (1 duplicate) 138s Compiling serde_repr v0.1.12 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/registry/serde_repr-0.1.12/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_repr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/serde-repr' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.5o0NKA256s/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.5o0NKA256s/registry/serde_repr-0.1.12/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=b868ee92b3d78e38 -C extra-filename=-b868ee92b3d78e38 --out-dir /tmp/tmp.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.5o0NKA256s/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 138s 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_DERIVE=1 CARGO_FEATURE_SERDE_DERIVE=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps:/tmp/tmp.5o0NKA256s/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.5o0NKA256s/target/debug/build/serde-a32c7d39e9f1177d/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.5o0NKA256s/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 138s [serde 1.0.217] cargo:rerun-if-changed=build.rs 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 138s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps OUT_DIR=/tmp/tmp.5o0NKA256s/target/debug/build/serde-a32c7d39e9f1177d/out rustc --crate-name serde --edition=2018 /tmp/tmp.5o0NKA256s/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=58603df6549c24b9 -C extra-filename=-58603df6549c24b9 --out-dir /tmp/tmp.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern serde_derive=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde_derive-e70ce57a4c132e97.so --cap-lints warn --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)'` 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.5o0NKA256s/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=422aa0b0a7459e98 -C extra-filename=-422aa0b0a7459e98 --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rmeta --extern quote=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rmeta --extern syn=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 141s warning: `syn` (lib) generated 1 warning (1 duplicate) 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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 141s ' 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.5o0NKA256s/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.5o0NKA256s/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=b95b32d1535ecb06 -C extra-filename=-b95b32d1535ecb06 --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern toml_edit=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libtoml_edit-b66fa067992059e6.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 141s warning: `zvariant_utils` (lib) generated 1 warning (1 duplicate) 141s Compiling enumflags2 v0.7.10 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern enumflags2_derive=/tmp/tmp.5o0NKA256s/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.5o0NKA256s/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 141s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 141s Compiling zvariant_derive v4.2.0 (/usr/share/cargo/registry/zvariant_derive-4.2.0) 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.5o0NKA256s/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 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=eb2c07628ee42b0a -C extra-filename=-eb2c07628ee42b0a --out-dir /tmp/tmp.5o0NKA256s/target/debug/deps -C incremental=/tmp/tmp.5o0NKA256s/target/debug/incremental -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern proc_macro_crate=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.5o0NKA256s/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.5o0NKA256s/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro` 141s warning: `proc-macro-crate` (lib) generated 1 warning (1 duplicate) 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.5o0NKA256s/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.5o0NKA256s/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.5o0NKA256s/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.5o0NKA256s/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=bbaa8db27c98a8c5 -C extra-filename=-bbaa8db27c98a8c5 --out-dir /tmp/tmp.5o0NKA256s/target/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern enumflags2_derive=/tmp/tmp.5o0NKA256s/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde-58603df6549c24b9.rmeta --cap-lints warn` 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.5o0NKA256s/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=bfdab8197d523d6a -C extra-filename=-bfdab8197d523d6a --out-dir /tmp/tmp.5o0NKA256s/target/debug/deps -C incremental=/tmp/tmp.5o0NKA256s/target/debug/incremental -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern enumflags2=/tmp/tmp.5o0NKA256s/target/debug/deps/libenumflags2-bbaa8db27c98a8c5.rlib --extern proc_macro_crate=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern serde=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde-58603df6549c24b9.rlib --extern serde_repr=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.5o0NKA256s/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.5o0NKA256s/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro` 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tests CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.5o0NKA256s/target/debug/deps rustc --crate-name tests --edition=2021 tests/tests.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=d8872e99ae4673fa -C extra-filename=-d8872e99ae4673fa --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern enumflags2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.5o0NKA256s/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=no_prelude CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.5o0NKA256s/target/debug/deps rustc --crate-name no_prelude --edition=2021 tests/no_prelude.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=6288a0f40c3a2585 -C extra-filename=-6288a0f40c3a2585 --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern enumflags2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.5o0NKA256s/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 143s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 143s --> tests/tests.rs:4:5 143s | 143s 4 | use zvariant::{ 143s | ^^^^^^^^ use of undeclared crate or module `zvariant` 143s 143s error[E0432]: unresolved import `zvariant` 143s --> tests/tests.rs:4:5 143s | 143s 4 | use zvariant::{ 143s | ^^^^^^^^ use of undeclared crate or module `zvariant` 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:24:10 143s | 143s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 143s | ^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `SerializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 143s 143s error: cannot find attribute `zvariant` in this scope 143s --> tests/tests.rs:45:7 143s | 143s 45 | #[zvariant(deny_unknown_fields, signature = "a{sv}", rename_all = "camelCase")] 143s | ^^^^^^^^ 143s 143s error: cannot find attribute `zvariant` in this scope 143s --> tests/tests.rs:48:11 143s | 143s 48 | #[zvariant(rename = "field-b")] 143s | ^^^^^^^^ 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:6:10 143s | 143s 6 | #[derive(Type)] 143s | ^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:9:10 143s | 143s 9 | #[derive(Type)] 143s | ^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 143s 143s error[E0599]: no function or associated item named `signature` found for struct `FooF` in the current scope 143s --> tests/tests.rs:14:22 143s | 143s 12 | struct FooF(f64); 143s | ----------- function or associated item `signature` not found for this struct 143s 13 | 143s 14 | assert_eq!(FooF::signature(), "d") 143s | ^^^^^^^^^ function or associated item not found in `FooF` 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:17:10 143s | 143s 17 | #[derive(Type)] 143s | ^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 143s 143s error[E0599]: no function or associated item named `signature` found for struct `TestStruct` in the current scope 143s --> tests/tests.rs:26:28 143s | 143s 20 | struct TestStruct { 143s | ----------------- function or associated item `signature` not found for this struct 143s ... 143s 26 | assert_eq!(TestStruct::signature(), "(syay)") 143s | ^^^^^^^^^ function or associated item not found in `TestStruct` 143s 143s error[E0599]: no variant or associated item named `signature` found for enum `RequestNameFlags` in the current scope 143s --> tests/tests.rs:39:34 143s | 143s 33 | enum RequestNameFlags { 143s | --------------------- variant or associated item `signature` not found for this enum 143s ... 143s 39 | assert_eq!(RequestNameFlags::signature(), "u") 143s | ^^^^^^^^^ variant or associated item not found in `RequestNameFlags` 143s 143s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 143s --> tests/tests.rs:60:22 143s | 143s 60 | let serialized = zvariant::to_bytes(ctxt, &test).unwrap(); 143s | ^^^^^^^^ use of undeclared crate or module `zvariant` 143s 143s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 143s --> tests/tests.rs:76:22 143s | 143s 76 | let serialized = zvariant::to_bytes(ctxt, &deserialized).unwrap(); 143s | ^^^^^^^^ use of undeclared crate or module `zvariant` 143s 143s error[E0599]: no function or associated item named `signature` found for struct `Test` in the current scope 143s --> tests/tests.rs:83:22 143s | 143s 46 | struct Test { 143s | ----------- function or associated item `signature` not found for this struct 143s ... 143s 83 | assert_eq!(Test::signature(), "a{sv}") 143s | ^^^^^^^^^ function or associated item not found in `Test` 143s 143s Some errors have detailed explanations: E0432, E0433, E0599. 143s For more information about an error, try `rustc --explain E0432`. 143s error: could not compile `zvariant_derive` (test "tests") due to 10 previous errors 143s 143s Caused by: 143s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tests CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.5o0NKA256s/target/debug/deps rustc --crate-name tests --edition=2021 tests/tests.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=d8872e99ae4673fa -C extra-filename=-d8872e99ae4673fa --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern enumflags2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.5o0NKA256s/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 143s warning: build failed, waiting for other jobs to finish... 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:24:25 143s | 143s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 143s | ^^^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `DeserializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:24:42 143s | 143s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 143s | ^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:9:10 143s | 143s 9 | #[derive(Type)] 143s | ^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 143s help: consider importing this struct 143s | 143s 4 + use syn::Signature; 143s | 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:24:10 143s | 143s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 143s | ^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `SerializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 143s help: consider importing this module 143s | 143s 4 + use serde::ser; 143s | 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:24:25 143s | 143s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 143s | ^^^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `DeserializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 143s help: consider importing this module 143s | 143s 4 + use serde::de; 143s | 143s 143s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 143s --> tests/no_prelude.rs:24:42 143s | 143s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 143s | ^^^^ could not find `zvariant` in the list of imported crates 143s | 143s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 143s help: consider importing this struct 143s | 143s 4 + use syn::Signature; 143s | 143s 143s For more information about this error, try `rustc --explain E0433`. 143s error: could not compile `zvariant_derive` (test "no_prelude") due to 10 previous errors 143s 143s Caused by: 143s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=no_prelude CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.5o0NKA256s/target/debug/deps rustc --crate-name no_prelude --edition=2021 tests/no_prelude.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=6288a0f40c3a2585 -C extra-filename=-6288a0f40c3a2585 --out-dir /tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.5o0NKA256s/target/debug/deps --extern enumflags2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.5o0NKA256s/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.5o0NKA256s/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.5o0NKA256s/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.5o0NKA256s/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 143s /tmp/autopkgtest.ioXZx1/wrapper.sh: checking for leaked background processes... 143s /tmp/autopkgtest.ioXZx1/wrapper.sh: waiting for tee/cat subprocesses... 143s /tmp/autopkgtest.ioXZx1/wrapper.sh: cleaning up... 143s /tmp/autopkgtest.ioXZx1/wrapper.sh: Exit status: 101 143s autopkgtest: DBG: testbed command exited with code 101 143s autopkgtest [01:35:36]: test librust-zvariant-derive-dev:default: -----------------------] 143s autopkgtest: DBG: testbed executing test finished with exit status 101 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3Adefault-stdout /tmp/autopkgtest-work.fwz5kj8r/out/librust-zvariant-derive-dev%3Adefault-stdout 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3Adefault-stderr /tmp/autopkgtest-work.fwz5kj8r/out/librust-zvariant-derive-dev%3Adefault-stderr 144s autopkgtest: DBG: got reply from testbed: ok 144s librust-zvariant-derive-dev:default FLAKY non-zero exit status 101 144s autopkgtest [01:35:37]: test librust-zvariant-derive-dev:default: - - - - - - - - - - results - - - - - - - - - - 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.fwz5kj8r/out/artifacts/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:default-artifacts', '/tmp/autopkgtest.ioXZx1/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [01:35:37]: test librust-zvariant-derive-dev:: preparing testbed 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'], deps_new=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 144s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 144s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-enumflags2-0.7+default-dev (>= 0.7.9-~~)', 'librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~)', 'librust-serde-1+default-dev (>= 1.0.200-~~)', 'librust-serde-1+derive-dev (>= 1.0.200-~~)', 'librust-serde-repr-0.1+default-dev', 'librust-zvariant-derive-dev'] 144s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-enumflags2-0.7+default-dev (>= 0.7.9-~~), librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~), librust-serde-1+default-dev (>= 1.0.200-~~), librust-serde-1+derive-dev (>= 1.0.200-~~), librust-serde-repr-0.1+default-dev, librust-zvariant-derive-dev 144s autopkgtest: DBG: can use apt-get on testbed: True 144s 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-enumflags2-0.7+default-dev (>= 0.7.9-~~), librust-enumflags2-0.7+serde-dev (>= 0.7.9-~~), librust-serde-1+default-dev (>= 1.0.200-~~), librust-serde-1+derive-dev (>= 1.0.200-~~), librust-serde-repr-0.1+default-dev, librust-zvariant-derive-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 144s Reading package lists... 144s Building dependency tree... 144s Reading state information... 144s Starting pkgProblemResolver with broken count: 0 144s Starting 2 pkgProblemResolver with broken count: 0 144s Done 145s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-zvariant-derive-dev'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3A-packages.all /tmp/autopkgtest-work.fwz5kj8r/out/librust-zvariant-derive-dev%3A-packages.all 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ioXZx1/build.8ub/src'], kind short, sout raw, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ioXZx1/build.8ub/src already exists 145s autopkgtest [01:35:38]: test librust-zvariant-derive-dev:: /usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --no-default-features 145s autopkgtest [01:35:38]: test librust-zvariant-derive-dev:: [----------------------- 145s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ioXZx1/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-artifacts --chdir=/tmp/autopkgtest.ioXZx1/build.8ub/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.ioXZx1/librust-zvariant-derive-dev:-stderr --stdout=/tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-stdout --tmp=/tmp/autopkgtest.ioXZx1/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 zvariant_derive 4.2.0 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-artifacts 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: changing to directory: /tmp/autopkgtest.ioXZx1/build.8ub/src 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: setting environment: LANG=C.UTF-8 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LANGUAGE 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_ADDRESS 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_ALL 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_COLLATE 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_CTYPE 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_IDENTIFICATION 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MEASUREMENT 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MESSAGES 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_MONETARY 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_NAME 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_NUMERIC 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_PAPER 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_TELEPHONE 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: unsetting environment: LC_TIME 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: pretending to be a login shell 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: will write standard error to /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-stderr 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: will write stdout to /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-stdout 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ioXZx1/autopkgtest_tmp 145s /tmp/autopkgtest.ioXZx1/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 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test zvariant_derive 4.2.0 --all-targets --no-default-features 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: copying /tmp/tmp.ktdbcdzUXT/out to stdout and file: /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-stdout 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: copying /tmp/tmp.ktdbcdzUXT/err to standard error and file: /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-stdout 145s /tmp/autopkgtest.ioXZx1/wrapper.sh: writing script pid 3765 to /tmp/autopkgtest_script_pid 146s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 146s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 146s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 146s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.J3Pe8gZDBU/registry/ 146s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 146s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 146s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 146s 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'],) {} 146s Compiling proc-macro2 v1.0.92 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --cap-lints warn` 146s Compiling unicode-ident v1.0.13 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/build/serde-c22c8603f1f999ec -L dependency=/tmp/tmp.J3Pe8gZDBU/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='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps:/tmp/tmp.J3Pe8gZDBU/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.J3Pe8gZDBU/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 146s Compiling hashbrown v0.14.5 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --cap-lints warn` 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 146s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 146s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 146s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 146s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern unicode_ident=/tmp/tmp.J3Pe8gZDBU/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)'` 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/lib.rs:14:5 146s | 146s 14 | feature = "nightly", 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s = note: `#[warn(unexpected_cfgs)]` on by default 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/lib.rs:39:13 146s | 146s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/lib.rs:40:13 146s | 146s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/lib.rs:49:7 146s | 146s 49 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/macros.rs:59:7 146s | 146s 59 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/macros.rs:65:11 146s | 146s 65 | #[cfg(not(feature = "nightly"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 146s | 146s 53 | #[cfg(not(feature = "nightly"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 146s | 146s 55 | #[cfg(not(feature = "nightly"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 146s | 146s 57 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 146s | 146s 3549 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 146s | 146s 3661 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 146s | 146s 3678 | #[cfg(not(feature = "nightly"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 146s | 146s 4304 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 146s | 146s 4319 | #[cfg(not(feature = "nightly"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 146s | 146s 7 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 146s | 146s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 146s | 146s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 146s | 146s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `rkyv` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 146s | 146s 3 | #[cfg(feature = "rkyv")] 146s | ^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `rkyv` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:242:11 146s | 146s 242 | #[cfg(not(feature = "nightly"))] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:255:7 146s | 146s 255 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:6517:11 146s | 146s 6517 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:6523:11 146s | 146s 6523 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:6591:11 146s | 146s 6591 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:6597:11 146s | 146s 6597 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:6651:11 146s | 146s 6651 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/map.rs:6657:11 146s | 146s 6657 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/set.rs:1359:11 146s | 146s 1359 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/set.rs:1365:11 146s | 146s 1365 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/set.rs:1383:11 146s | 146s 1383 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 146s warning: unexpected `cfg` condition value: `nightly` 146s --> /tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5/src/set.rs:1389:11 146s | 146s 1389 | #[cfg(feature = "nightly")] 146s | ^^^^^^^^^^^^^^^^^^^ 146s | 146s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 146s = help: consider adding `nightly` as a feature in `Cargo.toml` 146s = note: see for more information about checking conditional configuration 146s 147s warning: `hashbrown` (lib) generated 31 warnings 147s Compiling quote v1.0.37 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 147s Compiling syn v2.0.96 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 147s Compiling equivalent v1.0.1 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --cap-lints warn` 147s Compiling indexmap v2.7.0 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern equivalent=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libequivalent-a11b0a19a3bf2c19.rmeta --extern hashbrown=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libhashbrown-e14e27c8ff208110.rmeta --cap-lints warn` 147s warning: unexpected `cfg` condition value: `borsh` 147s --> /tmp/tmp.J3Pe8gZDBU/registry/indexmap-2.7.0/src/lib.rs:117:7 147s | 147s 117 | #[cfg(feature = "borsh")] 147s | ^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 147s = help: consider adding `borsh` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s = note: `#[warn(unexpected_cfgs)]` on by default 147s 147s warning: unexpected `cfg` condition value: `rustc-rayon` 147s --> /tmp/tmp.J3Pe8gZDBU/registry/indexmap-2.7.0/src/lib.rs:131:7 147s | 147s 131 | #[cfg(feature = "rustc-rayon")] 147s | ^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 147s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `quickcheck` 147s --> /tmp/tmp.J3Pe8gZDBU/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 147s | 147s 38 | #[cfg(feature = "quickcheck")] 147s | ^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 147s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `rustc-rayon` 147s --> /tmp/tmp.J3Pe8gZDBU/registry/indexmap-2.7.0/src/macros.rs:128:30 147s | 147s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 147s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `rustc-rayon` 147s --> /tmp/tmp.J3Pe8gZDBU/registry/indexmap-2.7.0/src/macros.rs:153:30 147s | 147s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 147s | ^^^^^^^^^^^^^^^^^^^^^^^ 147s | 147s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 147s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: `indexmap` (lib) generated 5 warnings 147s 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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0--remap-path-prefix/tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps:/tmp/tmp.J3Pe8gZDBU/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/build/proc-macro2-0151d10497e44404/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.J3Pe8gZDBU/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 147s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 147s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 147s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 147s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 147s Compiling toml_datetime v0.6.8 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --cap-lints warn` 148s Compiling winnow v0.6.18 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --cap-lints warn` 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 148s | 148s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s = note: `#[warn(unexpected_cfgs)]` on by default 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 148s | 148s 3 | #[cfg(feature = "debug")] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 148s | 148s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 148s | 148s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 148s | 148s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 148s | 148s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 148s | 148s 79 | #[cfg(feature = "debug")] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 148s | 148s 44 | #[cfg(feature = "debug")] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 148s | 148s 48 | #[cfg(not(feature = "debug"))] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 148s warning: unexpected `cfg` condition value: `debug` 148s --> /tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 148s | 148s 59 | #[cfg(feature = "debug")] 148s | ^^^^^^^^^^^^^^^^^ 148s | 148s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 148s = help: consider adding `debug` as a feature in `Cargo.toml` 148s = note: see for more information about checking conditional configuration 148s 149s warning: `winnow` (lib) generated 10 warnings 149s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.J3Pe8gZDBU/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=3ff7765a610208af -C extra-filename=-3ff7765a610208af --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 149s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 149s | 149s = note: this feature is not stably supported; its behavior can change in the future 149s 149s warning: `unicode-ident` (lib) generated 1 warning 149s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/build/proc-macro2-0151d10497e44404/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=39693d09aaf9eb4c -C extra-filename=-39693d09aaf9eb4c --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern unicode_ident=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libunicode_ident-3ff7765a610208af.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --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)'` 150s warning: `proc-macro2` (lib) generated 1 warning (1 duplicate) 150s Compiling toml_edit v0.22.20 150s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern indexmap=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libindexmap-1e18ac9265fbd6ac.rmeta --extern toml_datetime=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libtoml_datetime-df29d6121930b5d6.rmeta --extern winnow=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libwinnow-0f17435733cfc3dc.rmeta --cap-lints warn` 153s Compiling serde_derive v1.0.217 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/serde_derive-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name serde_derive --edition=2015 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 153s Compiling enumflags2_derive v0.7.10 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2_derive CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/enumflags2_derive-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name enumflags2_derive --edition=2018 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.J3Pe8gZDBU/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=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 154s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 154s warning: unexpected `cfg` condition value: `nightly` 154s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 154s | 154s 14 | feature = "nightly", 154s | ^^^^^^^^^^^^^^^^^^^ 154s | 154s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 154s = help: consider adding `nightly` as a feature in `Cargo.toml` 154s = note: see for more information about checking conditional configuration 154s = note: `#[warn(unexpected_cfgs)]` on by default 154s 154s warning: unexpected `cfg` condition value: `nightly` 154s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 154s | 154s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 154s | ^^^^^^^^^^^^^^^^^^^ 154s | 154s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 154s = help: consider adding `nightly` as a feature in `Cargo.toml` 154s = note: see for more information about checking conditional configuration 154s 154s warning: unexpected `cfg` condition value: `nightly` 154s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 154s | 154s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 154s | ^^^^^^^^^^^^^^^^^^^ 154s | 154s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 154s = help: consider adding `nightly` as a feature in `Cargo.toml` 154s = note: see for more information about checking conditional configuration 154s 154s warning: unexpected `cfg` condition value: `nightly` 154s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 154s | 154s 49 | #[cfg(feature = "nightly")] 154s | ^^^^^^^^^^^^^^^^^^^ 154s | 154s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 154s = help: consider adding `nightly` as a feature in `Cargo.toml` 154s = note: see for more information about checking conditional configuration 154s 154s warning: unexpected `cfg` condition value: `nightly` 154s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 154s | 154s 59 | #[cfg(feature = "nightly")] 154s | ^^^^^^^^^^^^^^^^^^^ 154s | 154s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 154s = help: consider adding `nightly` as a feature in `Cargo.toml` 154s = note: see for more information about checking conditional configuration 154s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 155s | 155s 65 | #[cfg(not(feature = "nightly"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 155s | 155s 53 | #[cfg(not(feature = "nightly"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 155s | 155s 55 | #[cfg(not(feature = "nightly"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 155s | 155s 57 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 155s | 155s 3549 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 155s | 155s 3661 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 155s | 155s 3678 | #[cfg(not(feature = "nightly"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 155s | 155s 4304 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 155s | 155s 4319 | #[cfg(not(feature = "nightly"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 155s | 155s 7 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 155s | 155s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 155s | 155s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 155s | 155s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `rkyv` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 155s | 155s 3 | #[cfg(feature = "rkyv")] 155s | ^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `rkyv` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 155s | 155s 242 | #[cfg(not(feature = "nightly"))] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 155s | 155s 255 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 155s | 155s 6517 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 155s | 155s 6523 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 155s | 155s 6591 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 155s | 155s 6597 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 155s | 155s 6651 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 155s | 155s 6657 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 155s | 155s 1359 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 155s | 155s 1365 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 155s | 155s 1383 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `nightly` 155s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 155s | 155s 1389 | #[cfg(feature = "nightly")] 155s | ^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 155s = help: consider adding `nightly` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern equivalent=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 155s warning: unexpected `cfg` condition value: `borsh` 155s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 155s | 155s 117 | #[cfg(feature = "borsh")] 155s | ^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 155s = help: consider adding `borsh` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s = note: `#[warn(unexpected_cfgs)]` on by default 155s 155s warning: unexpected `cfg` condition value: `rustc-rayon` 155s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 155s | 155s 131 | #[cfg(feature = "rustc-rayon")] 155s | ^^^^^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 155s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `quickcheck` 155s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 155s | 155s 38 | #[cfg(feature = "quickcheck")] 155s | ^^^^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 155s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `rustc-rayon` 155s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 155s | 155s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 155s | ^^^^^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 155s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: unexpected `cfg` condition value: `rustc-rayon` 155s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 155s | 155s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 155s | ^^^^^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 155s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s 155s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 155s Compiling proc-macro-crate v3.2.0 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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 155s ' 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.J3Pe8gZDBU/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern toml_edit=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libtoml_edit-89b547630831cc85.rmeta --cap-lints warn` 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.J3Pe8gZDBU/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=2c636d649123ea6c -C extra-filename=-2c636d649123ea6c --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 156s warning: `quote` (lib) generated 1 warning (1 duplicate) 156s Compiling zvariant_utils v2.1.0 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern syn=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libsyn-dee9ecc2709fc75f.rmeta --cap-lints warn` 156s 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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0--remap-path-prefix/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps:/tmp/tmp.J3Pe8gZDBU/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.J3Pe8gZDBU/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 156s [serde 1.0.217] cargo:rerun-if-changed=build.rs 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 157s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=winnow CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/winnow-0.6.18 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name winnow --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=c88085f4478f35b6 -C extra-filename=-c88085f4478f35b6 --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:1:13 157s | 157s 1 | #![cfg_attr(feature = "debug", allow(clippy::std_instead_of_core))] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s = note: `#[warn(unexpected_cfgs)]` on by default 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:3:7 157s | 157s 3 | #[cfg(feature = "debug")] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:37:16 157s | 157s 37 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:38:16 157s | 157s 38 | #[cfg_attr(not(feature = "debug"), allow(unused_mut))] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:39:16 157s | 157s 39 | #[cfg_attr(not(feature = "debug"), inline(always))] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:54:16 157s | 157s 54 | #[cfg_attr(not(feature = "debug"), allow(unused_variables))] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:79:7 157s | 157s 79 | #[cfg(feature = "debug")] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:44:11 157s | 157s 44 | #[cfg(feature = "debug")] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:48:15 157s | 157s 48 | #[cfg(not(feature = "debug"))] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s warning: unexpected `cfg` condition value: `debug` 157s --> /usr/share/cargo/registry/winnow-0.6.18/src/combinator/debug/mod.rs:59:11 157s | 157s 59 | #[cfg(feature = "debug")] 157s | ^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `alloc`, `default`, `simd`, `std`, `unstable-doc`, and `unstable-recover` 157s = help: consider adding `debug` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_datetime CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/toml_datetime-0.6.8 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name toml_datetime --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=b05c75224d924c01 -C extra-filename=-b05c75224d924c01 --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 157s warning: `toml_datetime` (lib) generated 1 warning (1 duplicate) 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/build/serde-c08ea6899e623ec6/out rustc --crate-name serde --edition=2018 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern serde_derive=/tmp/tmp.J3Pe8gZDBU/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/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)'` 158s warning: `winnow` (lib) generated 11 warnings (1 duplicate) 158s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=toml_edit CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/toml_edit-0.22.20 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name toml_edit --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=b66fa067992059e6 -C extra-filename=-b66fa067992059e6 --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern indexmap=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --extern toml_datetime=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libtoml_datetime-b05c75224d924c01.rmeta --extern winnow=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libwinnow-c88085f4478f35b6.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 159s warning: `serde` (lib) generated 1 warning (1 duplicate) 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=024c5fa424b7d94a -C extra-filename=-024c5fa424b7d94a --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rmeta --extern quote=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rmeta --extern unicode_ident=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libunicode_ident-3ff7765a610208af.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 162s warning: `toml_edit` (lib) generated 1 warning (1 duplicate) 162s Compiling serde_repr v0.1.12 162s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde_repr CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/serde_repr-0.1.12 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/registry/serde_repr-0.1.12/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_repr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/serde-repr' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.J3Pe8gZDBU/target/debug/deps rustc --crate-name serde_repr --edition=2018 /tmp/tmp.J3Pe8gZDBU/registry/serde_repr-0.1.12/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=b868ee92b3d78e38 -C extra-filename=-b868ee92b3d78e38 --out-dir /tmp/tmp.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern proc_macro --cap-lints warn` 162s 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_DERIVE=1 CARGO_FEATURE_SERDE_DERIVE=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps:/tmp/tmp.J3Pe8gZDBU/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/debug/build/serde-a32c7d39e9f1177d/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.J3Pe8gZDBU/target/debug/build/serde-c22c8603f1f999ec/build-script-build` 162s [serde 1.0.217] cargo:rerun-if-changed=build.rs 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_cstr) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_error) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_net) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_num_saturating) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_core_try_from) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_float_copysign) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_num_nonzero_signed) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_relaxed_trait_bounds) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_serde_derive) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_std_atomic64) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_systemtime_checked_add) 162s [serde 1.0.217] cargo:rustc-check-cfg=cfg(no_target_has_atomic) 162s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/serde-1.0.217 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps OUT_DIR=/tmp/tmp.J3Pe8gZDBU/target/debug/build/serde-a32c7d39e9f1177d/out rustc --crate-name serde --edition=2018 /tmp/tmp.J3Pe8gZDBU/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=58603df6549c24b9 -C extra-filename=-58603df6549c24b9 --out-dir /tmp/tmp.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern serde_derive=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde_derive-e70ce57a4c132e97.so --cap-lints warn --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)'` 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_utils CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/zvariant_utils-2.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name zvariant_utils --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=422aa0b0a7459e98 -C extra-filename=-422aa0b0a7459e98 --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rmeta --extern quote=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rmeta --extern syn=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `zvariant_utils` (lib) generated 1 warning (1 duplicate) 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro_crate CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/proc-macro-crate-3.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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 165s ' 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.J3Pe8gZDBU/target/debug/deps rustc --crate-name proc_macro_crate --edition=2021 /tmp/tmp.J3Pe8gZDBU/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=b95b32d1535ecb06 -C extra-filename=-b95b32d1535ecb06 --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern toml_edit=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libtoml_edit-b66fa067992059e6.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `syn` (lib) generated 1 warning (1 duplicate) 165s Compiling enumflags2 v0.7.10 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern enumflags2_derive=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.J3Pe8gZDBU/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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `enumflags2` (lib) generated 1 warning (1 duplicate) 165s Compiling zvariant_derive v4.2.0 (/usr/share/cargo/registry/zvariant_derive-4.2.0) 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.J3Pe8gZDBU/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 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=eb2c07628ee42b0a -C extra-filename=-eb2c07628ee42b0a --out-dir /tmp/tmp.J3Pe8gZDBU/target/debug/deps -C incremental=/tmp/tmp.J3Pe8gZDBU/target/debug/incremental -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern proc_macro_crate=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro` 166s warning: `proc-macro-crate` (lib) generated 1 warning (1 duplicate) 166s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=enumflags2 CARGO_MANIFEST_DIR=/tmp/tmp.J3Pe8gZDBU/registry/enumflags2-0.7.10 CARGO_MANIFEST_PATH=/tmp/tmp.J3Pe8gZDBU/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.J3Pe8gZDBU/target/debug/deps rustc --crate-name enumflags2 --edition=2018 /tmp/tmp.J3Pe8gZDBU/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=bbaa8db27c98a8c5 -C extra-filename=-bbaa8db27c98a8c5 --out-dir /tmp/tmp.J3Pe8gZDBU/target/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern enumflags2_derive=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libenumflags2_derive-4e8cf4352c8852a5.so --extern serde=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde-58603df6549c24b9.rmeta --cap-lints warn` 166s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zvariant_derive CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.J3Pe8gZDBU/target/debug/deps rustc --crate-name zvariant_derive --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=bfdab8197d523d6a -C extra-filename=-bfdab8197d523d6a --out-dir /tmp/tmp.J3Pe8gZDBU/target/debug/deps -C incremental=/tmp/tmp.J3Pe8gZDBU/target/debug/incremental -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern enumflags2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libenumflags2-bbaa8db27c98a8c5.rlib --extern proc_macro_crate=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro_crate-900b46bff7d8f3e2.rlib --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern serde=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde-58603df6549c24b9.rlib --extern serde_repr=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libsyn-dee9ecc2709fc75f.rlib --extern zvariant_utils=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libzvariant_utils-4a20f09f685365a6.rlib --extern proc_macro` 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=no_prelude CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.J3Pe8gZDBU/target/debug/deps rustc --crate-name no_prelude --edition=2021 tests/no_prelude.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=6288a0f40c3a2585 -C extra-filename=-6288a0f40c3a2585 --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern enumflags2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tests CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.J3Pe8gZDBU/target/debug/deps rustc --crate-name tests --edition=2021 tests/tests.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=d8872e99ae4673fa -C extra-filename=-d8872e99ae4673fa --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern enumflags2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 167s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 167s --> tests/tests.rs:4:5 167s | 167s 4 | use zvariant::{ 167s | ^^^^^^^^ use of undeclared crate or module `zvariant` 167s 167s error[E0432]: unresolved import `zvariant` 167s --> tests/tests.rs:4:5 167s | 167s 4 | use zvariant::{ 167s | ^^^^^^^^ use of undeclared crate or module `zvariant` 167s 167s error: cannot find attribute `zvariant` in this scope 167s --> tests/tests.rs:45:7 167s | 167s 45 | #[zvariant(deny_unknown_fields, signature = "a{sv}", rename_all = "camelCase")] 167s | ^^^^^^^^ 167s 167s error: cannot find attribute `zvariant` in this scope 167s --> tests/tests.rs:48:11 167s | 167s 48 | #[zvariant(rename = "field-b")] 167s | ^^^^^^^^ 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:24:10 167s | 167s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 167s | ^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `SerializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:6:10 167s | 167s 6 | #[derive(Type)] 167s | ^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:9:10 167s | 167s 9 | #[derive(Type)] 167s | ^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 167s 167s error[E0599]: no function or associated item named `signature` found for struct `FooF` in the current scope 167s --> tests/tests.rs:14:22 167s | 167s 12 | struct FooF(f64); 167s | ----------- function or associated item `signature` not found for this struct 167s 13 | 167s 14 | assert_eq!(FooF::signature(), "d") 167s | ^^^^^^^^^ function or associated item not found in `FooF` 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:17:10 167s | 167s 17 | #[derive(Type)] 167s | ^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 167s 167s error[E0599]: no function or associated item named `signature` found for struct `TestStruct` in the current scope 167s --> tests/tests.rs:26:28 167s | 167s 20 | struct TestStruct { 167s | ----------------- function or associated item `signature` not found for this struct 167s ... 167s 26 | assert_eq!(TestStruct::signature(), "(syay)") 167s | ^^^^^^^^^ function or associated item not found in `TestStruct` 167s 167s error[E0599]: no variant or associated item named `signature` found for enum `RequestNameFlags` in the current scope 167s --> tests/tests.rs:39:34 167s | 167s 33 | enum RequestNameFlags { 167s | --------------------- variant or associated item `signature` not found for this enum 167s ... 167s 39 | assert_eq!(RequestNameFlags::signature(), "u") 167s | ^^^^^^^^^ variant or associated item not found in `RequestNameFlags` 167s 167s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 167s --> tests/tests.rs:60:22 167s | 167s 60 | let serialized = zvariant::to_bytes(ctxt, &test).unwrap(); 167s | ^^^^^^^^ use of undeclared crate or module `zvariant` 167s 167s error[E0433]: failed to resolve: use of undeclared crate or module `zvariant` 167s --> tests/tests.rs:76:22 167s | 167s 76 | let serialized = zvariant::to_bytes(ctxt, &deserialized).unwrap(); 167s | ^^^^^^^^ use of undeclared crate or module `zvariant` 167s 167s error[E0599]: no function or associated item named `signature` found for struct `Test` in the current scope 167s --> tests/tests.rs:83:22 167s | 167s 46 | struct Test { 167s | ----------- function or associated item `signature` not found for this struct 167s ... 167s 83 | assert_eq!(Test::signature(), "a{sv}") 167s | ^^^^^^^^^ function or associated item not found in `Test` 167s 167s Some errors have detailed explanations: E0432, E0433, E0599. 167s For more information about an error, try `rustc --explain E0432`. 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:24:25 167s | 167s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 167s | ^^^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `DeserializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 167s 167s error: could not compile `zvariant_derive` (test "tests") due to 10 previous errors 167s 167s Caused by: 167s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tests CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.J3Pe8gZDBU/target/debug/deps rustc --crate-name tests --edition=2021 tests/tests.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=d8872e99ae4673fa -C extra-filename=-d8872e99ae4673fa --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern enumflags2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 167s warning: build failed, waiting for other jobs to finish... 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:24:42 167s | 167s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 167s | ^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:9:10 167s | 167s 9 | #[derive(Type)] 167s | ^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 167s help: consider importing this struct 167s | 167s 4 + use syn::Signature; 167s | 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:24:10 167s | 167s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 167s | ^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `SerializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 167s help: consider importing this module 167s | 167s 4 + use serde::ser; 167s | 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:24:25 167s | 167s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 167s | ^^^^^^^^^^^^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `DeserializeDict` (in Nightly builds, run with -Z macro-backtrace for more info) 167s help: consider importing this module 167s | 167s 4 + use serde::de; 167s | 167s 167s error[E0433]: failed to resolve: could not find `zvariant` in the list of imported crates 167s --> tests/no_prelude.rs:24:42 167s | 167s 24 | #[derive(SerializeDict, DeserializeDict, Type)] 167s | ^^^^ could not find `zvariant` in the list of imported crates 167s | 167s = note: this error originates in the derive macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info) 167s help: consider importing this struct 167s | 167s 4 + use syn::Signature; 167s | 167s 167s For more information about this error, try `rustc --explain E0433`. 167s error: could not compile `zvariant_derive` (test "no_prelude") due to 10 previous errors 167s 167s Caused by: 167s process didn't exit successfully: `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=no_prelude CARGO_MANIFEST_DIR=/usr/share/cargo/registry/zvariant_derive-4.2.0 CARGO_MANIFEST_PATH=/usr/share/cargo/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='' CARGO_PRIMARY_PACKAGE=1 CARGO_TARGET_TMPDIR=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/tmp LD_LIBRARY_PATH=/tmp/tmp.J3Pe8gZDBU/target/debug/deps rustc --crate-name no_prelude --edition=2021 tests/no_prelude.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=6288a0f40c3a2585 -C extra-filename=-6288a0f40c3a2585 --out-dir /tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.J3Pe8gZDBU/target/debug/deps --extern enumflags2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libenumflags2-746c0dc2128bcbc0.rlib --extern proc_macro_crate=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro_crate-b95b32d1535ecb06.rlib --extern proc_macro2=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libproc_macro2-39693d09aaf9eb4c.rlib --extern quote=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libquote-2c636d649123ea6c.rlib --extern serde=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libserde-0341e769f80125f9.rlib --extern serde_repr=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libserde_repr-b868ee92b3d78e38.so --extern syn=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libsyn-024c5fa424b7d94a.rlib --extern zvariant_derive=/tmp/tmp.J3Pe8gZDBU/target/debug/deps/libzvariant_derive-eb2c07628ee42b0a.so --extern zvariant_utils=/tmp/tmp.J3Pe8gZDBU/target/s390x-unknown-linux-gnu/debug/deps/libzvariant_utils-422aa0b0a7459e98.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/zvariant_derive-4.2.0=/usr/share/cargo/registry/zvariant-derive-4.2.0 --remap-path-prefix /tmp/tmp.J3Pe8gZDBU/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` (exit status: 1) 167s /tmp/autopkgtest.ioXZx1/wrapper.sh: checking for leaked background processes... 167s /tmp/autopkgtest.ioXZx1/wrapper.sh: waiting for tee/cat subprocesses... 167s /tmp/autopkgtest.ioXZx1/wrapper.sh: cleaning up... 167s /tmp/autopkgtest.ioXZx1/wrapper.sh: Exit status: 101 167s autopkgtest: DBG: testbed command exited with code 101 167s autopkgtest [01:36:00]: test librust-zvariant-derive-dev:: -----------------------] 167s autopkgtest: DBG: testbed executing test finished with exit status 101 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3A-stdout /tmp/autopkgtest-work.fwz5kj8r/out/librust-zvariant-derive-dev%3A-stdout 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3A-stderr /tmp/autopkgtest-work.fwz5kj8r/out/librust-zvariant-derive-dev%3A-stderr 168s autopkgtest: DBG: got reply from testbed: ok 168s librust-zvariant-derive-dev: FLAKY non-zero exit status 101 168s autopkgtest [01:36:01]: test librust-zvariant-derive-dev:: - - - - - - - - - - results - - - - - - - - - - 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev%3A-artifacts/ /tmp/autopkgtest-work.fwz5kj8r/out/artifacts/ 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ioXZx1/librust-zvariant-derive-dev:-artifacts', '/tmp/autopkgtest.ioXZx1/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 168s autopkgtest [01:36:01]: @@@@@@@@@@@@@@@@@@@@ summary 168s rust-zvariant-derive:@ FLAKY non-zero exit status 101 168s librust-zvariant-derive-dev:default FLAKY non-zero exit status 101 168s librust-zvariant-derive-dev: FLAKY non-zero exit status 101 168s autopkgtest: DBG: testbed stop 168s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ioXZx1 168s autopkgtest: DBG: sending command to testbed: close 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: sending command to testbed: quit 184s nova [W] Using flock in prodstack6-s390x 184s Creating nova instance adt-plucky-s390x-rust-zvariant-derive-20250211-013312-juju-7f2275-prod-proposed-migration-environment-15-af399b43-e6b8-41cc-87ac-e3b7fb84e310 from image adt/ubuntu-plucky-s390x-server-20250210.img (UUID 9df4a1a3-165e-45c8-90e9-262841cdf4ea)... 184s nova [W] Timed out waiting for c478df99-c6a1-41fb-9685-744f3a2bea01 to get deleted.